X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavfilter%2Favf_showcqt.h;h=0cef5a20030bc93c1bada402a959522b906724e3;hb=f78f3df7e01c266e83a98285fa3b5cd5823dab4d;hp=010f85c951de83e512f218b461212f0f9385abe7;hpb=fc63d5ceb357c4b760cb02772de0b50d0557140f;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;