cin audio: remove unneeded AVCodecContext pointer from CinAudioContext

This commit is contained in:
Justin Ruggles 2011-10-27 13:28:33 -04:00
parent 44d2a982ac
commit 664eb77dc3
1 changed files with 0 additions and 2 deletions

View File

@ -43,7 +43,6 @@ typedef struct CinVideoContext {
} CinVideoContext;
typedef struct CinAudioContext {
AVCodecContext *avctx;
int initial_decode_frame;
int delta;
} CinAudioContext;
@ -308,7 +307,6 @@ static av_cold int cinaudio_decode_init(AVCodecContext *avctx)
{
CinAudioContext *cin = avctx->priv_data;
cin->avctx = avctx;
cin->initial_decode_frame = 1;
cin->delta = 0;
avctx->sample_fmt = AV_SAMPLE_FMT_S16;