1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-02-04 06:08:26 +02:00

avcodec/wma: remove unneeded #includes, there are no assert() only av_assert*

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2015-01-30 02:26:17 +01:00
parent 2b215b7f5a
commit 305cbe76d3
2 changed files with 0 additions and 6 deletions

View File

@ -28,9 +28,6 @@
#include "wma_freqs.h"
#include "wmadata.h"
#undef NDEBUG
#include <assert.h>
/* XXX: use same run/length optimization as mpeg decoders */
// FIXME maybe split decode / encode or pass flag
static av_cold int init_coef_vlc(VLC *vlc, uint16_t **prun_table,

View File

@ -39,9 +39,6 @@
#include "internal.h"
#include "wma.h"
#undef NDEBUG
#include <assert.h>
#define EXPVLCBITS 8
#define EXPMAX ((19 + EXPVLCBITS - 1) / EXPVLCBITS)