diff h264pred.c @ 11923:2013535ff4e5 libavcodec

Rename PACK4x8() to PACK4UINT8().
author rbultje
date Tue, 22 Jun 2010 20:57:00 +0000
parents f021be0e837c
children b3b2fd53617b
line wrap: on
line diff
--- a/h264pred.c	Tue Jun 22 19:29:03 2010 +0000
+++ b/h264pred.c	Tue Jun 22 20:57:00 2010 +0000
@@ -109,7 +109,7 @@
     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);