diff options
author | James Almer <jamrial@gmail.com> | 2018-10-27 00:12:30 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2018-10-27 00:12:30 -0300 |
commit | 59a35fe1f63df1451dec6663dcca3451b16c662d (patch) | |
tree | 7e587e13cee451612dddf1f211a3a7aae7ec1da4 | |
parent | 0e9c01fd87ae6cc5ba3474810eaa3c58499615ce (diff) | |
download | ffmpeg-streaming-59a35fe1f63df1451dec6663dcca3451b16c662d.zip ffmpeg-streaming-59a35fe1f63df1451dec6663dcca3451b16c662d.tar.gz |
tests/api-h264-slice-test: use the correct function to free the AVHashContext
Fixes memleaks.
Signed-off-by: James Almer <jamrial@gmail.com>
-rw-r--r-- | tests/api/api-h264-slice-test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/api/api-h264-slice-test.c b/tests/api/api-h264-slice-test.c index 1d37a85..57e7dc7 100644 --- a/tests/api/api-h264-slice-test.c +++ b/tests/api/api-h264-slice-test.c @@ -103,7 +103,7 @@ static void decode(AVCodecContext *dec_ctx, AVFrame *frame, frame_cnt, frame_cnt, (frame->width * frame->height + 2 * (frame->height >> desc->log2_chroma_h) * (frame->width >> desc->log2_chroma_w)), sum); frame_cnt += 1; - av_free(hash); + av_hash_freep(&hash); av_free(sum); } } |