[FFmpeg-cvslog] r20030 - trunk/libavcodec/wmadec.c
mru
subversion
Sat Sep 26 21:23:27 CEST 2009
Author: mru
Date: Sat Sep 26 21:23:27 2009
New Revision: 20030
Log:
WMA: remove some unused variables
Modified:
trunk/libavcodec/wmadec.c
Modified: trunk/libavcodec/wmadec.c
==============================================================================
--- trunk/libavcodec/wmadec.c Sat Sep 26 21:23:25 2009 (r20029)
+++ trunk/libavcodec/wmadec.c Sat Sep 26 21:23:27 2009 (r20030)
@@ -82,20 +82,17 @@ static void dump_floats(WMACodecContext
static int wma_decode_init(AVCodecContext * avctx)
{
WMACodecContext *s = avctx->priv_data;
- int i, flags1, flags2;
+ int i, flags2;
uint8_t *extradata;
s->avctx = avctx;
/* extract flag infos */
- flags1 = 0;
flags2 = 0;
extradata = avctx->extradata;
if (avctx->codec->id == CODEC_ID_WMAV1 && avctx->extradata_size >= 4) {
- flags1 = AV_RL16(extradata);
flags2 = AV_RL16(extradata+2);
} else if (avctx->codec->id == CODEC_ID_WMAV2 && avctx->extradata_size >= 6) {
- flags1 = AV_RL32(extradata);
flags2 = AV_RL16(extradata+4);
}
// for(i=0; i<avctx->extradata_size; i++)
@@ -249,11 +246,10 @@ static void decode_exp_lsp(WMACodecConte
static int decode_exp_vlc(WMACodecContext *s, int ch)
{
int last_exp, n, code;
- const uint16_t *ptr, *band_ptr;
+ const uint16_t *ptr;
float v, *q, max_scale, *q_end;
- band_ptr = s->exponent_bands[s->frame_len_bits - s->block_len_bits];
- ptr = band_ptr;
+ ptr = s->exponent_bands[s->frame_len_bits - s->block_len_bits];
q = s->exponents[ch];
q_end = q + s->block_len;
max_scale = 0;
More information about the ffmpeg-cvslog
mailing list