Re: [FFmpeg-devel] [PATCH v3] avformat/hls: change sequence number type to int64_t

2021-01-22 Thread Steven Liu
"zhilizhao(赵志立)" 于2021年1月22日周五 下午3:17写道: > > Ping for review. looks no objections? > > > On Jan 16, 2021, at 11:40 AM, Zhao Zhili wrote: > > > > Fix atoi() overflow for large EXT-X-MEDIA-SEQUENCE. > > > > The spec says the type of sequence number is uint64_t. Use int64_t > > here since current i

[FFmpeg-devel] EXT-X-PROGRAM-DATE-TIME value drifts behind the actual time on the start of the corresponding segment video

2021-01-22 Thread Vignesh Ravichandran
I am trying to create a video by stitching multiple HLS segments (.ts files) together based on a start time and end time. Basically, create a video of a particular timeline in the HLS stream. My setup has a camera pointing to a monitor that displays the system clock (The camera control and the

[FFmpeg-devel] [PATCH v3 0/4] Initial implementation of TTML encoding/muxing

2021-01-22 Thread Jan Ekström
I've intentionally kept this initial version simple (no styling etc) to focus on the basics. As this goes through review, additional features can be added (I had initial PoC for styling implemented some time around previous VDD), and there is another patch set in my queue which would then add suppo

[FFmpeg-devel] [PATCH v3 2/4] avutil/{avstring, bprint}: add XML attribute value escape modes

2021-01-22 Thread Jan Ekström
From: Jan Ekström Signed-off-by: Jan Ekström --- libavutil/avstring.h | 10 ++ libavutil/bprint.c | 26 ++ tools/ffescape.c | 10 ++ 3 files changed, 38 insertions(+), 8 deletions(-) diff --git a/libavutil/avstring.h b/libavutil/avstring.h index 18

[FFmpeg-devel] [PATCH v3 3/4] ffprobe: switch to av_bprint_escape for XML escaping

2021-01-22 Thread Jan Ekström
From: Jan Ekström Signed-off-by: Jan Ekström --- fftools/ffprobe.c | 32 +++- 1 file changed, 11 insertions(+), 21 deletions(-) diff --git a/fftools/ffprobe.c b/fftools/ffprobe.c index 3453aa09ff..564c062331 100644 --- a/fftools/ffprobe.c +++ b/fftools/ffprobe.c @@

[FFmpeg-devel] [PATCH v3 4/4] {avcodec, avformat}: add TTML encoder and muxer

2021-01-22 Thread Jan Ekström
From: Jan Ekström Enables encoding of other subtitle formats into TTML and writing them out as such documents. Signed-off-by: Jan Ekström --- Changelog | 1 + doc/general_contents.texi | 1 + libavcodec/Makefile| 1 + libavcodec/allcodecs.c | 1 + libavcod

[FFmpeg-devel] [PATCH v3 1/4] avutil/{avstring, bprint}: add XML escaping from ffprobe to avutil

2021-01-22 Thread Jan Ekström
From: Stefano Sabatini --- libavutil/avstring.h | 7 --- libavutil/bprint.c | 15 +++ tools/ffescape.c | 7 --- 3 files changed, 23 insertions(+), 6 deletions(-) diff --git a/libavutil/avstring.h b/libavutil/avstring.h index ee225585b3..189b4726a5 100644 --- a/libavu

[FFmpeg-devel] 64b3aac8d0 "h264: Use common SEI types" broke cross-compile for OSX

2021-01-22 Thread Mark Himsley
I cross-compile for OSX on Linux. Last night's commit 64b3aac8d0 "h264: Use common SEI types" seems to have broken the build. ./configure --extra-version=static_osx_x86_64_202101221019 --extra-cflags= --extra-libs= -lpthread -lm --pkg-config-flags=--static --cross-prefix=x86_64-apple-

[FFmpeg-devel] [PATCH] avcodec/videotoolboxenc: Fix SEI enum identifiers

2021-01-22 Thread Andreas Rheinhardt
Broken in 64b3aac8d07a8744656737619b70977359d9a6a5. Signed-off-by: Andreas Rheinhardt --- Untested as I do not use OSX. libavcodec/videotoolboxenc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libavcodec/videotoolboxenc.c b/libavcodec/videotoolboxenc.c index a333a9

Re: [FFmpeg-devel] [PATCH] avfilter: Added siti filter

2021-01-22 Thread Werner Robitza
On Tue, Jan 19, 2021 at 5:49 AM Lynne wrote: > > I'm already adding the data to the frame's metadata, is the suggestion to > > remove the file option altogether? > > > > Yes. We want to avoid filters having their own file in/out options rather > than using generic ones. As an end user I would fi

Re: [FFmpeg-devel] 64b3aac8d0 "h264: Use common SEI types" broke cross-compile for OSX

2021-01-22 Thread Andreas Rheinhardt
Mark Himsley: > I cross-compile for OSX on Linux. Last night's commit 64b3aac8d0 > "h264: Use common SEI types" seems to have broken the build. > > ./configure --extra-version=static_osx_x86_64_202101221019 > --extra-cflags= --extra-libs= -lpthread -lm > --pkg-config-flags=--static --

[FFmpeg-devel] [PATCH v4 0/4] Initial implementation of TTML encoding/muxing

2021-01-22 Thread Jan Ekström
I've intentionally kept this initial version simple (no styling etc) to focus on the basics. As this goes through review, additional features can be added (I had initial PoC for styling implemented some time around previous VDD), and there is another patch set in my queue which would then add suppo

[FFmpeg-devel] [PATCH v4 1/4] avutil/{avstring, bprint}: add XML escaping from ffprobe to avutil

2021-01-22 Thread Jan Ekström
From: Stefano Sabatini --- libavutil/avstring.h | 7 --- libavutil/bprint.c | 15 +++ tools/ffescape.c | 7 --- 3 files changed, 23 insertions(+), 6 deletions(-) diff --git a/libavutil/avstring.h b/libavutil/avstring.h index ee225585b3..189b4726a5 100644 --- a/libavu

[FFmpeg-devel] [PATCH v4 2/4] avutil/{avstring, bprint}: add XML attribute value escape modes

2021-01-22 Thread Jan Ekström
From: Jan Ekström Signed-off-by: Jan Ekström --- libavutil/avstring.h | 10 ++ libavutil/bprint.c | 26 ++ tools/ffescape.c | 10 ++ 3 files changed, 38 insertions(+), 8 deletions(-) diff --git a/libavutil/avstring.h b/libavutil/avstring.h index 18

[FFmpeg-devel] [PATCH v4 3/4] ffprobe: switch to av_bprint_escape for XML escaping

2021-01-22 Thread Jan Ekström
From: Jan Ekström Additionally update the result of the ffprobe XML writing test. Signed-off-by: Jan Ekström --- fftools/ffprobe.c | 32 +++- tests/ref/fate/ffprobe_xml | 2 +- 2 files changed, 12 insertions(+), 22 deletions(-) diff --git a/fftools/ffprob

[FFmpeg-devel] [PATCH v4 4/4] {avcodec, avformat}: add TTML encoder and muxer

2021-01-22 Thread Jan Ekström
From: Jan Ekström Enables encoding of other subtitle formats into TTML and writing them out as such documents. Signed-off-by: Jan Ekström --- Changelog | 1 + doc/general_contents.texi | 1 + libavcodec/Makefile| 1 + libavcodec/allcodecs.c | 1 + libavcod

Re: [FFmpeg-devel] [PATCH] avfilter: Added siti filter

2021-01-22 Thread Paul B Mahol
On Fri, Jan 22, 2021 at 12:03 PM Werner Robitza wrote: > On Tue, Jan 19, 2021 at 5:49 AM Lynne wrote: > > > I'm already adding the data to the frame's metadata, is the suggestion > to remove the file option altogether? > > > > > > > Yes. We want to avoid filters having their own file in/out opti

[FFmpeg-devel] [PATCH] tests/dnn: fix build issue after function name changed

2021-01-22 Thread Guo, Yejun
--- missed to merge the changes into previous patch, will push soon. tests/dnn/dnn-layer-avgpool-test.c | 4 ++-- tests/dnn/dnn-layer-conv2d-test.c | 4 ++-- tests/dnn/dnn-layer-dense-test.c | 2 +- tests/dnn/dnn-layer-depth2space-test.c | 2 +- tests/dnn/dnn-layer-mathbinary-test

Re: [FFmpeg-devel] 64b3aac8d0 "h264: Use common SEI types" broke cross-compile for OSX

2021-01-22 Thread Mark Himsley
On Fri, 22 Jan 2021 at 11:11, Andreas Rheinhardt wrote: > > Mark Himsley: > > I cross-compile for OSX on Linux. Last night's commit 64b3aac8d0 > > "h264: Use common SEI types" seems to have broken the build. > > > > ./configure --extra-version=static_osx_x86_64_202101221019 > > --extra-cflags=

[FFmpeg-devel] [PATCH] avcodec/h264_metadata_bsf: Don't use unitialized value

2021-01-22 Thread Andreas Rheinhardt
Signed-off-by: Andreas Rheinhardt --- libavcodec/h264_metadata_bsf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/h264_metadata_bsf.c b/libavcodec/h264_metadata_bsf.c index 30c0aa80d9..6673a32601 100644 --- a/libavcodec/h264_metadata_bsf.c +++ b/libavcodec/h264_m

Re: [FFmpeg-devel] [PATCH] tests/dnn: fix build issue after function name changed

2021-01-22 Thread Jan Ekström
On Fri, Jan 22, 2021 at 1:31 PM Guo, Yejun wrote: > > --- > missed to merge the changes into previous patch, will push soon. > > tests/dnn/dnn-layer-avgpool-test.c | 4 ++-- > tests/dnn/dnn-layer-conv2d-test.c | 4 ++-- > tests/dnn/dnn-layer-dense-test.c | 2 +- > tests/dnn/dnn-lay

Re: [FFmpeg-devel] [PATCH] tests/dnn: fix build issue after function name changed

2021-01-22 Thread Guo, Yejun
> -Original Message- > From: ffmpeg-devel On Behalf Of Jan > Ekstr?m > Sent: 2021年1月22日 20:01 > To: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] [PATCH] tests/dnn: fix build issue after function > name changed > > On Fri, Jan 22, 2021 at 1:31 PM Guo, Yejun

