summaryrefslogtreecommitdiff
path: root/libavcodec/wma.c
diff options
context:
space:
mode:
authorMichel Bardiaux <mbardiaux@mediaxim.be>2007-02-27 09:54:48 +0000
committerMichel Bardiaux <mbardiaux@mediaxim.be>2007-02-27 09:54:48 +0000
commit911b9faf316c01c240e031293b4c1f635f709a81 (patch)
tree59e499264b330a585d86b9e88237f6dacad6ec88 /libavcodec/wma.c
parenta9c9a2400bd5e8bbce675f1b5f7e1c2c705ee7af (diff)
Rename WMADecodeContext to WMACodecContext
Originally committed as revision 8143 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/wma.c')
-rw-r--r--libavcodec/wma.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/wma.c b/libavcodec/wma.c
index 0c9051c99b..75d5d2177e 100644
--- a/libavcodec/wma.c
+++ b/libavcodec/wma.c
@@ -64,7 +64,7 @@ static void init_coef_vlc(VLC *vlc,
int ff_wma_init(AVCodecContext * avctx, int flags2)
{
- WMADecodeContext *s = avctx->priv_data;
+ WMACodecContext *s = avctx->priv_data;
int i;
float *window;
float bps1, high_freq;
@@ -362,7 +362,7 @@ int ff_wma_total_gain_to_bits(int total_gain){
int ff_wma_end(AVCodecContext *avctx)
{
- WMADecodeContext *s = avctx->priv_data;
+ WMACodecContext *s = avctx->priv_data;
int i;
for(i = 0; i < s->nb_block_sizes; i++)