diff options
author | Muhammad Faiz <mfcc64@gmail.com> | 2016-10-13 06:00:24 +0700 |
---|---|---|
committer | Muhammad Faiz <mfcc64@gmail.com> | 2016-10-16 05:41:09 +0700 |
commit | a11757d7cba97ea8625bfda0a10db2a2b8e66b02 (patch) | |
tree | 031ba3b70ab111b18319e946843d5af0ec6c8bee /libavfilter/avf_showcqt.h | |
parent | 4599e11651a5802093bc2b693d7fc11caf962038 (diff) | |
download | ffmpeg-a11757d7cba97ea8625bfda0a10db2a2b8e66b02.tar.gz |
avfilter/showcqt: add csp option
from colorspace filter
Signed-off-by: Muhammad Faiz <mfcc64@gmail.com>
Diffstat (limited to 'libavfilter/avf_showcqt.h')
-rw-r--r-- | libavfilter/avf_showcqt.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavfilter/avf_showcqt.h b/libavfilter/avf_showcqt.h index 588830fa3d..71e9d13660 100644 --- a/libavfilter/avf_showcqt.h +++ b/libavfilter/avf_showcqt.h @@ -71,6 +71,7 @@ typedef struct { float *rcp_h_buf; float *sono_v_buf; float *bar_v_buf; + float cmatrix[3][3]; /* callback */ void (*cqt_calc)(FFTComplex *dst, const FFTComplex *src, const Coeffs *coeffs, int len, int fft_len); @@ -111,6 +112,7 @@ typedef struct { char *fontcolor; char *axisfile; int axis; + int csp; } ShowCQTContext; void ff_showcqt_init_x86(ShowCQTContext *s); |