summaryrefslogtreecommitdiff
path: root/libavcodec/sinewin_tablegen.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-06-08 11:44:50 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-06-08 11:44:50 +0200
commitd5d30d56ed7c0386c1a9fd5c3dc4b0949e025864 (patch)
treea792094b4cd89893cd11125a217ee1976997da59 /libavcodec/sinewin_tablegen.h
parent80485a4f9a57d69ebbc09ea0fcd0dcfb0e13e287 (diff)
downloadffmpeg-d5d30d56ed7c0386c1a9fd5c3dc4b0949e025864.tar.gz
Revert "sinewin_tablegen: use av_assert"
using as_assert() in the table generator would make the generators have to be linked to libavutil. This reverts commit c3b6efa4cb25400d7ff8853ee6ebd95c29b744a6.
Diffstat (limited to 'libavcodec/sinewin_tablegen.h')
-rw-r--r--libavcodec/sinewin_tablegen.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/sinewin_tablegen.h b/libavcodec/sinewin_tablegen.h
index a11164d86c..dd7d992ae1 100644
--- a/libavcodec/sinewin_tablegen.h
+++ b/libavcodec/sinewin_tablegen.h
@@ -23,11 +23,11 @@
#ifndef AVCODEC_SINEWIN_TABLEGEN_H
#define AVCODEC_SINEWIN_TABLEGEN_H
+#include <assert.h>
// do not use libavutil/libm.h since this is compiled both
// for the host and the target and config.h is only valid for the target
#include <math.h>
#include "libavutil/attributes.h"
-#include "libavutil/avassert.h"
#if !CONFIG_HARDCODED_TABLES
SINETABLE( 32);
@@ -57,7 +57,7 @@ av_cold void ff_sine_window_init(float *window, int n) {
}
av_cold void ff_init_ff_sine_windows(int index) {
- av_assert0(index >= 0 && index < FF_ARRAY_ELEMS(ff_sine_windows));
+ assert(index >= 0 && index < FF_ARRAY_ELEMS(ff_sine_windows));
#if !CONFIG_HARDCODED_TABLES
ff_sine_window_init(ff_sine_windows[index], 1 << index);
#endif