Mercurial > libavcodec.hg
comparison adpcm.c @ 6678:92a91e7e7321 libavcodec
remove unused var
| author | bcoudurier |
|---|---|
| date | Fri, 25 Apr 2008 15:10:33 +0000 |
| parents | abb1f01ca0db |
| children | 034a316ecae3 |
comparison
equal
deleted
inserted
replaced
| 6677:abb1f01ca0db | 6678:92a91e7e7321 |
|---|---|
| 665 #endif //CONFIG_ENCODERS | 665 #endif //CONFIG_ENCODERS |
| 666 | 666 |
| 667 static av_cold int adpcm_decode_init(AVCodecContext * avctx) | 667 static av_cold int adpcm_decode_init(AVCodecContext * avctx) |
| 668 { | 668 { |
| 669 ADPCMContext *c = avctx->priv_data; | 669 ADPCMContext *c = avctx->priv_data; |
| 670 unsigned int max_channels = 2, channel; | 670 unsigned int max_channels = 2; |
| 671 | 671 |
| 672 switch(avctx->codec->id) { | 672 switch(avctx->codec->id) { |
| 673 case CODEC_ID_ADPCM_EA_R1: | 673 case CODEC_ID_ADPCM_EA_R1: |
| 674 case CODEC_ID_ADPCM_EA_R2: | 674 case CODEC_ID_ADPCM_EA_R2: |
| 675 case CODEC_ID_ADPCM_EA_R3: | 675 case CODEC_ID_ADPCM_EA_R3: |
