You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-04 22:03:09 +02:00
avcodec/mpegvideo_dec: Use picture-dimensions in ff_print_debug_info()
It will allow to avoid the special case for VC-1 field pictures. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
@ -404,7 +404,7 @@ void ff_print_debug_info(const MpegEncContext *s, const MPVPicture *p, AVFrame *
|
|||||||
{
|
{
|
||||||
ff_print_debug_info2(s->avctx, pict, p->mb_type,
|
ff_print_debug_info2(s->avctx, pict, p->mb_type,
|
||||||
p->qscale_table, p->motion_val,
|
p->qscale_table, p->motion_val,
|
||||||
s->mb_width, s->mb_height, s->mb_stride, s->quarter_sample);
|
p->mb_width, p->mb_height, p->mb_stride, s->quarter_sample);
|
||||||
}
|
}
|
||||||
|
|
||||||
int ff_mpv_export_qp_table(const MpegEncContext *s, AVFrame *f,
|
int ff_mpv_export_qp_table(const MpegEncContext *s, AVFrame *f,
|
||||||
|
Reference in New Issue
Block a user