summaryrefslogtreecommitdiff
path: root/apps/codecs/libwmapro/wma.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/libwmapro/wma.h')
-rw-r--r--apps/codecs/libwmapro/wma.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/apps/codecs/libwmapro/wma.h b/apps/codecs/libwmapro/wma.h
index 40ca6e1303..3a0948e51e 100644
--- a/apps/codecs/libwmapro/wma.h
+++ b/apps/codecs/libwmapro/wma.h
@@ -50,8 +50,6 @@
50#define VLCBITS 9 50#define VLCBITS 9
51#define VLCMAX ((22+VLCBITS-1)/VLCBITS) 51#define VLCMAX ((22+VLCBITS-1)/VLCBITS)
52 52
53typedef float WMACoef; ///< type for decoded coefficients, int16_t would be enough for wma 1/2
54
55typedef struct CoefVLCTable { 53typedef struct CoefVLCTable {
56 int n; ///< total number of codes 54 int n; ///< total number of codes
57 int max_level; 55 int max_level;
@@ -63,7 +61,6 @@ typedef struct CoefVLCTable {
63 61
64int ff_wma_get_frame_len_bits(int sample_rate, int version, 62int ff_wma_get_frame_len_bits(int sample_rate, int version,
65 unsigned int decode_flags); 63 unsigned int decode_flags);
66int ff_wma_total_gain_to_bits(int total_gain);
67unsigned int ff_wma_get_large_val(GetBitContext* gb); 64unsigned int ff_wma_get_large_val(GetBitContext* gb);
68int ff_wma_run_level_decode(GetBitContext* gb, 65int ff_wma_run_level_decode(GetBitContext* gb,
69 VLC *vlc, 66 VLC *vlc,