Re: [FFmpeg-devel] [PATCH] avformat/dashdec: only limit DASH manifest size according to AVBprint limits

2020-09-05 Thread Jan Ekström
On Sat, Sep 5, 2020 at 1:12 AM Steven Liu wrote: > > Jan Ekström 于2020年9月4日周五 上午2:33写道: > > > > Currently the API is internally limited to unsigned integers, so if we > > limit the file size as well as the amount to read to UINT_MAX - 1, we > > do not require additional limiting to be performed

Re: [FFmpeg-devel] [PATCH] avformat/dashdec: only limit DASH manifest size according to AVBprint limits

2020-09-04 Thread Steven Liu
Jan Ekström 于2020年9月4日周五 上午2:33写道: > > Currently the API is internally limited to unsigned integers, so if we > limit the file size as well as the amount to read to UINT_MAX - 1, we > do not require additional limiting to be performed on the values. > > This change is based on the fact that

Re: [FFmpeg-devel] [PATCH] avformat/dashdec: only limit DASH manifest size according to AVBprint limits

2020-09-04 Thread Jan Ekström
On Thu, Sep 3, 2020 at 8:29 PM Jan Ekström wrote: > > Currently the API is internally limited to unsigned integers, so if we > limit the file size as well as the amount to read to UINT_MAX - 1, we > do not require additional limiting to be performed on the values. > > This change is based on the

[FFmpeg-devel] [PATCH] avformat/dashdec: only limit DASH manifest size according to AVBprint limits

2020-09-03 Thread Jan Ekström
Currently the API is internally limited to unsigned integers, so if we limit the file size as well as the amount to read to UINT_MAX - 1, we do not require additional limiting to be performed on the values. This change is based on the fact that initially the 8*1024 value added in