]> git.sesse.net Git - ffmpeg/blobdiff - libavfilter/avf_showcqt.h
Merge commit 'bf38959a30ecba4e4ee95d4f2a80ba7ece4f34be'
[ffmpeg] / libavfilter / avf_showcqt.h
index 010f85c951de83e512f218b461212f0f9385abe7..0cef5a20030bc93c1bada402a959522b906724e3 100644 (file)
 #include "avfilter.h"
 #include "internal.h"
 
-typedef struct {
+typedef struct Coeffs {
     FFTSample *val;
     int start, len;
 } Coeffs;
 
-typedef struct {
+typedef struct RGBFloat {
     float r, g, b;
 } RGBFloat;
 
-typedef struct {
+typedef struct YUVFloat {
     float y, u, v;
 } YUVFloat;
 
@@ -43,7 +43,7 @@ typedef union {
     YUVFloat yuv;
 } ColorFloat;
 
-typedef struct {
+typedef struct ShowCQTContext {
     const AVClass       *class;
     AVFilterContext     *ctx;
     AVFrame             *axis_frame;