[FFmpeg-devel] [PATCH 1/3] avcodec/packet: add a define for the max buffer size a packet can hold
Anton Khirnov
anton at khirnov.net
Tue Jun 27 10:23:53 EEST 2023
Quoting James Almer (2023-06-21 22:46:56)
> Signed-off-by: James Almer <jamrial at gmail.com>
> ---
> TODO: Version bump and APIchanges entry.
>
> libavcodec/packet.h | 5 +++++
> 1 file changed, 5 insertions(+)
>
> diff --git a/libavcodec/packet.h b/libavcodec/packet.h
> index f28e7e7011..f7dd687c23 100644
> --- a/libavcodec/packet.h
> +++ b/libavcodec/packet.h
> @@ -418,6 +418,11 @@ typedef struct AVPacket {
> AVRational time_base;
> } AVPacket;
>
> +/**
> + * Max size for an AVPacket data buffer.
> + */
> +#define AV_PKT_MAX_PAYLOAD_SIZE ((size_t)(INT_MAX - AV_INPUT_BUFFER_PADDING_SIZE))
Maybe just AV_PKT_SIZE_MAX to be consistent with other FOO_MAX in C?
Otherwise the set seems like a good idea.
--
Anton Khirnov
More information about the ffmpeg-devel
mailing list