You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
avcodec/ff_h264_decode_sei: use skip_bits_long()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -294,7 +294,7 @@ int ff_h264_decode_sei(H264Context *h){
|
|||||||
if(decode_frame_packing(h, size) < 0)
|
if(decode_frame_packing(h, size) < 0)
|
||||||
return -1;
|
return -1;
|
||||||
default:
|
default:
|
||||||
skip_bits(&h->gb, 8*size);
|
skip_bits_long(&h->gb, 8*size);
|
||||||
}
|
}
|
||||||
|
|
||||||
//FIXME check bits here
|
//FIXME check bits here
|
||||||
|
Reference in New Issue
Block a user