[FFmpeg-devel] [PATCH 2/2] lavf/md5enc: Use AV_HASH_MAX_SIZE

James Almer jamrial at gmail.com
Sat Jun 15 21:17:37 CEST 2013


On 15/06/13 6:11 AM, Michael Niedermayer wrote:
> On Mon, Jun 03, 2013 at 03:56:15AM -0300, James Almer wrote:
>> Also increase the buffer size in write_trailer(), since 128
>> is not enough anymore
>>
>> Signed-off-by: James Almer <jamrial at gmail.com>
>> ---
>>  libavformat/md5enc.c | 8 ++++----
>>  1 file changed, 4 insertions(+), 4 deletions(-)
>>
>> diff --git a/libavformat/md5enc.c b/libavformat/md5enc.c
>> index 06c9c41..270d9fb 100644
>> --- a/libavformat/md5enc.c
>> +++ b/libavformat/md5enc.c
>> @@ -35,7 +35,7 @@ struct MD5Context {
>>  static void md5_finish(struct AVFormatContext *s, char *buf)
>>  {
>>      struct MD5Context *c = s->priv_data;
>> -    uint8_t md5[32];
>> +    uint8_t md5[AV_HASH_MAX_SIZE];
> 
> this also could benefit from a version bump
> 
> (the idea here is that the user should be able to know for sure that
>  some longer hashes are supported when version is >= X)

Bumped micro and pushed to my public repo.


More information about the ffmpeg-devel mailing list