Re: [FFmpeg-devel] [PATCH 7/7] avcodec/cri: check for available input in unpack_10bit()

2021-01-22 Thread Michael Niedermayer
On Thu, Jan 21, 2021 at 11:26:57PM +0100, Paul B Mahol wrote: > On Tue, Nov 10, 2020 at 12:15 AM Michael Niedermayer > wrote: > > > Fixes: Timeout (>20sec -> 56ms) > > Fixes: > > 26995/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_CRI_fuzzer-5107217080254464 > > > > Found-by: continuous fuzzi

Re: [FFmpeg-devel] make: *** [ffbuild/common.mak:67: libavfilter/vf_nnedi.o] Error 1

2021-01-22 Thread Hongyi Zhao
On Wed, Jan 20, 2021 at 12:21 PM Hongyi Zhao wrote: > > On Wed, Jan 20, 2021 at 11:32 AM James Almer wrote: > > > > On 1/20/2021 12:29 AM, Hongyi Zhao wrote: > > > On Wed, Jan 20, 2021 at 10:52 AM James Almer wrote: > > >> > > >> On 1/19/2021 11:24 PM, Hongyi Zhao wrote: > > >>> On Wed, Jan 20,

Re: [FFmpeg-devel] [PATCH v3] avformat/hls: change sequence number type to int64_t

2021-01-22 Thread zhilizhao(赵志立)
> On Jan 22, 2021, at 4:10 PM, Steven Liu wrote: > > "zhilizhao(赵志立)" 于2021年1月22日周五 下午3:17写道: >> >> Ping for review. > > looks no objections? Please help merge the patch, thanks! >> >>> On Jan 16, 2021, at 11:40 AM, Zhao Zhili wrote: >>> >>> Fix atoi() overflow for large EXT-X-MEDIA-SEQ

Re: [FFmpeg-devel] [PATCH] avcodec/h264_metadata_bsf: Don't use unitialized value

2021-01-22 Thread Mark Thompson
On 22/01/2021 11:43, Andreas Rheinhardt wrote: Signed-off-by: Andreas Rheinhardt --- libavcodec/h264_metadata_bsf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/h264_metadata_bsf.c b/libavcodec/h264_metadata_bsf.c index 30c0aa80d9..6673a32601 100644 --- a/lib

[FFmpeg-devel] [PATCH 1/2] avformat/mxfdec: Fix integer overflow in next position in mxf_read_local_tags()

2021-01-22 Thread Michael Niedermayer
Fixes: signed integer overflow: 9223372036854775723 + 8192 cannot be represented in type 'long' Fixes: 29072/clusterfuzz-testcase-minimized-ffmpeg_dem_MXF_fuzzer-4812604904177664 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: M

