diff options
author | Andreas Rheinhardt <andreas.rheinhardt@gmail.com> | 2020-01-24 23:48:28 +0100 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2020-01-26 12:41:32 -0300 |
commit | 2899995a6fdd4a4f7365333d951f86cc0da8eec5 (patch) | |
tree | 2744fb5a899687369ef16343c180c577a715f142 /libavformat/hevc.h | |
parent | d4bbc0db011151191ebc5e14af4be28127715cbd (diff) | |
download | ffmpeg-2899995a6fdd4a4f7365333d951f86cc0da8eec5.tar.gz |
avformat/av1, avc, hevc: Remove av_freep()
ff_av1_filter_obus_buf() and ff_avc_parse_nal_units_buf() both have a
pointer-to-pointer parameter which they use to pass a newly allocated
buffer to the caller. And both functions freed what this pointer points to
before overwriting it. But no caller of these functions used this feature,
but some had to initialize the pointer just because of this. So remove
it and update the documentation of ff_av1_filter_obus_buf() wrt this fact.
ff_hevc_annexb2mp4_buf in contrast did not free the pointer. This has been
documented, too.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavformat/hevc.h')
-rw-r--r-- | libavformat/hevc.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/hevc.h b/libavformat/hevc.h index bb144397c0..0f56325c1c 100644 --- a/libavformat/hevc.h +++ b/libavformat/hevc.h @@ -73,6 +73,7 @@ int ff_hevc_annexb2mp4(AVIOContext *pb, const uint8_t *buf_in, * parameter set NAL units shall be written, may be NULL * @return 0 in case of success, a negative value corresponding to an AVERROR * code in case of failure + * @note *buf_out will be treated as uninitialized on input and won't be freed. */ int ff_hevc_annexb2mp4_buf(const uint8_t *buf_in, uint8_t **buf_out, int *size, int filter_ps, int *ps_count); |