summaryrefslogtreecommitdiffstats
path: root/player/video.c
diff options
context:
space:
mode:
Diffstat (limited to 'player/video.c')
-rw-r--r--player/video.c13
1 files changed, 1 insertions, 12 deletions
diff --git a/player/video.c b/player/video.c
index 8fe3244c5c..956e55d843 100644
--- a/player/video.c
+++ b/player/video.c
@@ -129,7 +129,7 @@ static void filter_reconfig(struct MPContext *mpctx, struct vo_chain *vo_c)
set_allowed_vo_formats(vo_c);
- char *filters[] = {"autorotate", "autostereo3d", "deinterlace", NULL};
+ char *filters[] = {"autorotate", "deinterlace", NULL};
for (int n = 0; filters[n]; n++) {
struct vf_instance *vf = vf_find_by_label(vo_c->vf, filters[n]);
if (vf)
@@ -154,17 +154,6 @@ static void filter_reconfig(struct MPContext *mpctx, struct vo_chain *vo_c)
}
}
- if (params.stereo_in != params.stereo_out &&
- params.stereo_in > 0 && params.stereo_out >= 0)
- {
- char *to = (char *)MP_STEREO3D_NAME(params.stereo_out);
- if (to) {
- char *args[] = {"in", "auto", "out", to, "warn", "no", NULL, NULL};
- if (try_filter(vo_c, "stereo3d", "autostereo3d", args) < 0)
- MP_ERR(vo_c, "Can't insert 3D conversion filter.\n");
- }
- }
-
if (mpctx->opts->deinterlace)
probe_deint_filters(vo_c);
}