summaryrefslogtreecommitdiff
path: root/libavfilter/vf_stereo3d.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2013-04-17 12:17:50 +0000
committerPaul B Mahol <onemda@gmail.com>2013-04-17 12:21:47 +0000
commitb725202546da366772dec1ada40ce36832582ed9 (patch)
treebb78ee5dd5af12d8df3d4ac64233a5ab9439d596 /libavfilter/vf_stereo3d.c
parentf0a149e53827f158fc0449707940d837c4b1c4af (diff)
lavfi/stereo3d: fix output width for sbsl/sbs2l
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavfilter/vf_stereo3d.c')
-rw-r--r--libavfilter/vf_stereo3d.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_stereo3d.c b/libavfilter/vf_stereo3d.c
index aaa74a35dc..c387684a23 100644
--- a/libavfilter/vf_stereo3d.c
+++ b/libavfilter/vf_stereo3d.c
@@ -263,7 +263,7 @@ static int config_output(AVFilterLink *outlink)
case SIDE_BY_SIDE_2_LR:
aspect.num /= 2;
case SIDE_BY_SIDE_LR:
- s->out.width =
+ s->out.width = s->width * 2;
s->out.off_right = s->width * 3;
break;
case SIDE_BY_SIDE_2_RL: