diff options
author | Roman Shaposhnik <roman@shaposhnik.org> | 2007-08-09 17:01:15 +0000 |
---|---|---|
committer | Roman Shaposhnik <roman@shaposhnik.org> | 2007-08-09 17:01:15 +0000 |
commit | 905694d96e9fe18298b1484946ce5966c64d1177 (patch) | |
tree | 734237e9b4c547fbb85decb66d9d0758607f535a /libavcodec/dsputil.h | |
parent | 5c2198b1841fa451ace272128966a3facc8932ea (diff) | |
download | ffmpeg-905694d96e9fe18298b1484946ce5966c64d1177.tar.gz |
* renaming (ST|LD)(16|32|64) -> AV_(R|W)N(16|32|64)
Originally committed as revision 10023 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.h')
-rw-r--r-- | libavcodec/dsputil.h | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index 2d312e5196..2997251a75 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -675,7 +675,7 @@ static inline void copy_block2(uint8_t *dst, uint8_t *src, int dstStride, int sr int i; for(i=0; i<h; i++) { - ST16(dst , LD16(src )); + AV_WN16(dst , AV_RN16(src )); dst+=dstStride; src+=srcStride; } @@ -686,7 +686,7 @@ static inline void copy_block4(uint8_t *dst, uint8_t *src, int dstStride, int sr int i; for(i=0; i<h; i++) { - ST32(dst , LD32(src )); + AV_WN32(dst , AV_RN32(src )); dst+=dstStride; src+=srcStride; } @@ -697,8 +697,8 @@ static inline void copy_block8(uint8_t *dst, uint8_t *src, int dstStride, int sr int i; for(i=0; i<h; i++) { - ST32(dst , LD32(src )); - ST32(dst+4 , LD32(src+4 )); + AV_WN32(dst , AV_RN32(src )); + AV_WN32(dst+4 , AV_RN32(src+4 )); dst+=dstStride; src+=srcStride; } @@ -709,8 +709,8 @@ static inline void copy_block9(uint8_t *dst, uint8_t *src, int dstStride, int sr int i; for(i=0; i<h; i++) { - ST32(dst , LD32(src )); - ST32(dst+4 , LD32(src+4 )); + AV_WN32(dst , AV_RN32(src )); + AV_WN32(dst+4 , AV_RN32(src+4 )); dst[8]= src[8]; dst+=dstStride; src+=srcStride; @@ -722,10 +722,10 @@ static inline void copy_block16(uint8_t *dst, uint8_t *src, int dstStride, int s int i; for(i=0; i<h; i++) { - ST32(dst , LD32(src )); - ST32(dst+4 , LD32(src+4 )); - ST32(dst+8 , LD32(src+8 )); - ST32(dst+12, LD32(src+12)); + AV_WN32(dst , AV_RN32(src )); + AV_WN32(dst+4 , AV_RN32(src+4 )); + AV_WN32(dst+8 , AV_RN32(src+8 )); + AV_WN32(dst+12, AV_RN32(src+12)); dst+=dstStride; src+=srcStride; } @@ -736,10 +736,10 @@ static inline void copy_block17(uint8_t *dst, uint8_t *src, int dstStride, int s int i; for(i=0; i<h; i++) { - ST32(dst , LD32(src )); - ST32(dst+4 , LD32(src+4 )); - ST32(dst+8 , LD32(src+8 )); - ST32(dst+12, LD32(src+12)); + AV_WN32(dst , AV_RN32(src )); + AV_WN32(dst+4 , AV_RN32(src+4 )); + AV_WN32(dst+8 , AV_RN32(src+8 )); + AV_WN32(dst+12, AV_RN32(src+12)); dst[16]= src[16]; dst+=dstStride; src+=srcStride; |