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/cavs.c | |
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/cavs.c')
-rw-r--r-- | libavcodec/cavs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/cavs.c b/libavcodec/cavs.c index 902d82252c..2867c06799 100644 --- a/libavcodec/cavs.c +++ b/libavcodec/cavs.c @@ -212,7 +212,7 @@ void ff_cavs_load_intra_pred_chroma(AVSContext *h) { static void intra_pred_vert(uint8_t *d,uint8_t *top,uint8_t *left,int stride) { int y; - uint64_t a = LD64(&top[1]); + uint64_t a = AV_RN64(&top[1]); for(y=0;y<8;y++) { *((uint64_t *)(d+y*stride)) = a; } |