From 9f5d3b13cf3be4d97515fac0542819060db69411 Mon Sep 17 00:00:00 2001 From: Baptiste Coudurier Date: Thu, 19 Jun 2008 22:50:17 +0000 Subject: [PATCH] ffm has no per stream priv_data anymore Originally committed as revision 13832 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/ffmdec.c | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/libavformat/ffmdec.c b/libavformat/ffmdec.c index e535e7d40..37a60a55e 100644 --- a/libavformat/ffmdec.c +++ b/libavformat/ffmdec.c @@ -344,7 +344,6 @@ static int ffm_read_header(AVFormatContext *s, AVFormatParameters *ap) for(i=0;inb_streams;i++) { st = s->streams[i]; if (st) { - av_freep(&st->priv_data); av_free(st); } } @@ -466,18 +465,6 @@ static int ffm_seek(AVFormatContext *s, int stream_index, int64_t wanted_pts, in return 0; } -static int ffm_read_close(AVFormatContext *s) -{ - AVStream *st; - int i; - - for(i=0;inb_streams;i++) { - st = s->streams[i]; - av_freep(&st->priv_data); - } - return 0; -} - static int ffm_probe(AVProbeData *p) { if ( @@ -494,6 +481,6 @@ AVInputFormat ffm_demuxer = { ffm_probe, ffm_read_header, ffm_read_packet, - ffm_read_close, + NULL, ffm_seek, }; -- 2.11.0