diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2012-10-23 16:30:59 -0400 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2012-11-01 11:29:19 -0400 |
commit | 2ed40608e9499de7ed6bd4bd61cc50645ec6d8a4 (patch) | |
tree | cc3cbabc728fac54c8966dc1db97039ebc267280 /libavcodec/wma.h | |
parent | 50a65e7a540ce6747f81d6dbf6a602ad35be77ff (diff) | |
download | ffmpeg-2ed40608e9499de7ed6bd4bd61cc50645ec6d8a4.tar.gz |
wma: do not keep private copies of some AVCodecContext fields
channels, sample_rate, bit_rate, and block_align can be used directly from
the AVCodecContext
Diffstat (limited to 'libavcodec/wma.h')
-rw-r--r-- | libavcodec/wma.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libavcodec/wma.h b/libavcodec/wma.h index f81e0950eb..fb2aa8b6d1 100644 --- a/libavcodec/wma.h +++ b/libavcodec/wma.h @@ -69,11 +69,7 @@ typedef struct WMACodecContext { AVFrame frame; GetBitContext gb; PutBitContext pb; - int sample_rate; - int nb_channels; - int bit_rate; int version; ///< 1 = 0x160 (WMAV1), 2 = 0x161 (WMAV2) - int block_align; int use_bit_reservoir; int use_variable_block_len; int use_exp_vlc; ///< exponent coding: 0 = lsp, 1 = vlc + delta |