[FFmpeg-devel] [PATCH 2/2] avformat/swfdec: Check outlen before allocation

2021-01-22 Thread Michael Niedermayer
Fixes: Timeout (too long -> 241ms) Fixes: 29083/clusterfuzz-testcase-minimized-ffmpeg_dem_SWF_fuzzer-6273684478230528 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer --- libavformat/swfdec.c | 3 +++ 1 file

[FFmpeg-devel] FFmpeg updates to fix CVEs?

2021-01-22 Thread - Neustradamus -
Hello all, I wish you a Happy New Year! New versions are planned or not? CVEs in 4.3.1 and no fixed version... - https://cve.mitre.org/cgi-bin/cvekey.cgi?keyword=ffmpeg Last builds: - https://github.com/FFmpeg/FFmpeg/releases - Jul 11, 2020: 4.3.1 - Jul 9, 2020: 4.2.4 - Jul 7, 2020: 2.8.17 - Ju

Re: [FFmpeg-devel] [PATCH 1/2] avformat/mxfdec: Fix integer overflow in next position in mxf_read_local_tags()

2021-01-22 Thread James Almer
On 1/22/2021 11:09 AM, Michael Niedermayer wrote: Fixes: signed integer overflow: 9223372036854775723 + 8192 cannot be represented in type 'long' Fixes: 29072/clusterfuzz-testcase-minimized-ffmpeg_dem_MXF_fuzzer-4812604904177664 Found-by: continuous fuzzing process https://github.com/google/o

Re: [FFmpeg-devel] FFmpeg updates to fix CVEs?

2021-01-22 Thread James Almer
On 1/22/2021 11:16 AM, - Neustradamus - wrote: Hello all, I wish you a Happy New Year! New versions are planned or not? Yes. CVEs in 4.3.1 and no fixed version... - https://cve.mitre.org/cgi-bin/cvekey.cgi?keyword=ffmpeg When 4.3.2 is tagged, the fixes will be backported. Last builds:

[FFmpeg-devel] [PATCH 2/3] libavformat/hls: add support for SAMPLE-AES decryption in HLS demuxer

2021-01-22 Thread Nachiket Tarate
Apple HTTP Live Streaming Sample Encryption: https://developer.apple.com/library/ios/documentation/AudioVideo/Conceptual/HLS_Sample_Encryption Signed-off-by: Nachiket Tarate --- libavformat/Makefile | 2 +- libavformat/hls.c| 98 ++-- libavformat/hls_sample_aes.c | 46

[FFmpeg-devel] [PATCH 3/3] libavformat/hls: correct indentation

2021-01-22 Thread Nachiket Tarate
Signed-off-by: Nachiket Tarate --- libavformat/hls.c | 34 +- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/libavformat/hls.c b/libavformat/hls.c index 22e3b22650..c783bc7254 100644 --- a/libavformat/hls.c +++ b/libavformat/hls.c @@ -2025,23 +2025

Re: [FFmpeg-devel] [GASPP PATCH 2/2] Match aarch64 register lists with tbl/tbx too

2021-01-22 Thread Martin Storsjö
On Sun, 17 Jan 2021, Martin Storsjö wrote: Remove the restriction on matching on the same line as ld1/st1 and similar ones; the pattern for the register list itself should be strict enough to avoid false matches. --- gas-preprocessor.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff

[FFmpeg-devel] [PATCH 1/3] libavcodec/adts_header: add frame_length field and avpriv function to parse AAC ADTS header

2021-01-22 Thread Nachiket Tarate
These will be used by HLS demuxer in case of SAMPLE-AES encryption/decryption. Signed-off-by: Nachiket Tarate --- libavcodec/adts_header.c | 1 + libavcodec/adts_header.h | 14 ++ libavcodec/adts_parser.c | 28 3 files changed, 43 insertions(+) diff --g

Re: [FFmpeg-devel] [PATCH 2/3] libavformat/hls: add support for SAMPLE-AES decryption in HLS demuxer

2021-01-22 Thread Andreas Rheinhardt
Nachiket Tarate: > Apple HTTP Live Streaming Sample Encryption: > > https://developer.apple.com/library/ios/documentation/AudioVideo/Conceptual/HLS_Sample_Encryption > > Signed-off-by: Nachiket Tarate > --- > libavformat/Makefile | 2 +- > libavformat/hls.c| 97 ++- >

Re: [FFmpeg-devel] [PATCH] avfilter: Added siti filter

