diff options
author | Peter Ross <pross@xvid.org> | 2014-04-27 12:43:45 +1000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-04-27 15:34:22 +0200 |
commit | 8bd6837e5105c5e7a9758f818cf6eaf2b8c3efd6 (patch) | |
tree | 13296fa8be28c13ef0c045f33a13ff078410be80 | |
parent | ef312b8f0f47b976cc796dc5d2cdba4c88b1060c (diff) | |
download | ffmpeg-8bd6837e5105c5e7a9758f818cf6eaf2b8c3efd6.tar.gz |
avformat/mlvdec: remove unused MlvContext.buffer
Signed-off-by: Peter Ross <pross@xvid.org>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavformat/mlvdec.c | 3 |
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; } |