Commit 118a1c2f authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/ff_h264_decode_sei: use skip_bits_long()

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 45da7a0e
...@@ -294,7 +294,7 @@ int ff_h264_decode_sei(H264Context *h){ ...@@ -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
......
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