[FFmpeg-cvslog] rtpdec_vp9: Make sure to free the temp buffer on close
Martin Storsjö
git at videolan.org
Tue Jun 14 08:05:42 CEST 2016
ffmpeg | branch: master | Martin Storsjö <martin at martin.st> | Wed Apr 27 14:03:18 2016 +0300| [03aa4cd22b4b1522260355c499729c08ce640732] | committer: Thomas Volkert
rtpdec_vp9: Make sure to free the temp buffer on close
Signed-off-by: Martin Storsjö <martin at martin.st>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=03aa4cd22b4b1522260355c499729c08ce640732
---
libavformat/rtpdec_vp9.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/libavformat/rtpdec_vp9.c b/libavformat/rtpdec_vp9.c
index e50bede..7b1c38f 100644
--- a/libavformat/rtpdec_vp9.c
+++ b/libavformat/rtpdec_vp9.c
@@ -279,11 +279,17 @@ static int vp9_handle_packet(AVFormatContext *ctx, PayloadContext *rtp_vp9_ctx,
return 0;
}
+static void vp9_close_context(PayloadContext *vp9)
+{
+ ffio_free_dyn_buf(&vp9->buf);
+}
+
RTPDynamicProtocolHandler ff_vp9_dynamic_handler = {
.enc_name = "VP9",
.codec_type = AVMEDIA_TYPE_VIDEO,
.codec_id = AV_CODEC_ID_VP9,
.priv_data_size = sizeof(PayloadContext),
.init = vp9_init,
+ .close = vp9_close_context,
.parse_packet = vp9_handle_packet
};
More information about the ffmpeg-cvslog
mailing list