]> git.sesse.net Git - ffmpeg/blobdiff - libavfilter/vf_colorbalance.c
avfilter/vf_mcdeint: free the AVCodecContext struct properly
[ffmpeg] / libavfilter / vf_colorbalance.c
index e37f1995cacaab4c73c42955e13dcae74bf0ee28..f9965248fef4feb64a17012410f55837e2b8f46a 100644 (file)
 #define B 2
 #define A 3
 
-typedef struct {
+typedef struct Range {
     double shadows;
     double midtones;
     double highlights;
 } Range;
 
-typedef struct {
+typedef struct ColorBalanceContext {
     const AVClass *class;
     Range cyan_red;
     Range magenta_green;