diff options
author | Paul B Mahol <onemda@gmail.com> | 2013-04-17 12:17:50 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2013-04-17 12:21:47 +0000 |
commit | b725202546da366772dec1ada40ce36832582ed9 (patch) | |
tree | bb78ee5dd5af12d8df3d4ac64233a5ab9439d596 | |
parent | f0a149e53827f158fc0449707940d837c4b1c4af (diff) | |
download | ffmpeg-b725202546da366772dec1ada40ce36832582ed9.tar.gz |
lavfi/stereo3d: fix output width for sbsl/sbs2l
Signed-off-by: Paul B Mahol <onemda@gmail.com>
-rw-r--r-- | libavfilter/vf_stereo3d.c | 2 |
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: |