]> git.sesse.net Git - ffmpeg/blobdiff - libavfilter/vf_histogram.c
Merge commit '51d8725a6e4c7f989d6f0f38b59cb54a2d72846c'
[ffmpeg] / libavfilter / vf_histogram.c
index 34656b5d23b1c06e38376cd3999c2f4456922afd..40ec40096f7db4e6def9a60c24fe831b3f8ed716 100644 (file)
@@ -37,7 +37,7 @@ enum HistogramMode {
 
 typedef struct HistogramContext {
     const AVClass *class;               ///< AVClass context for log and options purpose
-    enum HistogramMode mode;
+    int mode;                           ///< HistogramMode
     unsigned       histogram[256];
     int            ncomp;
     const uint8_t  *bg_color;