Commit ae2d3e3b authored by Stefan Gehrer's avatar Stefan Gehrer

time_code has 24 bits, not 16

Originally committed as revision 17134 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent d934de5c
...@@ -469,7 +469,7 @@ static int decode_pic(AVSContext *h) { ...@@ -469,7 +469,7 @@ static int decode_pic(AVSContext *h) {
} else { } else {
h->pic_type = FF_I_TYPE; h->pic_type = FF_I_TYPE;
if(get_bits1(&s->gb)) if(get_bits1(&s->gb))
skip_bits(&s->gb,16);//time_code skip_bits(&s->gb,24);//time_code
} }
/* release last B frame */ /* release last B frame */
if(h->picture.data[0]) if(h->picture.data[0])
......
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