libopencore-amr: Remove an unused state variable

Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
Martin Storsjö 2011-04-12 23:58:45 +03:00
parent 5d211e034e
commit 89e7e640f7
1 changed files with 0 additions and 3 deletions

View File

@ -234,7 +234,6 @@ AVCodec ff_libopencore_amrnb_encoder = {
#include <opencore-amrwb/if_rom.h>
typedef struct AMRWBContext {
int frameCount;
void *state;
} AMRWBContext;
@ -242,7 +241,6 @@ static av_cold int amr_wb_decode_init(AVCodecContext *avctx)
{
AMRWBContext *s = avctx->priv_data;
s->frameCount = 0;
s->state = D_IF_init();
amr_decode_fix_avctx(avctx);
@ -278,7 +276,6 @@ static int amr_wb_decode_frame(AVCodecContext *avctx, void *data,
return AVERROR_INVALIDDATA;
}
s->frameCount++;
D_IF_decode(s->state, buf, data, _good_frame);
*data_size = 320 * 2;
return packet_size;