Commit ae7a6441 authored by Michael Niedermayer's avatar Michael Niedermayer

h264: Decode short VUI without error

Fixes 47j9R7PXBep.mov
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent d1c28e35
......@@ -229,7 +229,8 @@ static inline int decode_vui_parameters(H264Context *h, SPS *sps){
if(sps->nal_hrd_parameters_present_flag || sps->vcl_hrd_parameters_present_flag)
get_bits1(&s->gb); /* low_delay_hrd_flag */
sps->pic_struct_present_flag = get_bits1(&s->gb);
if(!get_bits_left(&s->gb))
return 0;
sps->bitstream_restriction_flag = get_bits1(&s->gb);
if(sps->bitstream_restriction_flag){
get_bits1(&s->gb); /* motion_vectors_over_pic_boundaries_flag */
......
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