summaryrefslogtreecommitdiff
path: root/apps/codecs/libwmapro/wma.h
diff options
context:
space:
mode:
authorMohamed Tarek <mt@rockbox.org>2010-07-17 08:09:17 +0000
committerMohamed Tarek <mt@rockbox.org>2010-07-17 08:09:17 +0000
commit86c3765246e87ec161f96192e539997e82a60b56 (patch)
treec299a847e598903620acfd15cde510396f7ab111 /apps/codecs/libwmapro/wma.h
parentb3399635671a0f3664d09bb04ec954bc65b4a986 (diff)
downloadrockbox-86c3765246e87ec161f96192e539997e82a60b56.tar.gz
rockbox-86c3765246e87ec161f96192e539997e82a60b56.zip
libwmapro : remove dead/unneeded code from wma.[ch]
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27455 a1c6a512-1295-4272-9138-f99709370657
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,