avformat/mlvdec: remove unused MlvContext.buffer

Signed-off-by: Peter Ross <pross@xvid.org>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Peter Ross 2014-04-27 12:43:45 +10:00 committed by Michael Niedermayer
parent ef312b8f0f
commit 8bd6837e51

View File

@ -48,8 +48,6 @@ typedef struct {
int class[2];
int stream_index;
uint64_t pts;
uint8_t * buffer;
unsigned int buffer_size;
} MlvContext;
static int probe(AVProbeData *p)
@ -454,7 +452,6 @@ static int read_seek(AVFormatContext *avctx, int stream_index, int64_t timestamp
static int read_close(AVFormatContext *s)
{
MlvContext *mlv = s->priv_data;
av_freep(&mlv->buffer);
return 0;
}