Re: [FFmpeg-devel] [PATCH] opusdec: do not fail when LBRR frames are present

2020-09-11 Thread Lynne
On 11/09/2020 19:37, Anton Khirnov wrote: > Decode and discard them. > > Fixes ticket 4641. > --- > libavcodec/opus_silk.c | 28 > libavcodec/opustab.c | 3 +++ > libavcodec/opustab.h | 3 +++ > 3 files changed, 26 insertions(+), 8 deletions(-) > > diff --git a

Re: [FFmpeg-devel] WHIP - Webrtc Http Ingest Protocol

2020-09-11 Thread Kieran Kunhya
On Fri, 11 Sep 2020 at 21:41, Sergio Garcia Murillo < sergio.garcia.muri...@gmail.com> wrote: > On 11/09/2020 17:29, Kieran Kunhya wrote: > > On Fri, 11 Sep 2020 at 11:31, Sergio Garcia Murillo < > > sergio.garcia.muri...@gmail.com> wrote: > > > >> Hi all! > >> > >> WebRTC can be an intimidating m

Re: [FFmpeg-devel] WHIP - Webrtc Http Ingest Protocol

2020-09-11 Thread Sergio Garcia Murillo
On 11/09/2020 17:29, Kieran Kunhya wrote: On Fri, 11 Sep 2020 at 11:31, Sergio Garcia Murillo < sergio.garcia.muri...@gmail.com> wrote: Hi all! WebRTC can be an intimidating monster, and we all are aware of that. Also, the fact that every webrtc media server/service has their own custom protoc

Re: [FFmpeg-devel] [PATCH 1/2 v3] avcodec/packet: move AVPacketList definition and function helpers over from libavformat

2020-09-11 Thread James Almer
On 9/7/2020 11:31 AM, James Almer wrote: > And replace the flags parameter with a function callback that can be used to > copy the contents of the packet (e.g, av_packet_ref and av_packet_copy_props). > > Signed-off-by: James Almer > --- > This version achieves the same effect as v2 while being c

Re: [FFmpeg-devel] [PATCH] avcodec/mobiclip: Check quantizer before table setup

2020-09-11 Thread Paul B Mahol
On Fri, Sep 11, 2020 at 08:09:48PM +0200, Michael Niedermayer wrote: > On Fri, Sep 11, 2020 at 11:12:33AM +0200, Paul B Mahol wrote: > > On Fri, Sep 11, 2020 at 01:19:59AM +0200, Michael Niedermayer wrote: > > > Fixes: index -1 out of bounds for type 'const uint8_t [6][16]' > > > Fixes: out of arra

Re: [FFmpeg-devel] [PATCH] avcodec/mobiclip: Check quantizer before table setup

2020-09-11 Thread Michael Niedermayer
On Fri, Sep 11, 2020 at 11:12:33AM +0200, Paul B Mahol wrote: > On Fri, Sep 11, 2020 at 01:19:59AM +0200, Michael Niedermayer wrote: > > Fixes: index -1 out of bounds for type 'const uint8_t [6][16]' > > Fixes: out of array read > > Fixes: shift exponent -21 is negative > > Fixes: > > 25422/cluste

[FFmpeg-devel] [PATCH] opusdec: do not fail when LBRR frames are present

2020-09-11 Thread Anton Khirnov
Decode and discard them. Fixes ticket 4641. --- libavcodec/opus_silk.c | 28 libavcodec/opustab.c | 3 +++ libavcodec/opustab.h | 3 +++ 3 files changed, 26 insertions(+), 8 deletions(-) diff --git a/libavcodec/opus_silk.c b/libavcodec/opus_silk.c index 2fcbf3b

Re: [FFmpeg-devel] WHIP - Webrtc Http Ingest Protocol

2020-09-11 Thread Lynne
On 11/09/2020 14:16, Sergio Garcia Murillo wrote: > On 11/09/2020 13:49, Lynne wrote: > > WebRTC uses rtp muxing to send all data in the same udp port, and lip > sync based on rtcp (also muxed on same udp port).  It has been working > for years. Its still a bit of a mess, and it took many years t

Re: [FFmpeg-devel] [PATCH] avcodec/crystalhd: Remove unused packet

2020-09-11 Thread James Almer
On 9/11/2020 1:52 PM, Andreas Rheinhardt wrote: > Unused since 41b0561dc7246b72a834067da539ae98b1ec6631. > > Signed-off-by: Andreas Rheinhardt > --- > Completely untested as I don't have a CrystalHD device. > > libavcodec/crystalhd.c | 2 -- > 1 file changed, 2 deletions(-) > > diff --git a/li

[FFmpeg-devel] [PATCH] avcodec/crystalhd: Remove unused packet

2020-09-11 Thread Andreas Rheinhardt
Unused since 41b0561dc7246b72a834067da539ae98b1ec6631. Signed-off-by: Andreas Rheinhardt --- Completely untested as I don't have a CrystalHD device. libavcodec/crystalhd.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/libavcodec/crystalhd.c b/libavcodec/crystalhd.c index e3c5955969..2288

[FFmpeg-devel] [PATCH 0/4] ffmpeg: late A/V encoder init, AVFrame metadata usage

2020-09-11 Thread Jan Ekström
This patch set started with a very simple wish to not have to set color related values manually each time when utilizing ffmpeg.c. I do not have the whole FATE suite locally, so most likely some test will fail due to expectations of the metadata not being set for video - or due to me failing to ha

[FFmpeg-devel] [PATCH 4/4] ffmpeg: warn if an encoder has to be initialized without an AVFrame

2020-09-11 Thread Jan Ekström
This should make it easier to spot such cases. --- fftools/ffmpeg.c | 14 ++ 1 file changed, 14 insertions(+) diff --git a/fftools/ffmpeg.c b/fftools/ffmpeg.c index 63c8771a01..70e7274d87 100644 --- a/fftools/ffmpeg.c +++ b/fftools/ffmpeg.c @@ -3281,6 +3281,20 @@ static int init_outpu

[FFmpeg-devel] [PATCH 3/4] ffmpeg: pass decoded or filtered AVFrame to output stream initialization

2020-09-11 Thread Jan Ekström
Additionally, reap the first rewards by being able to set the color related encoding values based on the passed AVFrame. --- fftools/ffmpeg.c | 40 ++-- 1 file changed, 30 insertions(+), 10 deletions(-) diff --git a/fftools/ffmpeg.c b/fftools/ffmpeg.c index 24b

[FFmpeg-devel] [PATCH 1/4] ffmpeg: deduplicate init_output_stream usage logic

2020-09-11 Thread Jan Ekström
Adds a wrapper function, which handles any errors depending on how fatal a failure would be. --- fftools/ffmpeg.c | 51 1 file changed, 25 insertions(+), 26 deletions(-) diff --git a/fftools/ffmpeg.c b/fftools/ffmpeg.c index 84306818a2..cb7644de6a

[FFmpeg-devel] [PATCH 2/4] ffmpeg: move A/V non-streamcopy initialization to a later point

2020-09-11 Thread Jan Ekström
This enables us to utilize AVFrames for initialization parameters further down the line. --- fftools/ffmpeg.c | 63 ++-- 1 file changed, 34 insertions(+), 29 deletions(-) diff --git a/fftools/ffmpeg.c b/fftools/ffmpeg.c index cb7644de6a..24b8e175a6 1006

Re: [FFmpeg-devel] WHIP - Webrtc Http Ingest Protocol

2020-09-11 Thread Kieran Kunhya
On Fri, 11 Sep 2020 at 11:31, Sergio Garcia Murillo < sergio.garcia.muri...@gmail.com> wrote: > Hi all! > > WebRTC can be an intimidating monster, and we all are aware of that. > Also, the fact that every webrtc media server/service has their own > custom protocol has not helped to increase its ad

Re: [FFmpeg-devel] WHIP - Webrtc Http Ingest Protocol

2020-09-11 Thread Lynne
On 11/09/2020 12:31, Sergio Garcia Murillo wrote: > Hi all! > > WebRTC can be an intimidating monster, and we all are aware of that. > Also, the fact that every webrtc media server/service has their own > custom protocol has not helped to increase its adoption in the streaming > world, with still

