summaryrefslogtreecommitdiffstats
path: root/player/video.c
diff options
context:
space:
mode:
Diffstat (limited to 'player/video.c')
-rw-r--r--player/video.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/player/video.c b/player/video.c
index 57ec9d64d1..763f2e5a81 100644
--- a/player/video.c
+++ b/player/video.c
@@ -231,6 +231,7 @@ void uninit_video_chain(struct MPContext *mpctx)
mpctx->video_status = STATUS_EOF;
mpctx->sync_audio_to_video = false;
reselect_demux_streams(mpctx);
+ remove_deint_filter(mpctx);
}
mp_notify(mpctx, MPV_EVENT_VIDEO_RECONFIG, NULL);
}
@@ -423,8 +424,10 @@ static void init_filter_params(struct MPContext *mpctx)
// recreate the chain a second time, which is not very elegant, but allows
// us to test whether enabling deinterlacing works with the current video
// format and other filters.
- if (opts->deinterlace >= 0)
- mp_property_do("deinterlace", M_PROPERTY_SET, &opts->deinterlace, mpctx);
+ if (opts->deinterlace >= 0) {
+ remove_deint_filter(mpctx);
+ set_deinterlacing(mpctx, opts->deinterlace != 0);
+ }
}
// Feed newly decoded frames to the filter, take care of format changes.