From 77e9123fe5d64b0960158de6e1713d3c6c7878a7 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Mon, 10 Mar 2014 15:03:14 +0000 Subject: [PATCH] lavf: always use av_free Signed-off-by: Tim Walker --- libavformat/hevc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/hevc.c b/libavformat/hevc.c index e3be20cfb6..37b35b4d2d 100644 --- a/libavformat/hevc.c +++ b/libavformat/hevc.c @@ -1056,7 +1056,7 @@ int ff_hevc_annexb2mp4(AVIOContext *pb, const uint8_t *buf_in, } end: - free(start); + av_free(start); if (ps_count) *ps_count = num_ps; return ret;