Browse Source

avfilter/vf_stereo3d: Change enum to int, which is accessed via AVOption as int

This fixes depending on implementation defined behavior

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.7
Michael Niedermayer 10 years ago
parent
commit
67ceb42d39
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavfilter/vf_stereo3d.c

+ 1
- 1
libavfilter/vf_stereo3d.c View File

@@ -63,7 +63,7 @@ enum StereoCode {
}; };


typedef struct StereoComponent { typedef struct StereoComponent {
enum StereoCode format;
int format; ///< StereoCode
int width, height; int width, height;
int off_left, off_right; int off_left, off_right;
int off_lstep, off_rstep; int off_lstep, off_rstep;


Loading…
Cancel
Save