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-11 13:56:43 +0200
commitfb3bf1ae814da2f307db2f958d80c5085d73fe5f (patch)
treeaa267f355bcfd5c8d36e4f9b74e4055dac7e0162
parentf842b3f2b2a0b7751d466a7b2ed096ae555dcaf2 (diff)
downloadmpv-fb3bf1ae814da2f307db2f958d80c5085d73fe5f.tar.bz2
mpv-fb3bf1ae814da2f307db2f958d80c5085d73fe5f.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;