Re: [FFmpeg-devel] WHIP - Webrtc Http Ingest Protocol

2020-09-11 Thread Sergio Garcia Murillo
El vie., 11 sept. 2020 15:23, Lynne escribió: > On 11/09/2020 14:16, Sergio Garcia Murillo wrote: > > On 11/09/2020 13:49, Lynne wrote: > > > > WebRTC uses rtp muxing to send all data in the same udp port, and lip > > sync based on rtcp (also muxed on same udp port). It has been working > > for

Re: [FFmpeg-devel] [PATCH] avfilter: add http video filter.

2020-09-11 Thread Nicolas George
Alex (12020-09-11): > Can You explain more, because I not fully understand "hard-coding " params, > http. Where does it say that the size and format of the frame needs to be passed as "width=1280&height=720&format=1" rather than "1280x720/yuv420p"? In fact, where did you find that using the nume

Re: [FFmpeg-devel] [PATCH 1/2] avcodec: Set AV_CODEC_CAP_CHANNEL_CONF in more decoders

2020-09-11 Thread Paul B Mahol
On Thu, Sep 10, 2020 at 02:02:19PM +0200, Michael Niedermayer wrote: > Suggested-by: Paul B Mahol > See: [FFmpeg-devel] [PATCH 1/3] avcodec/fastaudio: Check channels > Signed-off-by: Michael Niedermayer > --- > libavcodec/ac3dec_fixed.c | 3 ++- > libavcodec/ac3dec_float.c | 6

Re: [FFmpeg-devel] [PATCH 2/2] avcodec/utils: Require a non zero channels unless AV_CODEC_CAP_CHANNEL_CONF is set

2020-09-11 Thread Paul B Mahol
On Thu, Sep 10, 2020 at 02:02:20PM +0200, Michael Niedermayer wrote: > This avoids per codec checks for channels not being 0 > > Fixes: division by 0 > Fixes: > 25419/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_FASTAUDIO_fuzzer-5632544761184256 > Fixes: > 25433/clusterfuzz-testcase-minimiz

Re: [FFmpeg-devel] [PATCH] avcodec/utils: make the src paramater for ff_thread_ref_frame const

2020-09-11 Thread James Almer
On 9/10/2020 10:38 AM, James Almer wrote: > Signed-off-by: James Almer > --- > libavcodec/thread.h | 2 +- > libavcodec/utils.c | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/libavcodec/thread.h b/libavcodec/thread.h > index 540135fbc9..87bf154da9 100644 > --- a/lib

Re: [FFmpeg-devel] [PATCH] avcodec/adpcm: take into account block_align when decoding ADPCM_PSX

2020-09-11 Thread Paul B Mahol
On Fri, Sep 11, 2020 at 01:14:02PM +, Zane van Iperen wrote: > On Fri, 11 Sep 2020 13:29:39 +0200 > "Paul B Mahol" wrote: > > > > > Should reduce decoding overhead. > > > > Signed-off-by: Paul B Mahol > > --- > > libavcodec/adpcm.c | 7 +-- > > 1 file changed, 5 insertions(+), 2 delet

Re: [FFmpeg-devel] [PATCH] avcodec/adpcm: take into account block_align when decoding ADPCM_PSX

2020-09-11 Thread Zane van Iperen
On Fri, 11 Sep 2020 13:29:39 +0200 "Paul B Mahol" wrote: > > Should reduce decoding overhead. > > Signed-off-by: Paul B Mahol > --- > libavcodec/adpcm.c | 7 +-- > 1 file changed, 5 insertions(+), 2 deletions(-) > > diff --git a/libavcodec/adpcm.c b/libavcodec/adpcm.c > index 71e37efde7.

Re: [FFmpeg-devel] [PATCH 4/6] avformat: add argo_asf muxer

2020-09-11 Thread Zane van Iperen
On Fri, 11 Sep 2020 13:45:58 +0200 "Paul B Mahol" wrote: > > On Sun, Aug 02, 2020 at 10:21:12AM +, Zane van Iperen wrote: > > Signed-off-by: Zane van Iperen > > --- > > Changelog| 1 + > > libavformat/Makefile | 1 + > > libavformat/allformats.c | 1 + > > libavfo

