1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

lavfi/stereo3d: fix output width for sbsl/sbs2l

Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
Paul B Mahol 2013-04-17 12:17:50 +00:00
parent f0a149e538
commit b725202546

View File

@ -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: