summaryrefslogtreecommitdiff
path: root/libavformat/hevc.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-03-10 15:03:14 +0000
committerVittorio Giovara <vittorio.giovara@gmail.com>2014-03-10 18:02:55 +0100
commit77e9123fe5d64b0960158de6e1713d3c6c7878a7 (patch)
tree600c183fe450c054fde47b1df7e8da40c9626dd2 /libavformat/hevc.c
parent34bbc81de8a49fbddb92b76dc733f40890480b2b (diff)
lavf: always use av_free
Signed-off-by: Tim Walker <tdskywalker@gmail.com>
Diffstat (limited to 'libavformat/hevc.c')
-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;