From 157cb0694a3b21db8af7db80462c8091c0bb32b0 Mon Sep 17 00:00:00 2001 From: "Ronald S. Bultje" Date: Tue, 22 Jun 2010 20:57:00 +0000 Subject: Rename PACK4x8() to PACK4UINT8(). Originally committed as revision 23721 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/h264pred.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/h264pred.c') diff --git a/libavcodec/h264pred.c b/libavcodec/h264pred.c index 296e44b474..52cf14c22e 100644 --- a/libavcodec/h264pred.c +++ b/libavcodec/h264pred.c @@ -109,7 +109,7 @@ static void pred4x4_vertical_vp8_c(uint8_t *src, const uint8_t *topright, int st const int lt= src[-1-1*stride]; LOAD_TOP_EDGE LOAD_TOP_RIGHT_EDGE - uint32_t v = PACK4x8((lt + 2*t0 + t1 + 2) >> 2, + uint32_t v = PACK4UINT8((lt + 2*t0 + t1 + 2) >> 2, (t0 + 2*t1 + t2 + 2) >> 2, (t1 + 2*t2 + t3 + 2) >> 2, (t2 + 2*t3 + t4 + 2) >> 2); -- cgit v1.2.3