[FFmpeg-cvslog] avcodec/vc1: use uint8_t for size_table

zhaoxiu.zeng git at videolan.org
Sat Feb 28 15:06:44 CET 2015


ffmpeg | branch: master | zhaoxiu.zeng <zhaoxiu.zeng at gmail.com> | Wed Feb 25 00:28:45 2015 +0800| [e2edb10f8ee4aac4ca55b1c26dbfccd79081674e] | committer: Michael Niedermayer

avcodec/vc1: use uint8_t for size_table

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e2edb10f8ee4aac4ca55b1c26dbfccd79081674e
---

 libavcodec/vc1_block.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/vc1_block.c b/libavcodec/vc1_block.c
index d10a6a6..c4d0f8b 100644
--- a/libavcodec/vc1_block.c
+++ b/libavcodec/vc1_block.c
@@ -1313,7 +1313,7 @@ static int vc1_decode_p_block(VC1Context *v, int16_t block[64], int n,
 
 /** @} */ // Macroblock group
 
-static const int size_table  [6] = { 0, 2, 3, 4,  5,  8 };
+static const uint8_t size_table[6] = { 0, 2, 3, 4,  5,  8 };
 
 /** Decode one P-frame MB
  */



More information about the ffmpeg-cvslog mailing list