summaryrefslogtreecommitdiffstats
path: root/video/out/vo_lavc.c
diff options
context:
space:
mode:
Diffstat (limited to 'video/out/vo_lavc.c')
-rw-r--r--video/out/vo_lavc.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/video/out/vo_lavc.c b/video/out/vo_lavc.c
index 4da8733d14..78e772b54c 100644
--- a/video/out/vo_lavc.c
+++ b/video/out/vo_lavc.c
@@ -428,7 +428,11 @@ static void draw_image(struct vo *vo, mp_image_t *mpi)
frame->pts = av_rescale_q(vc->lastipts + skipframes,
vc->worst_time_base, avc->time_base);
+ enum AVPictureType savetype = frame->pict_type;
mp_image_copy_fields_to_av_frame(frame, vc->lastimg);
+ frame->pict_type = savetype;
+ // keep this at avcodec_get_frame_defaults default
+
frame->quality = avc->global_quality;
av_init_packet(&packet);