diff options
author | Michel Bardiaux <mbardiaux@mediaxim.be> | 2007-02-27 09:54:48 +0000 |
---|---|---|
committer | Michel Bardiaux <mbardiaux@mediaxim.be> | 2007-02-27 09:54:48 +0000 |
commit | 911b9faf316c01c240e031293b4c1f635f709a81 (patch) | |
tree | 59e499264b330a585d86b9e88237f6dacad6ec88 /libavcodec/wma.h | |
parent | a9c9a2400bd5e8bbce675f1b5f7e1c2c705ee7af (diff) | |
download | ffmpeg-911b9faf316c01c240e031293b4c1f635f709a81.tar.gz |
Rename WMADecodeContext to WMACodecContext
Originally committed as revision 8143 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/wma.h')
-rw-r--r-- | libavcodec/wma.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/wma.h b/libavcodec/wma.h index 138bc9afc8..17c62687ea 100644 --- a/libavcodec/wma.h +++ b/libavcodec/wma.h @@ -58,7 +58,7 @@ typedef struct CoefVLCTable { const uint16_t *levels; ///< table to build run/level tables } CoefVLCTable; -typedef struct WMADecodeContext { +typedef struct WMACodecContext { AVCodecContext* avctx; GetBitContext gb; PutBitContext pb; @@ -135,7 +135,7 @@ typedef struct WMADecodeContext { #ifdef TRACE int frame_count; #endif -} WMADecodeContext; +} WMACodecContext; extern const uint16_t ff_wma_hgain_huffcodes[37]; extern const uint8_t ff_wma_hgain_huffbits[37]; |