Module: libav Branch: release/10 Commit: 3533a850e766f2333c28af4fac9b42e4da588708
Author: Michael Niedermayer <[email protected]> Committer: Reinhard Tartler <[email protected]> Date: Mon Mar 10 15:03:14 2014 +0000 lavf: always use av_free Signed-off-by: Tim Walker <[email protected]> (cherry picked from commit 77e9123fe5d64b0960158de6e1713d3c6c7878a7) --- libavformat/hevc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/hevc.c b/libavformat/hevc.c index e3be20c..37b35b4 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; _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