2021-01-22 Thread Werner Robitza
On Fri, Jan 22, 2021 at 12:28 PM Paul B Mahol wrote: > > As an end user I would find an output file with a known format much > > easier to work with. > > This works very well for the libvmaf filter, for example. > > Could you please explain how to achieve the same kind of output with > > the metad

[FFmpeg-devel] [PATCH] avfilter: add epx pixel art scaler

2021-01-22 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- doc/filters.texi | 12 ++ libavfilter/Makefile | 1 + libavfilter/allfilters.c | 1 + libavfilter/vf_epx.c | 287 +++ 4 files changed, 301 insertions(+) create mode 100644 libavfilter/vf_epx.c diff --git a/

Re: [FFmpeg-devel] [PATCH] avfilter: Added siti filter

2021-01-22 Thread Paul B Mahol
On Fri, Jan 22, 2021 at 9:05 PM Werner Robitza wrote: > On Fri, Jan 22, 2021 at 12:28 PM Paul B Mahol wrote: > > > As an end user I would find an output file with a known format much > > > easier to work with. > > > This works very well for the libvmaf filter, for example. > > > Could you please

[FFmpeg-devel] [PATCH] videotoolboxenc: enable constant quality with -q:v on Apple Silicon Macs and use b-frames für HEVC and H264 and b-pyramid for HEVC.

2021-01-22 Thread simone
From: Simone Karin Lehmann Signed-off-by: Simone Karin Lehmann --- libavcodec/videotoolboxenc.c | 54 1 file changed, 42 insertions(+), 12 deletions(-) diff --git a/libavcodec/videotoolboxenc.c b/libavcodec/videotoolboxenc.c index 400401550a..e8cbc9dd4d 100

[FFmpeg-devel] [PATCH] avcodec/sei: add Parameter Set Inclusion Indication enum value

2021-01-22 Thread James Almer
Defined in H.274, it shares the same value as Active Parameter Sets (which was removed for codecs that reference H.274). Signed-off-by: James Almer --- libavcodec/sei.h | 1 + 1 file changed, 1 insertion(+) diff --git a/libavcodec/sei.h b/libavcodec/sei.h index f07c72ae7b..5513590b51 100644 ---

[FFmpeg-devel] [PATCH] avcodec/dnxhd: Make ff_dxnhd_get_cid_table return a pointer, not index

2021-01-22 Thread Andreas Rheinhardt
All callers only use the index into ff_dnxhd_cid_table to get a pointer to the desired entry. Signed-off-by: Andreas Rheinhardt --- libavcodec/dnxhddata.c | 46 +- libavcodec/dnxhddata.h | 4 +--- libavcodec/dnxhddec.c | 13 ++-- libavcodec/dnxhd

Re: [FFmpeg-devel] [PATCH 1/2] avformat/mxfdec: Fix integer overflow in next position in mxf_read_local_tags()

2021-01-22 Thread Michael Niedermayer
On Fri, Jan 22, 2021 at 11:23:09AM -0300, James Almer wrote: > On 1/22/2021 11:09 AM, Michael Niedermayer wrote: > > Fixes: signed integer overflow: 9223372036854775723 + 8192 cannot be > > represented in type 'long' > > Fixes: > > 29072/clusterfuzz-testcase-minimized-ffmpeg_dem_MXF_fuzzer-481260

Re: [FFmpeg-devel] [PATCH 1/2] avformat/mxfdec: Fix integer overflow in next position in mxf_read_local_tags()

2021-01-22 Thread James Almer
On 1/22/2021 7:10 PM, Michael Niedermayer wrote: On Fri, Jan 22, 2021 at 11:23:09AM -0300, James Almer wrote: On 1/22/2021 11:09 AM, Michael Niedermayer wrote: Fixes: signed integer overflow: 9223372036854775723 + 8192 cannot be represented in type 'long' Fixes: 29072/clusterfuzz-testcase-min

Re: [FFmpeg-devel] [PATCH 1/2] avformat/mxfdec: Fix integer overflow in next position in mxf_read_local_tags()

2021-01-22 Thread Michael Niedermayer
On Fri, Jan 22, 2021 at 07:16:58PM -0300, James Almer wrote: > On 1/22/2021 7:10 PM, Michael Niedermayer wrote: > > On Fri, Jan 22, 2021 at 11:23:09AM -0300, James Almer wrote: > > > On 1/22/2021 11:09 AM, Michael Niedermayer wrote: > > > > Fixes: signed integer overflow: 9223372036854775723 + 8192

