From 905694d96e9fe18298b1484946ce5966c64d1177 Mon Sep 17 00:00:00 2001 From: Roman Shaposhnik Date: Thu, 9 Aug 2007 17:01:15 +0000 Subject: * 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 --- libavcodec/cavs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/cavs.c') 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; } -- cgit v1.2.3