summaryrefslogtreecommitdiff
path: root/libavcodec/mpegvideo.c
diff options
context:
space:
mode:
authorLimin Wang <lance.lmwang@gmail.com>2021-09-18 23:10:30 +0800
committerLimin Wang <lance.lmwang@gmail.com>2021-09-29 18:00:13 +0800
commite99be1735a59652828655be777de5264ef374b5d (patch)
tree62d718e2ec8485551acd57a65bc29b4aae9f842a /libavcodec/mpegvideo.c
parentb2538ce578ef729c5437465fd845e877d5151a39 (diff)
avcodec: remove the unused low_delay
Signed-off-by: Limin Wang <lance.lmwang@gmail.com>
Diffstat (limited to 'libavcodec/mpegvideo.c')
-rw-r--r--libavcodec/mpegvideo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mpegvideo.c b/libavcodec/mpegvideo.c
index 5383f9dead..ba5b51955e 100644
--- a/libavcodec/mpegvideo.c
+++ b/libavcodec/mpegvideo.c
@@ -1417,7 +1417,7 @@ void ff_mpv_frame_end(MpegEncContext *s)
void ff_print_debug_info(MpegEncContext *s, Picture *p, AVFrame *pict)
{
ff_print_debug_info2(s->avctx, pict, s->mbskip_table, p->mb_type,
- p->qscale_table, p->motion_val, &s->low_delay,
+ p->qscale_table, p->motion_val,
s->mb_width, s->mb_height, s->mb_stride, s->quarter_sample);
}