summaryrefslogtreecommitdiff
path: root/libavformat/mlvdec.c
diff options
context:
space:
mode:
authorPeter Ross <pross@xvid.org>2014-04-27 12:43:45 +1000
committerMichael Niedermayer <michaelni@gmx.at>2014-04-27 15:34:22 +0200
commit8bd6837e5105c5e7a9758f818cf6eaf2b8c3efd6 (patch)
tree13296fa8be28c13ef0c045f33a13ff078410be80 /libavformat/mlvdec.c
parentef312b8f0f47b976cc796dc5d2cdba4c88b1060c (diff)
avformat/mlvdec: remove unused MlvContext.buffer
Signed-off-by: Peter Ross <pross@xvid.org> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/mlvdec.c')
-rw-r--r--libavformat/mlvdec.c3
1 files changed, 0 insertions, 3 deletions
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;
}