avformat/hevc: fix mix of av_malloc() with free()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2014-03-09 23:27:31 +01:00
parent 9563e67e07
commit 88c8e4afea
1 changed files with 2 additions and 2 deletions

View File

@ -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;
@ -1109,7 +1109,7 @@ int ff_hevc_annexb2mp4_buf(const uint8_t *buf_in, uint8_t **buf_out,
*size = avio_close_dyn_buf(pb, buf_out);
end:
free(start);
av_free(start);
if (ps_count)
*ps_count = num_ps;
return ret;