Commit 67ceb42d authored by Michael Niedermayer's avatar Michael Niedermayer

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

This fixes depending on implementation defined behavior
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 744c9b49
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment