summaryrefslogtreecommitdiffstats
path: root/libavcodec/h264pred.c
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2010-06-30 22:33:38 +0000
committerMåns Rullgård <mans@mansr.com>2010-06-30 22:33:38 +0000
commitcf60d669a6a5405b8ecdc5d2f59296e1c6b5198b (patch)
treea1e7a9e3f50d1d09169c126ce5b46850fa12a462 /libavcodec/h264pred.c
parentbce3bd1ced8ff651d141f3d4f09e9ed903fee325 (diff)
downloadffmpeg-streaming-cf60d669a6a5405b8ecdc5d2f59296e1c6b5198b.zip
ffmpeg-streaming-cf60d669a6a5405b8ecdc5d2f59296e1c6b5198b.tar.gz
Add more int packing macros, name them consistently
Originally committed as revision 23916 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264pred.c')
-rw-r--r--libavcodec/h264pred.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264pred.c b/libavcodec/h264pred.c
index 64c4882..5706c97 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 = PACK4UINT8((lt + 2*t0 + t1 + 2) >> 2,
+ uint32_t v = PACK_4U8((lt + 2*t0 + t1 + 2) >> 2,
(t0 + 2*t1 + t2 + 2) >> 2,
(t1 + 2*t2 + t3 + 2) >> 2,
(t2 + 2*t3 + t4 + 2) >> 2);
OpenPOWER on IntegriCloud