diff options
author | James Almer <jamrial@gmail.com> | 2021-03-06 15:40:58 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2021-03-10 20:26:36 -0300 |
commit | 42e68fe01587b541c9ced34906b09e3c9c894e74 (patch) | |
tree | 17a25fedab0cb35f7b05ab1691faec4f97cf753c /libavformat/avformat.h | |
parent | d79e0fe65c51491f9bf8a470bbe36fb09f3e1280 (diff) | |
download | ffmpeg-42e68fe01587b541c9ced34906b09e3c9c894e74.tar.gz |
avformat/utils: change AVStream side data related public function and struct size types to size_t
av_stream_add_side_data() already defines size as a size_t, so this makes it
consistent across all side data functions.
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r-- | libavformat/avformat.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h index 7da2f3d98e..e3bd01ec7f 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -2083,7 +2083,11 @@ int av_stream_add_side_data(AVStream *st, enum AVPacketSideDataType type, * @return pointer to fresh allocated data or NULL otherwise */ uint8_t *av_stream_new_side_data(AVStream *stream, +#if FF_API_BUFFER_SIZE_T enum AVPacketSideDataType type, int size); +#else + enum AVPacketSideDataType type, size_t size); +#endif /** * Get side information from stream. * @@ -2094,7 +2098,11 @@ uint8_t *av_stream_new_side_data(AVStream *stream, * @return pointer to data if present or NULL otherwise */ uint8_t *av_stream_get_side_data(const AVStream *stream, +#if FF_API_BUFFER_SIZE_T enum AVPacketSideDataType type, int *size); +#else + enum AVPacketSideDataType type, size_t *size); +#endif AVProgram *av_new_program(AVFormatContext *s, int id); |