diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-10-18 12:57:16 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-10-28 09:38:45 +0200 |
commit | 6856cabd1386dbd8d5e99ae39042a826b6b141ad (patch) | |
tree | 9b06911b3567168ccb1b0062897aebf4459e35cf /libavcodec/twinvq.c | |
parent | f8efd890bf2ea424b263a02772e4107f80608b59 (diff) | |
download | ffmpeg-6856cabd1386dbd8d5e99ae39042a826b6b141ad.tar.gz |
avcodec/metasound_data: Move data shared with twinvq into a new file
Namely into a header metasound_twinvq_data.h included
in twinvq.c (the common file of MetaSound and TwinVQ).
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/twinvq.c')
-rw-r--r-- | libavcodec/twinvq.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/twinvq.c b/libavcodec/twinvq.c index da10923d78..3ed053bee2 100644 --- a/libavcodec/twinvq.c +++ b/libavcodec/twinvq.c @@ -28,6 +28,7 @@ #include "decode.h" #include "fft.h" #include "lsp.h" +#include "metasound_twinvq_data.h" #include "sinewin.h" #include "twinvq.h" |