diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-03-10 15:03:14 +0000 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2014-03-10 18:02:55 +0100 |
commit | 77e9123fe5d64b0960158de6e1713d3c6c7878a7 (patch) | |
tree | 600c183fe450c054fde47b1df7e8da40c9626dd2 /libavformat/hevc.c | |
parent | 34bbc81de8a49fbddb92b76dc733f40890480b2b (diff) | |
download | ffmpeg-77e9123fe5d64b0960158de6e1713d3c6c7878a7.tar.gz |
lavf: always use av_free
Signed-off-by: Tim Walker <tdskywalker@gmail.com>
Diffstat (limited to 'libavformat/hevc.c')
-rw-r--r-- | libavformat/hevc.c | 2 |
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; |