[FFmpeg-cvslog] r23831 - trunk/libavcodec/vc1dec.c
reimar
subversion
Sun Jun 27 21:27:08 CEST 2010
Author: reimar
Date: Sun Jun 27 21:27:08 2010
New Revision: 23831
Log:
Change type of zz_table to uint8_t to match the scantables it points to.
Modified:
trunk/libavcodec/vc1dec.c
Modified: trunk/libavcodec/vc1dec.c
==============================================================================
--- trunk/libavcodec/vc1dec.c Sun Jun 27 21:03:59 2010 (r23830)
+++ trunk/libavcodec/vc1dec.c Sun Jun 27 21:27:08 2010 (r23831)
@@ -1481,7 +1481,7 @@ static int vc1_decode_i_block(VC1Context
{
int last = 0, skip, value;
- const int8_t *zz_table;
+ const uint8_t *zz_table;
int scale;
int k;
@@ -1667,7 +1667,7 @@ static int vc1_decode_i_block_adv(VC1Con
if(coded) {
int last = 0, skip, value;
- const int8_t *zz_table;
+ const uint8_t *zz_table;
int k;
if(v->s.ac_pred) {
@@ -1874,7 +1874,7 @@ static int vc1_decode_intra_block(VC1Con
if(coded) {
int last = 0, skip, value;
- const int8_t *zz_table;
+ const uint8_t *zz_table;
int k;
zz_table = wmv1_scantable[0];
More information about the ffmpeg-cvslog
mailing list