]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/sinewin_tablegen.h
mov_chan: Pass a separate AVIOContext for reading
[ffmpeg] / libavcodec / sinewin_tablegen.h
index 720f1ab6b862d9b9612ee1f9c4a30fc2b18eb512..1ee225bf67ac0dffb869298b04b63a9ced4892c5 100644 (file)
@@ -28,6 +28,7 @@
 // for the host and the target and config.h is only valid for the target
 #include <math.h>
 #include "libavutil/attributes.h"
+#include "libavutil/common.h"
 
 #if !CONFIG_HARDCODED_TABLES
 SINETABLE(  32);
@@ -38,6 +39,7 @@ SINETABLE( 512);
 SINETABLE(1024);
 SINETABLE(2048);
 SINETABLE(4096);
+SINETABLE(8192);
 #else
 #include "libavcodec/sinewin_tables.h"
 #endif
@@ -45,7 +47,7 @@ SINETABLE(4096);
 SINETABLE_CONST float * const ff_sine_windows[] = {
     NULL, NULL, NULL, NULL, NULL, // unused
     ff_sine_32 , ff_sine_64 ,
-    ff_sine_128, ff_sine_256, ff_sine_512, ff_sine_1024, ff_sine_2048, ff_sine_4096
+    ff_sine_128, ff_sine_256, ff_sine_512, ff_sine_1024, ff_sine_2048, ff_sine_4096, ff_sine_8192
 };
 
 // Generate a sine window.