[FFmpeg-devel] [PATCH 1/3] avcodec/packet: add a define for the max buffer size a packet can hold
James Almer
jamrial at gmail.com
Tue Jun 27 17:39:59 EEST 2023
On 6/27/2023 4:23 AM, Anton Khirnov wrote:
> 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.
Will apply with that change then. Thanks.
More information about the ffmpeg-devel
mailing list