mirror of https://git.ffmpeg.org/ffmpeg.git
mpeg12dec: also print progressive seq and chroma format
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
f4f6eb5b74
commit
70967a60df
|
@ -1377,8 +1377,8 @@ static void mpeg_decode_sequence_extension(Mpeg1Context *s1)
|
|||
s->codec_id = s->avctx->codec_id = AV_CODEC_ID_MPEG2VIDEO;
|
||||
|
||||
if (s->avctx->debug & FF_DEBUG_PICT_INFO)
|
||||
av_log(s->avctx, AV_LOG_DEBUG, "profile: %d, level: %d vbv buffer: %d, bitrate:%d\n",
|
||||
s->avctx->profile, s->avctx->level, s->avctx->rc_buffer_size, s->bit_rate);
|
||||
av_log(s->avctx, AV_LOG_DEBUG, "profile: %d, level: %d ps: %d cf:%d vbv buffer: %d, bitrate:%d\n",
|
||||
s->avctx->profile, s->avctx->level, s->progressive_sequence, s->chroma_format, s->avctx->rc_buffer_size, s->bit_rate);
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue