comparison aac.h @ 11835:758c052eb8a9 libavcodec

aac: Move an initialization macro used only by the decoder out of the header.
author alexc
date Sat, 05 Jun 2010 15:31:57 +0000
parents 9103a9b3573a
children f71c3558f3f5
comparison
equal deleted inserted replaced
11834:a469cc7f9edb 11835:758c052eb8a9
35 #include "fft.h" 35 #include "fft.h"
36 #include "mpeg4audio.h" 36 #include "mpeg4audio.h"
37 #include "sbr.h" 37 #include "sbr.h"
38 38
39 #include <stdint.h> 39 #include <stdint.h>
40
41 #define AAC_INIT_VLC_STATIC(num, size) \
42 INIT_VLC_STATIC(&vlc_spectral[num], 8, ff_aac_spectral_sizes[num], \
43 ff_aac_spectral_bits[num], sizeof( ff_aac_spectral_bits[num][0]), sizeof( ff_aac_spectral_bits[num][0]), \
44 ff_aac_spectral_codes[num], sizeof(ff_aac_spectral_codes[num][0]), sizeof(ff_aac_spectral_codes[num][0]), \
45 size);
46 40
47 #define MAX_CHANNELS 64 41 #define MAX_CHANNELS 64
48 #define MAX_ELEM_ID 16 42 #define MAX_ELEM_ID 16
49 43
50 #define TNS_MAX_ORDER 20 44 #define TNS_MAX_ORDER 20