summaryrefslogtreecommitdiff
path: root/libavcodec/h264.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2006-10-12 18:41:29 +0000
committerMichael Niedermayer <michaelni@gmx.at>2006-10-12 18:41:29 +0000
commitde1013e1ca6bb36083dd17e3e60f3ee65c0561e1 (patch)
tree403366e9ab93f90cd58e179b2ed60e9bd43172b3 /libavcodec/h264.c
parent851ded8918c977d8160c6617b69604f758cabf50 (diff)
10l int vs uint8_t
Originally committed as revision 6675 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264.c')
-rw-r--r--libavcodec/h264.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c
index e7b7661785..59a5b1faee 100644
--- a/libavcodec/h264.c
+++ b/libavcodec/h264.c
@@ -6117,7 +6117,7 @@ static int decode_cabac_residual( H264Context *h, DCTELEM *block, int cat, int n
} \
} \
}
- const int *sig_off = significant_coeff_flag_offset_8x8[MB_FIELD];
+ const uint8_t *sig_off = significant_coeff_flag_offset_8x8[MB_FIELD];
DECODE_SIGNIFICANCE( 63, sig_off[last], last_coeff_flag_offset_8x8[last] );
} else {
DECODE_SIGNIFICANCE( max_coeff - 1, last, last );