mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
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>
This commit is contained in:
parent
744c9b49a5
commit
67ceb42d39
@ -63,7 +63,7 @@ enum StereoCode {
|
||||
};
|
||||
|
||||
typedef struct StereoComponent {
|
||||
enum StereoCode format;
|
||||
int format; ///< StereoCode
|
||||
int width, height;
|
||||
int off_left, off_right;
|
||||
int off_lstep, off_rstep;
|
||||
|
Loading…
Reference in New Issue
Block a user