Re: [FFmpeg-devel] [PATCH 7/7] avformat/fitsdec: Better size checks

2021-01-22 Thread Michael Niedermayer
On Wed, Nov 04, 2020 at 01:06:49AM +0100, Michael Niedermayer wrote: > Fixes: out of array access > Fixes: > 26819/clusterfuzz-testcase-minimized-ffmpeg_dem_FITS_fuzzer-5634559355650048 > Fixes: > 26820/clusterfuzz-testcase-minimized-ffmpeg_dem_FITS_fuzzer-5760774955597824 > > Found-by: continuo

Re: [FFmpeg-devel] [PATCH 6/7] avcodec/utils: USe 64bit in get_audio_frame_duration() for ADPCM_DTK

2021-01-22 Thread Michael Niedermayer
On Sat, Nov 14, 2020 at 11:17:52AM +0100, Anton Khirnov wrote: > Quoting Michael Niedermayer (2020-11-04 01:06:48) > > Fixes: signed integer overflow: 131203586 * 28 cannot be represented in > > type 'int' > > Fixes: > > 26817/clusterfuzz-testcase-minimized-ffmpeg_dem_MSF_fuzzer-6296902548848640

Re: [FFmpeg-devel] [PATCH 1/7] avformat/ads: Check size

2021-01-22 Thread Michael Niedermayer
On Thu, Jan 14, 2021 at 11:51:10PM +0100, Michael Niedermayer wrote: > Fixes: signed integer overflow: -2147483616 - 64 cannot be represented in > type 'int' > Fixes: > 26910/clusterfuzz-testcase-minimized-ffmpeg_dem_ADS_fuzzer-6617769344892928 > > Found-by: continuous fuzzing process > https:/

Re: [FFmpeg-devel] [PATCH 2/7] avformat/bfi: Check chunk_header

2021-01-22 Thread Michael Niedermayer
On Thu, Jan 14, 2021 at 11:51:11PM +0100, Michael Niedermayer wrote: > Fixes: signed integer overflow: -2147483648 - 3 cannot be represented in type > 'int' > Fixes: > 26910/clusterfuzz-testcase-minimized-ffmpeg_dem_BFI_fuzzer-6665764123836416 > > Found-by: continuous fuzzing process > https://

Re: [FFmpeg-devel] [PATCH 4/7] avformat/utils: Check dts - (1<

2021-01-22 Thread Michael Niedermayer
On Thu, Jan 14, 2021 at 11:51:13PM +0100, Michael Niedermayer wrote: > Fixes: signed integer overflow: -9223372036842389247 - 2147483648 cannot be > represented in type 'long long' > Fixes: > 26910/clusterfuzz-testcase-minimized-ffmpeg_dem_FLV_fuzzer-4845007531671552 > > Found-by: continuous fuz

Re: [FFmpeg-devel] [PATCH 5/7] avformat/flvdec: Use av_sat_add64() for pts computation

2021-01-22 Thread Michael Niedermayer
On Thu, Jan 14, 2021 at 11:51:14PM +0100, Michael Niedermayer wrote: > Fixes: signed integer overflow: -9223372036854767583 + -65536 cannot be > represented in type 'long' > Fixes: > 26910/clusterfuzz-testcase-minimized-ffmpeg_dem_FLV_fuzzer-6734549467922432 > > Found-by: continuous fuzzing proc

Re: [FFmpeg-devel] [PATCH 2/2] avformat/iff: Check block align also for ID_MAUD

2021-01-22 Thread Michael Niedermayer
On Sat, Jan 02, 2021 at 02:22:33AM +0100, Michael Niedermayer wrote: > Fixes: Timeout & OOM > Fixes: > 28701/clusterfuzz-testcase-minimized-ffmpeg_dem_IFF_fuzzer-5185094964871168 > > Found-by: continuous fuzzing process > https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg > Signed-of

Re: [FFmpeg-devel] [PATCH 2/3] libavformat/hls: add support for SAMPLE-AES decryption in HLS demuxer

2021-01-22 Thread Carl Eugen Hoyos
Am Do., 21. Jan. 2021 um 20:42 Uhr schrieb Nachiket Tarate : > > Apple HTTP Live Streaming Sample Encryption: This is definitely important enough to warrant a line in the Changelog. Thank you for your effort, Carl Eugen ___ ffmpeg-devel mailing list ffm