X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavfilter%2Favf_showcqt.h;h=0cef5a20030bc93c1bada402a959522b906724e3;hb=42f27d1b8eab9ea88d2e9faeb35f72dd72eca7b4;hp=010f85c951de83e512f218b461212f0f9385abe7;hpb=7e503828b03804f90733c306154c293cbd15102e;p=ffmpeg diff --git a/libavfilter/avf_showcqt.h b/libavfilter/avf_showcqt.h index 010f85c951d..0cef5a20030 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;