summaryrefslogtreecommitdiff
path: root/libavfilter/avf_showcqt.h
diff options
context:
space:
mode:
Diffstat (limited to 'libavfilter/avf_showcqt.h')
-rw-r--r--libavfilter/avf_showcqt.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavfilter/avf_showcqt.h b/libavfilter/avf_showcqt.h
index 010f85c951..0cef5a2003 100644
--- a/libavfilter/avf_showcqt.h
+++ b/libavfilter/avf_showcqt.h
@@ -25,16 +25,16 @@
#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;