[FFmpeg-devel] [PATCH v1 4/6] avformat/dashenc: use av_reallocp_array()

Jeyapal, Karthick kjeyapal at akamai.com
Wed Apr 29 09:38:02 EEST 2020


On 4/26/20 5:34 PM, Jeyapal, Karthick wrote:
>
> On 4/26/20 3:19 PM, lance.lmwang at gmail.com wrote:
>> From: Limin Wang <lance.lmwang at gmail.com>
>>
>> Signed-off-by: Limin Wang <lance.lmwang at gmail.com>
>> ---
>>  libavformat/dashenc.c | 2 +-
>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/libavformat/dashenc.c b/libavformat/dashenc.c
>> index 96c0ea3..e3e187c 100644
>> --- a/libavformat/dashenc.c
>> +++ b/libavformat/dashenc.c
>> @@ -1731,7 +1731,7 @@ static int add_segment(OutputStream *os, const char *file,
>>      Segment *seg;
>>      if (os->nb_segments >= os->segments_size) {
>>          os->segments_size = (os->segments_size + 1) * 2;
>> -        if ((err = av_reallocp(&os->segments, sizeof(*os->segments) *
>> +        if ((err = av_reallocp_array(&os->segments, sizeof(*os->segments),
>>                                 os->segments_size)) < 0) {
>>              os->segments_size = 0;
>>              os->nb_segments = 0;
> LGTM

Pushed all three dashenc patches from this patchset.

>
> _______________________________________________
> ffmpeg-devel mailing list
> ffmpeg-devel at ffmpeg.org
> https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
>
> To unsubscribe, visit link above, or email
> ffmpeg-devel-request at ffmpeg.org with subject "unsubscribe".



More information about the ffmpeg-devel mailing list