From 8bd6837e5105c5e7a9758f818cf6eaf2b8c3efd6 Mon Sep 17 00:00:00 2001 From: Peter Ross Date: Sun, 27 Apr 2014 12:43:45 +1000 Subject: avformat/mlvdec: remove unused MlvContext.buffer Signed-off-by: Peter Ross Signed-off-by: Michael Niedermayer --- libavformat/mlvdec.c | 3 --- 1 file changed, 3 deletions(-) (limited to 'libavformat/mlvdec.c') diff --git a/libavformat/mlvdec.c b/libavformat/mlvdec.c index 6550e866a3..4dcf52b2e3 100644 --- a/libavformat/mlvdec.c +++ b/libavformat/mlvdec.c @@ -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; } -- cgit v1.2.3