aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-03-10 15:03:14 +0000
committerReinhard Tartler <siretart@tauware.de>2014-03-10 19:53:51 -0400
commit3533a850e766f2333c28af4fac9b42e4da588708 (patch)
tree6943e6b6cb7496312e64c1ac9dbfaea7e54d114b
parent6d56bc9a6d853a33fe53ab63db580c4facaba420 (diff)
downloadffmpeg-3533a850e766f2333c28af4fac9b42e4da588708.tar.gz
lavf: always use av_free
Signed-off-by: Tim Walker <tdskywalker@gmail.com> (cherry picked from commit 77e9123fe5d64b0960158de6e1713d3c6c7878a7)
-rw-r--r--libavformat/hevc.c2
1 files changed, 1 insertions, 1 deletions
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;