Re: [FFmpeg-devel] [PATCH] avfilter: add http video filter.

2020-09-11 Thread Alex
> The hard-coding of HTTP, the hard-coding of the parameters passing, the > arbitrary limitations make> this unacceptable. Can You explain more, because I not fully understand "hard-coding " params, http. > It is a job for this filter if the external processing requires it. As > it is, the exte

Re: [FFmpeg-devel] WHIP - Webrtc Http Ingest Protocol

2020-09-11 Thread Sergio Garcia Murillo
On 11/09/2020 13:49, Lynne wrote: On 11/09/2020 12:31, Sergio Garcia Murillo wrote: Hi all! WebRTC can be an intimidating monster, and we all are aware of that. Also, the fact that every webrtc media server/service has their own custom protocol has not helped to increase its adoption in the str

Re: [FFmpeg-devel] [PATCH 4/6] avformat: add argo_asf muxer

2020-09-11 Thread Paul B Mahol
On Sun, Aug 02, 2020 at 10:21:12AM +, Zane van Iperen wrote: > Signed-off-by: Zane van Iperen > --- > Changelog| 1 + > libavformat/Makefile | 1 + > libavformat/allformats.c | 1 + > libavformat/argo_asf.c | 123 ++- > libavform

Re: [FFmpeg-devel] [PATCH] avfilter: add http video filter.

2020-09-11 Thread Alex
>The format for the parameters is hard-coded.Please, tell me more I don't >understand that do You mean? --- Original message --- From: "Nicolas George"  Date: 11 September 2020, 14:09:47 Alex (12020-09-11): > This filter has options: url and content-type header for requests and it's > not hardc

[FFmpeg-devel] [PATCH] avcodec/adpcm: take into account block_align when decoding ADPCM_PSX

2020-09-11 Thread Paul B Mahol
Should reduce decoding overhead. Signed-off-by: Paul B Mahol --- libavcodec/adpcm.c | 7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/libavcodec/adpcm.c b/libavcodec/adpcm.c index 71e37efde7..e409a3aa6a 100644 --- a/libavcodec/adpcm.c +++ b/libavcodec/adpcm.c @@ -1966,11

Re: [FFmpeg-devel] [PATCH] avfilter: add http video filter.

2020-09-11 Thread Nicolas George
Alex (12020-09-11): > This filter has options: url and content-type header for requests and it's > not hardcoded. The format for the parameters is hard-coded. > Format and resolution can be changed after this filter later in filter > graph, it's not a job for this filter, for example: It is a j

Re: [FFmpeg-devel] [PATCH] avfilter: add http video filter.

2020-09-11 Thread Alex
> Hard-coded URL parameters, >nothing to set the formats, not even the possibility of a filter that >changes the resolution. This filter has options: url and content-type header for requests and it's not hardcoded. Format and resolution can be changed after this filter later in filter graph, it'

Re: [FFmpeg-devel] [PATCH 8/9] avfilter/vf_subtitles: Return early upon avformat_open_input() failure

2020-09-11 Thread Nicolas George
Andreas Rheinhardt (12020-09-11): > It avoids cleaning up three inexistent objects; I actually regarded this > as enough benefit to merit the change. Cleaning-up inexistent objects is a negligible cost. In this case, it happens in a part of the code that is particularly not speed-critical. I think

[FFmpeg-devel] WHIP - Webrtc Http Ingest Protocol

2020-09-11 Thread Sergio Garcia Murillo
Hi all! WebRTC can be an intimidating monster, and we all are aware of that. Also, the fact that every webrtc media server/service has their own custom protocol has not helped to increase its adoption in the streaming world, with still relies heavily on other protocols like RTMP, SRTP or even

[FFmpeg-devel] [PATCH] avformat: add Square SVS demuxer

2020-09-11 Thread Paul B Mahol
Signed-off-by: Paul B Mahol --- libavformat/Makefile | 1 + libavformat/allformats.c | 1 + libavformat/svs.c| 96 3 files changed, 98 insertions(+) create mode 100644 libavformat/svs.c diff --git a/libavformat/Makefile b/libavformat/Makefi

Re: [FFmpeg-devel] [PATCH 8/9] avfilter/vf_subtitles: Return early upon avformat_open_input() failure

2020-09-11 Thread Andreas Rheinhardt
Nicolas George: > Andreas Rheinhardt (12020-09-10): >> There is nothing to free at this point. >> >> Signed-off-by: Andreas Rheinhardt >> --- >> libavfilter/vf_subtitles.c | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) > > Does it help anything? If something gets allocated earlier, we

Re: [FFmpeg-devel] [PATCH] avfilter: add http video filter.

2020-09-11 Thread Nicolas George
Timo Rothenpieler (12020-09-11): > Entirely outside of this filter being acceptable at all, > pulling in libcurl is not an option without major safeguards for every > single overlapping tls library both ffmpeg and curl support. > If both are using the same library, there is a huge potential for lib

Re: [FFmpeg-devel] [PATCH 1/4] avdevice/decklink_commoh.h: remove unsupported decklink version ifdef

2020-09-11 Thread Moritz Barsnick
On Tue, Sep 08, 2020 at 19:52:29 +0200, Marton Balint wrote: > Subject: Re: [FFmpeg-devel] [PATCH 1/4] avdevice/decklink_commoh.h: remove Nit: typo^ Moritz ___ ffmpeg-devel mailing list ffmpeg-devel

Re: [FFmpeg-devel] [PATCH 3/3] avfilter/formats: Remove pointless checks

2020-09-11 Thread Nicolas George
Andreas Rheinhardt (12020-09-11): > ff_formats_ref() takes a pointer to an AVFilterFormats and a pointer to > a pointer to an AVFilterFormats as arguments and adds the latter as an > owner to the list pointed to by the former; the latter is hereby always > the address of a list contained in an AVFi

Re: [FFmpeg-devel] [PATCH 1/3] avfilter/formats: Don't typedef structure a second time

2020-09-11 Thread Nicolas George
Andreas Rheinhardt (12020-09-11): > Before commit 2f76476549a01ae2c4ec2a440e4b14c5aba64869, avfilter.h > contained no typedef for AVFilterChannelLayouts; all references to it > were done using its struct tag. formats.h meanwhile contained the > definition of the struct and a typedef for it. Said co

Re: [FFmpeg-devel] [PATCH 9/9] fftools, libavcodec, libavfilter: Add const to some AVCodec *

2020-09-11 Thread Nicolas George
Andreas Rheinhardt (12020-09-10): > The user has no business modifying the underlying AVCodec. > > Signed-off-by: Andreas Rheinhardt > --- > fftools/ffmpeg.h | 5 +++-- > fftools/ffmpeg_filter.c| 5 +++-- > libavcodec/avrndec.c | 2 +- > libavcodec/utils.c | 4 ++-- >

Re: [FFmpeg-devel] [PATCH 6/9] avfilter/vf_subtitles: Remove unnecessary initialization of AVPacket

2020-09-11 Thread Nicolas George
Andreas Rheinhardt (12020-09-10): > av_read_frame() can handle uninitialized packets. > > Signed-off-by: Andreas Rheinhardt > --- > libavfilter/vf_subtitles.c | 3 --- > 1 file changed, 3 deletions(-) LGTM. Regards, -- Nicolas George signature.asc Description: PGP signature _

Re: [FFmpeg-devel] [PATCH 5/9] avfilter/vf_subtitles: Fix leaks on failure

2020-09-11 Thread Nicolas George
Andreas Rheinhardt (12020-09-10): > init_subtitles() sometimes returned directly upon error without cleaning > up after itself. The easiest way to trigger this is by using > picture-based subtitles; it is also possible to run into this in case of > missing decoders or allocation failures. > > Furt

Re: [FFmpeg-devel] [PATCH 8/9] avfilter/vf_subtitles: Return early upon avformat_open_input() failure

2020-09-11 Thread Nicolas George
Andreas Rheinhardt (12020-09-10): > There is nothing to free at this point. > > Signed-off-by: Andreas Rheinhardt > --- > libavfilter/vf_subtitles.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Does it help anything? If something gets allocated earlier, we will need to add it back. W

Re: [FFmpeg-devel] [PATCH 8/9] avfilter/vf_subtitles: Return early upon avformat_open_input() failure

2020-09-11 Thread Paul B Mahol
On Thu, Sep 10, 2020 at 11:49:00PM +0200, Andreas Rheinhardt wrote: > There is nothing to free at this point. > > Signed-off-by: Andreas Rheinhardt > --- > libavfilter/vf_subtitles.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) probably ok > > diff --git a/libavfilter/vf_subtitles.

Re: [FFmpeg-devel] [PATCH 7/9] avfilter/vf_subtitles: Remove obsolete LIBAVCODEC_VERSION_INT checks

2020-09-11 Thread Paul B Mahol
On Thu, Sep 10, 2020 at 11:48:59PM +0200, Andreas Rheinhardt wrote: > libavcodec major version is already 58. > > Signed-off-by: Andreas Rheinhardt > --- > libavfilter/vf_subtitles.c | 10 +++--- > 1 file changed, 3 insertions(+), 7 deletions(-) > ok > diff --git a/libavfilter/vf_subtitle

Re: [FFmpeg-devel] [PATCH 9/9] fftools, libavcodec, libavfilter: Add const to some AVCodec *

2020-09-11 Thread Paul B Mahol
On Thu, Sep 10, 2020 at 11:49:01PM +0200, Andreas Rheinhardt wrote: > The user has no business modifying the underlying AVCodec. > > Signed-off-by: Andreas Rheinhardt > --- > fftools/ffmpeg.h | 5 +++-- > fftools/ffmpeg_filter.c| 5 +++-- > libavcodec/avrndec.c | 2 +- > liba

Re: [FFmpeg-devel] [PATCH 4/9] avfilter/vf_uspp: Fix potential leak of dict on error

2020-09-11 Thread Nicolas George
Andreas Rheinhardt (12020-09-10): > Signed-off-by: Andreas Rheinhardt > --- > libavfilter/vf_uspp.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Looks ok. Regards, -- Nicolas George signature.asc Description: PGP signature ___ ffmpeg-

Re: [FFmpeg-devel] [PATCH 7/9] avfilter/vf_subtitles: Remove obsolete LIBAVCODEC_VERSION_INT checks

2020-09-11 Thread Nicolas George
Andreas Rheinhardt (12020-09-10): > libavcodec major version is already 58. > > Signed-off-by: Andreas Rheinhardt > --- > libavfilter/vf_subtitles.c | 10 +++--- > 1 file changed, 3 insertions(+), 7 deletions(-) LGTM. Regards, -- Nicolas George signature.asc Description: PGP signatur

Re: [FFmpeg-devel] [PATCH 3/9] avfilter/lavfutils: Avoid initializing packet

2020-09-11 Thread Nicolas George
Andreas Rheinhardt (12020-09-10): > av_read_frame() can handle uninitialized packets. > > Signed-off-by: Andreas Rheinhardt > --- > libavfilter/lavfutils.c | 4 +--- > 1 file changed, 1 insertion(+), 3 deletions(-) LGTM. Regards, -- Nicolas George signature.asc Description: PGP signature

Re: [FFmpeg-devel] [PATCH 5/9] avfilter/vf_subtitles: Fix leaks on failure

2020-09-11 Thread Paul B Mahol
On Thu, Sep 10, 2020 at 11:48:57PM +0200, Andreas Rheinhardt wrote: > init_subtitles() sometimes returned directly upon error without cleaning > up after itself. The easiest way to trigger this is by using > picture-based subtitles; it is also possible to run into this in case of > missing decoders

Re: [FFmpeg-devel] [PATCH 6/9] avfilter/vf_subtitles: Remove unnecessary initialization of AVPacket

2020-09-11 Thread Paul B Mahol
On Thu, Sep 10, 2020 at 11:48:58PM +0200, Andreas Rheinhardt wrote: > av_read_frame() can handle uninitialized packets. > > Signed-off-by: Andreas Rheinhardt > --- > libavfilter/vf_subtitles.c | 3 --- > 1 file changed, 3 deletions(-) > probably ok > diff --git a/libavfilter/vf_subtitles.c b/

