summaryrefslogtreecommitdiffstats
path: root/libavformat/rtsp.c
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2011-02-02 10:57:26 +0200
committerLuca Barbato <lu_zero@gentoo.org>2011-02-03 01:03:31 +0100
commitce41c51b0c71c87f623914ba0786aef325d818fe (patch)
tree78b84191c0e7ae372a842b36008033e38bf73fc9 /libavformat/rtsp.c
parentd9c0510e22821baa364306d867ffac45da0620c8 (diff)
downloadffmpeg-streaming-ce41c51b0c71c87f623914ba0786aef325d818fe.zip
ffmpeg-streaming-ce41c51b0c71c87f623914ba0786aef325d818fe.tar.gz
Free AVStream->info in chained muxers
This fixes memory leaks in the RTSP muxer and RTP hinting in the mov muxer present since SVN rev 25418. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
Diffstat (limited to 'libavformat/rtsp.c')
-rw-r--r--libavformat/rtsp.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c
index e1d7503..52c686c 100644
--- a/libavformat/rtsp.c
+++ b/libavformat/rtsp.c
@@ -500,6 +500,7 @@ void ff_rtsp_undo_setup(AVFormatContext *s)
}
av_metadata_free(&rtpctx->streams[0]->metadata);
av_metadata_free(&rtpctx->metadata);
+ av_free(rtpctx->streams[0]->info);
av_free(rtpctx->streams[0]);
av_free(rtpctx);
} else if (rt->transport == RTSP_TRANSPORT_RDT && CONFIG_RTPDEC)
OpenPOWER on IntegriCloud