summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlessandro Ghedini <alessandro@ghedini.me>2014-10-04 15:30:18 +0200
committerAlessandro Ghedini <alessandro@ghedini.me>2014-10-04 16:28:30 +0200
commitd02275d35ac725a18c28d5a72284be21eb825ff6 (patch)
tree6467357ead0f86a82225abd1b7792d346e66a001
parenta17ecd30ca3943e69110428f155b93bb24fe93e6 (diff)
downloadmpv-d02275d35ac725a18c28d5a72284be21eb825ff6.tar.bz2
mpv-d02275d35ac725a18c28d5a72284be21eb825ff6.tar.xz
vf_stereo3d: fix "auto" input format with libav
-rw-r--r--video/filter/vf_stereo3d.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/filter/vf_stereo3d.c b/video/filter/vf_stereo3d.c
index 77d041af79..e5a84f4ffc 100644
--- a/video/filter/vf_stereo3d.c
+++ b/video/filter/vf_stereo3d.c
@@ -542,7 +542,7 @@ static int vf_open(vf_instance_t *vf)
vf->priv->auto_in = 1;
if (vf->priv->in.fmt == STEREO_AUTO &&
- vf_lw_set_graph(vf, vf->priv->lw_opts, NULL, "null") >= 0)
+ vf_lw_set_graph(vf, vf->priv->lw_opts, "stereo3d", "null") >= 0)
{
vf_lw_set_reconfig_cb(vf, lavfi_reconfig);
return 1;