FFmpeg
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
wma.h
Go to the documentation of this file.
1 /*
2  * WMA compatible codec
3  * Copyright (c) 2002-2007 The FFmpeg Project
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21 
22 #ifndef AVCODEC_WMA_H
23 #define AVCODEC_WMA_H
24 
25 #include "libavutil/float_dsp.h"
26 #include "get_bits.h"
27 #include "put_bits.h"
28 #include "dsputil.h"
29 #include "fft.h"
30 #include "fmtconvert.h"
31 
32 /* size of blocks */
33 #define BLOCK_MIN_BITS 7
34 #define BLOCK_MAX_BITS 11
35 #define BLOCK_MAX_SIZE (1 << BLOCK_MAX_BITS)
36 
37 #define BLOCK_NB_SIZES (BLOCK_MAX_BITS - BLOCK_MIN_BITS + 1)
38 
39 /* XXX: find exact max size */
40 #define HIGH_BAND_MAX_SIZE 16
41 
42 #define NB_LSP_COEFS 10
43 
44 /* XXX: is it a suitable value ? */
45 #define MAX_CODED_SUPERFRAME_SIZE 16384
46 
47 #define MAX_CHANNELS 2
48 
49 #define NOISE_TAB_SIZE 8192
50 
51 #define LSP_POW_BITS 7
52 
53 //FIXME should be in wmadec
54 #define VLCBITS 9
55 #define VLCMAX ((22+VLCBITS-1)/VLCBITS)
56 
57 typedef float WMACoef; ///< type for decoded coefficients, int16_t would be enough for wma 1/2
58 
59 typedef struct CoefVLCTable {
60  int n; ///< total number of codes
61  int max_level;
62  const uint32_t *huffcodes; ///< VLC bit values
63  const uint8_t *huffbits; ///< VLC bit size
64  const uint16_t *levels; ///< table to build run/level tables
65 } CoefVLCTable;
66 
67 typedef struct WMACodecContext {
72  int version; ///< 1 = 0x160 (WMAV1), 2 = 0x161 (WMAV2)
75  int use_exp_vlc; ///< exponent coding: 0 = lsp, 1 = vlc + delta
76  int use_noise_coding; ///< true if perceptual noise is added
81  int high_band_start[BLOCK_NB_SIZES]; ///< index of first coef in high band
82  int coefs_start; ///< first coded coef
83  int coefs_end[BLOCK_NB_SIZES]; ///< max number of coded coefficients
87 
88  /* coded values in high bands */
91 
92  /* there are two possible tables for spectral coefficients */
93 //FIXME the following 3 tables should be shared between decoders
95  uint16_t *run_table[2];
96  float *level_table[2];
97  uint16_t *int_table[2];
99  /* frame info */
100  int frame_len; ///< frame length in samples
101  int frame_len_bits; ///< frame_len = 1 << frame_len_bits
102  int nb_block_sizes; ///< number of block sizes
103  /* block info */
105  int block_len_bits; ///< log2 of current block length
106  int next_block_len_bits; ///< log2 of next block length
107  int prev_block_len_bits; ///< log2 of prev block length
108  int block_len; ///< block length in samples
109  int block_num; ///< block number in current frame
110  int block_pos; ///< current position in frame
111  uint8_t ms_stereo; ///< true if mid/side stereo mode
112  uint8_t channel_coded[MAX_CHANNELS]; ///< true if channel is coded
113  int exponents_bsize[MAX_CHANNELS]; ///< log2 ratio frame/exp. length
121  /* output buffer for one frame and the last for IMDCT windowing */
123  /* last frame info */
129  float noise_mult; /* XXX: suppress that and integrate it in the noise array */
130  /* lsp_to_curve tables */
132  float lsp_pow_e_table[256];
138 
139 #ifdef TRACE
140  int frame_count;
141 #endif
143 
144 extern const uint16_t ff_wma_critical_freqs[25];
145 extern const uint16_t ff_wma_hgain_huffcodes[37];
146 extern const uint8_t ff_wma_hgain_huffbits[37];
147 extern const float ff_wma_lsp_codebook[NB_LSP_COEFS][16];
148 extern const uint32_t ff_aac_scalefactor_code[121];
149 extern const uint8_t ff_aac_scalefactor_bits[121];
150 
151 int ff_wma_init(AVCodecContext * avctx, int flags2);
152 int ff_wma_total_gain_to_bits(int total_gain);
153 int ff_wma_end(AVCodecContext *avctx);
154 unsigned int ff_wma_get_large_val(GetBitContext* gb);
156  VLC *vlc,
157  const float *level_table, const uint16_t *run_table,
158  int version, WMACoef *ptr, int offset,
159  int num_coefs, int block_len, int frame_len_bits,
160  int coef_nb_bits);
161 
162 #endif /* AVCODEC_WMA_H */