Commit 581810f5 authored by Mans Rullgard's avatar Mans Rullgard

mpeg4dec: use unsigned type for startcode in ff_mpeg4_decode_picture_header

Signed-off-by: 's avatarMans Rullgard <mans@mansr.com>
parent aa498fef
......@@ -2101,7 +2101,7 @@ static int decode_vop_header(MpegEncContext *s, GetBitContext *gb){
*/
int ff_mpeg4_decode_picture_header(MpegEncContext * s, GetBitContext *gb)
{
int startcode, v;
unsigned startcode, v;
/* search next start code */
align_get_bits(gb);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment