[FFmpeg-devel] [PATCH] avfilter/avfilter: Fix hardcoded input index

2021-09-04 Thread Soft Works
This fix targets cases where multiple input pads have a .filter_frame function. ff_request_frame_to_filter needs to call ff_request_frame with the correct input pad instead of the hardcoded first one. Signed-off-by: softworkz --- libavfilter/avfilter.c | 18 +- 1 file changed,

Re: [FFmpeg-devel] [PATCH 2/4] avcodec/nvenc: Add intra refresh support

2021-09-04 Thread lance . lmwang
On Fri, Sep 03, 2021 at 07:22:32PM +0200, Timo Rothenpieler wrote: > On 02.09.2021 12:38, lance.lmw...@gmail.com wrote: > > From: Limin Wang > > > > Signed-off-by: Limin Wang > > --- > > libavcodec/nvenc.c | 24 +--- > > libavcodec/nvenc.h | 1 + > >

Re: [FFmpeg-devel] [PATCH 3/4] avcodec/mpegutils: consolidate single byte av_log()

2021-09-04 Thread James Almer
On 9/4/2021 12:28 PM, Michael Niedermayer wrote: On Fri, Sep 03, 2021 at 03:45:55PM -0300, James Almer wrote: On 9/3/2021 3:39 PM, Michael Niedermayer wrote: Fixes: Timeout (56sec -> 15sec) Fixes: 37141/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_MPEG4_fuzzer-6192122867875840 Found-by:

Re: [FFmpeg-devel] [PATCH 3/4] avcodec/mpegutils: consolidate single byte av_log()

2021-09-04 Thread Andreas Rheinhardt
Michael Niedermayer: > On Fri, Sep 03, 2021 at 09:00:22PM +0200, Andreas Rheinhardt wrote: >> Michael Niedermayer: >>> Fixes: Timeout (56sec -> 15sec) >>> Fixes: >>> 37141/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_MPEG4_fuzzer-6192122867875840 >>> >>> Found-by: continuous fuzzing process

Re: [FFmpeg-devel] [PATCH 3/4] avcodec/mpegutils: consolidate single byte av_log()

2021-09-04 Thread Michael Niedermayer
On Fri, Sep 03, 2021 at 03:45:55PM -0300, James Almer wrote: > On 9/3/2021 3:39 PM, Michael Niedermayer wrote: > > Fixes: Timeout (56sec -> 15sec) > > Fixes: > > 37141/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_MPEG4_fuzzer-6192122867875840 > > > > Found-by: continuous fuzzing process >

Re: [FFmpeg-devel] [PATCH 3/4] avcodec/mpegutils: consolidate single byte av_log()

2021-09-04 Thread Michael Niedermayer
On Fri, Sep 03, 2021 at 09:00:22PM +0200, Andreas Rheinhardt wrote: > Michael Niedermayer: > > Fixes: Timeout (56sec -> 15sec) > > Fixes: > > 37141/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_MPEG4_fuzzer-6192122867875840 > > > > Found-by: continuous fuzzing process > >

Re: [FFmpeg-devel] [PATCH 1/2] avfilter/avfiltergraph: add an "auto" constant to the threads option

2021-09-04 Thread James Almer
On 9/3/2021 10:36 AM, James Almer wrote: Signed-off-by: James Almer --- libavfilter/avfiltergraph.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavfilter/avfiltergraph.c b/libavfilter/avfiltergraph.c index 383d9c5478..727c8b7f5c 100644 ---

Re: [FFmpeg-devel] [PATCH v1 1/1] libavformat/amr.c: remove mode range check

2021-09-04 Thread Sun Zhenliang
> > On Sep 4, 2021, at 16:01, Hendrik Leppkes wrote: > > On Sat, Sep 4, 2021 at 9:10 AM sunzhenliang > wrote: >> >> Those comfort noise frames and empty frames should be >> considered the correct frame. And amr.c/amr_read_packet() >> also takes them as correct frames too. >> >>

Re: [FFmpeg-devel] [PATCH v2] lavfi: add nlmeans CUDA filter

2021-09-04 Thread Timo Rothenpieler
On 04.09.2021 22:03, Dylan Fernando wrote: On Thu, Sep 2, 2021 at 4:25 PM Timo Rothenpieler wrote: On 02.09.2021 15:32, Timo Rothenpieler wrote: On 02.09.2021 19:50, Dylan Fernando wrote: I want to add support for the other formats, but I'm not sure how to find video files to test it out.

Re: [FFmpeg-devel] [PATCH v2] lavfi: add nlmeans CUDA filter

2021-09-04 Thread Dylan Fernando
On Thu, Sep 2, 2021 at 4:25 PM Timo Rothenpieler wrote: > On 02.09.2021 15:32, Timo Rothenpieler wrote: > > On 02.09.2021 19:50, Dylan Fernando wrote: > >> I want to add support for the other formats, but I'm not sure how to > find > >> video files to test it out. I tried looking through > >>

Re: [FFmpeg-devel] [PATCH] Revert "ffmpeg: force 128k default audio bitrate if nothing is specified and there is no specific default"

2021-09-04 Thread Andreas Rheinhardt
Andreas Rheinhardt: > This reverts commit 628a73f8f3768513fa6152c98d54842cf2ae1aad. > > At the time of said commit there was talk of removing the audio bitrate > "ab" option to bring FFmpeg in line with what Libav has done in 2012 in > commit 041cd5a0c55e02dd3b9a2419644b03103819c3d3. By having

Re: [FFmpeg-devel] [PATCH] MSN Siren decoder

2021-09-04 Thread Paul B Mahol
LGTM ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-devel] [PATCH v1 1/1] libavformat/amr.c: remove mode range check

2021-09-04 Thread Hendrik Leppkes
On Sat, Sep 4, 2021 at 9:10 AM sunzhenliang wrote: > > Those comfort noise frames and empty frames should be > considered the correct frame. And amr.c/amr_read_packet() > also takes them as correct frames too. > > Signed-off-by: sunzhenliang > --- > libavformat/amr.c | 4 ++-- > 1 file changed,

[FFmpeg-devel] [PATCH] MSN Siren decoder

2021-09-04 Thread Peter Ross
--- Sample: http://samples.ffmpeg.org/A-codecs/msnsiren/msnsiren.wav Changelog | 1 + libavcodec/Makefile | 1 + libavcodec/allcodecs.c | 1 + libavcodec/codec_desc.c | 7 + libavcodec/codec_id.h | 1 + libavcodec/siren.c | 60

[FFmpeg-devel] [PATCH v1 1/1] libavformat/amr.c: remove mode range check

2021-09-04 Thread sunzhenliang
Those comfort noise frames and empty frames should be considered the correct frame. And amr.c/amr_read_packet() also takes them as correct frames too. Signed-off-by: sunzhenliang --- libavformat/amr.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavformat/amr.c