Re: [FFmpeg-devel] [PATCH 2/9] avfilter/lavfutils: Fix memleak when avformat_find_stream_info() fails

2020-09-11 Thread Paul B Mahol
On Thu, Sep 10, 2020 at 11:48:54PM +0200, Andreas Rheinhardt wrote: > Signed-off-by: Andreas Rheinhardt > --- > libavfilter/lavfutils.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > ok > diff --git a/libavfilter/lavfutils.c b/libavfilter/lavfutils.c > index 84dd4c0704..d7de89f4b3 1

Re: [FFmpeg-devel] [PATCH 2/9] avfilter/lavfutils: Fix memleak when avformat_find_stream_info() fails

2020-09-11 Thread Nicolas George
Andreas Rheinhardt (12020-09-10): > Signed-off-by: Andreas Rheinhardt > --- > libavfilter/lavfutils.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) LGTM. Regards, -- Nicolas George signature.asc Description: PGP signature ___ ffmpeg-de

Re: [FFmpeg-devel] [PATCH 1/3] avfilter/formats: Don't typedef structure a second time

2020-09-11 Thread Paul B Mahol
On Fri, Sep 11, 2020 at 01:49:09AM +0200, Andreas Rheinhardt wrote: > Before commit 2f76476549a01ae2c4ec2a440e4b14c5aba64869, avfilter.h > contained no typedef for AVFilterChannelLayouts; all references to it > were done using its struct tag. formats.h meanwhile contained the > definition of the st

Re: [FFmpeg-devel] [PATCH] avcodec/mobiclip: Check quantizer before table setup

2020-09-11 Thread Paul B Mahol
On Fri, Sep 11, 2020 at 01:19:59AM +0200, Michael Niedermayer wrote: > Fixes: index -1 out of bounds for type 'const uint8_t [6][16]' > Fixes: out of array read > Fixes: shift exponent -21 is negative > Fixes: > 25422/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_MOBICLIP_fuzzer-57482582265692

Re: [FFmpeg-devel] [PATCH 1/9] avfilter/lavfutils: Don't use uninitialized pointers for freeing

2020-09-11 Thread Paul B Mahol
On Thu, Sep 10, 2020 at 11:48:53PM +0200, Andreas Rheinhardt wrote: > Happened on several error conditions, e.g. if there is just no decoder > for the format (like with svg images). > > Signed-off-by: Andreas Rheinhardt > --- > libavfilter/lavfutils.c | 4 ++-- > 1 file changed, 2 insertions(+),

Re: [FFmpeg-devel] [PATCH 2/2] avformat/moflex: make seeking more useful

2020-09-11 Thread Paul B Mahol
On Thu, Sep 10, 2020 at 10:41:09PM +0200, Andreas Rheinhardt wrote: > Paul B Mahol: > > Signed-off-by: Paul B Mahol > > --- > > libavformat/moflex.c | 19 ++- > > 1 file changed, 18 insertions(+), 1 deletion(-) > > > > diff --git a/libavformat/moflex.c b/libavformat/moflex.c > >

Re: [FFmpeg-devel] Request for immediate take of action

2020-09-11 Thread Paul B Mahol
On Tue, Sep 08, 2020 at 06:44:11PM +0200, Nicolas George wrote: > Jean-Baptiste Kempf (12020-09-08): > > I think the explanation is quite aggressive and has absolutely nothing > > to do inside a git log, to be honest. > > > > The fact that you disagree on the commit is fine, but being passive > >

Re: [FFmpeg-devel] [PATCH v2 0/4] Add demuxer for Argonaut Games BRP files

2020-09-11 Thread Zane van Iperen
On Wed, 09 Sep 2020 00:04:43 + "Zane van Iperen" wrote: > > Adds support for demuxing BRP files from Argonaut Games' games. > Used to store the FMVs. > > v2: [1] > - Don't add AV_CODEC_ID_ARGO descriptor, use AV_CODEC_ID_NONE instead. > > [1]: https://ffmpeg.org/pipermail/ffmpeg-devel/2020