Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-03-23 21:31:17 +0300
committerMichael Niedermayer <michaelni@gmx.at>2015-03-23 21:31:17 +0300
commit67ceb42d394bcff0fd25e4e76f1a606d105334cc (patch)
treead9ff307e53b26713ddf3b017c134654180d0dfc /libavfilter/vf_stereo3d.c
parent744c9b49a5a6b769662f7a17e6029a6847b3b366 (diff)
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>
Diffstat (limited to 'libavfilter/vf_stereo3d.c')
-rw-r--r--libavfilter/vf_stereo3d.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_stereo3d.c b/libavfilter/vf_stereo3d.c
index 2140120eba..d86a7f2e95 100644
--- a/libavfilter/vf_stereo3d.c
+++ b/libavfilter/vf_stereo3d.c
@@ -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;