|
|
|
@@ -2770,6 +2770,10 @@ static int decode_slice_header(H264Context *h, H264Context *h0){ |
|
|
|
if(h->sps.frame_mbs_only_flag){ |
|
|
|
s->picture_structure= PICT_FRAME; |
|
|
|
}else{ |
|
|
|
if(!h->sps.direct_8x8_inference_flag && slice_type == AV_PICTURE_TYPE_B){ |
|
|
|
av_log(h->s.avctx, AV_LOG_ERROR, "This stream was generated by a broken encoder, invalid 8x8 inference\n"); |
|
|
|
return -1; |
|
|
|
} |
|
|
|
if(get_bits1(&s->gb)) { //field_pic_flag |
|
|
|
s->picture_structure= PICT_TOP_FIELD + get_bits1(&s->gb); //bottom_field_flag |
|
|
|
} else { |
|
|
|
|