summaryrefslogtreecommitdiff
path: root/apps/codecs/libwmapro/mdct_tablegen.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/libwmapro/mdct_tablegen.h')
-rw-r--r--apps/codecs/libwmapro/mdct_tablegen.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/codecs/libwmapro/mdct_tablegen.h b/apps/codecs/libwmapro/mdct_tablegen.h
index 9f130aa6b5..998f86f283 100644
--- a/apps/codecs/libwmapro/mdct_tablegen.h
+++ b/apps/codecs/libwmapro/mdct_tablegen.h
@@ -20,7 +20,7 @@
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 */ 21 */
22 22
23#include <assert.h> 23//#include <assert.h>
24// do not use libavutil/mathematics.h since this is compiled both 24// do not use libavutil/mathematics.h since this is compiled both
25// for the host and the target and config.h is only valid for the target 25// for the host and the target and config.h is only valid for the target
26#include <math.h> 26#include <math.h>
@@ -53,7 +53,7 @@ av_cold void ff_sine_window_init(float *window, int n) {
53} 53}
54 54
55av_cold void ff_init_ff_sine_windows(int index) { 55av_cold void ff_init_ff_sine_windows(int index) {
56 assert(index >= 0 && index < FF_ARRAY_ELEMS(ff_sine_windows)); 56 //assert(index >= 0 && index < FF_ARRAY_ELEMS(ff_sine_windows));
57#if !CONFIG_HARDCODED_TABLES 57#if !CONFIG_HARDCODED_TABLES
58 ff_sine_window_init(ff_sine_windows[index], 1 << index); 58 ff_sine_window_init(ff_sine_windows[index], 1 << index);
59#endif 59#endif