Browse Source

avfilter/vf_stereo3d: fix interleave rows output

Signed-off-by: Paul B Mahol <onemda@gmail.com>
tags/n3.0
Paul B Mahol 9 years ago
parent
commit
ec1b95dda4
1 changed files with 0 additions and 2 deletions
  1. +0
    -2
      libavfilter/vf_stereo3d.c

+ 0
- 2
libavfilter/vf_stereo3d.c View File

@@ -496,14 +496,12 @@ static int config_output(AVFilterLink *outlink)
s->out.row_step = 2;
s->out.height = s->height * 2;
s->out.off_rstep = 1;
s->in.off_rstep = s->in.format != INTERLEAVE_ROWS_RL;
break;
case INTERLEAVE_ROWS_RL:
s->in.row_step = 1 + (s->in.format == INTERLEAVE_ROWS_LR);
s->out.row_step = 2;
s->out.height = s->height * 2;
s->out.off_lstep = 1;
s->in.off_lstep = s->in.format != INTERLEAVE_ROWS_LR;
break;
case MONO_R:
s->in.off_left = s->in.off_right;


Loading…
Cancel
Save