mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-25 04:30:02 +00:00
h264: Fix code to also handle pix format changes.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
41135b7f64
commit
a9275b4f69
@ -2730,6 +2730,13 @@ static int decode_slice_header(H264Context *h, H264Context *h0)
|
||||
h->current_sps_id = h->pps.sps_id;
|
||||
h->sps = *h0->sps_buffers[h->pps.sps_id];
|
||||
|
||||
if (s->mb_width != h->sps.mb_width ||
|
||||
s->mb_height != h->sps.mb_height * (2 - h->sps.frame_mbs_only_flag) ||
|
||||
s->avctx->bits_per_raw_sample != h->sps.bit_depth_luma ||
|
||||
h->cur_chroma_format_idc != h->sps.chroma_format_idc
|
||||
)
|
||||
needs_reinit = 1;
|
||||
|
||||
if ((ret = h264_set_parameter_from_sps(h)) < 0)
|
||||
return ret;
|
||||
}
|
||||
@ -2738,10 +2745,6 @@ static int decode_slice_header(H264Context *h, H264Context *h0)
|
||||
s->avctx->level = h->sps.level_idc;
|
||||
s->avctx->refs = h->sps.ref_frame_count;
|
||||
|
||||
if (s->mb_width != h->sps.mb_width ||
|
||||
s->mb_height != h->sps.mb_height * (2 - h->sps.frame_mbs_only_flag))
|
||||
needs_reinit = 1;
|
||||
|
||||
must_reinit = (s->context_initialized &&
|
||||
( 16*h->sps.mb_width != s->avctx->coded_width
|
||||
|| 16*h->sps.mb_height * (2 - h->sps.frame_mbs_only_flag) != s->avctx->coded_height
|
||||
|
Loading…
Reference in New Issue
Block a user