[FFmpeg-devel] [PATCH 10/10] avcodec/v210_enc: Move ff_v210enc_init into a header

2022-05-02 Thread Andreas Rheinhardt
This removes a dependency of checkasm on lavc/v210_enc.o and also allows to inline ff_v210enc_init() irrespectively of interposing. This dependency pulled basically all of libavcodec into checkasm, in particular all codecs. This also makes checkasm work when using shared Windows builds: On Windows,

[FFmpeg-devel] [PATCH 09/10] avcodec/v210_dec: Move ff_v210dec_init into a header

2022-05-02 Thread Andreas Rheinhardt
This removes a dependency of checkasm on lavc/v210_dec.o and also allows to inline ff_v210dec_init() irrespectively of interposing. Signed-off-by: Andreas Rheinhardt --- libavcodec/v210dec.c | 29 +-- libavcodec/v210dec.h | 1 - libavcodec/v210dec_init.h | 61 +

[FFmpeg-devel] [PATCH 07/10] avfilter/vf_nlmeans: Move ff_nlmeans_init into a header

2022-05-02 Thread Andreas Rheinhardt
This removes a dependency of checkasm on lavfi/vf_nlmeans.o and also allows to inline ff_nlmeans_init() irrespectively of interposing. Signed-off-by: Andreas Rheinhardt --- libavfilter/vf_nlmeans.c | 108 +- libavfilter/vf_nlmeans.h | 1 - libavfilter/vf_nlmea

[FFmpeg-devel] [PATCH 08/10] avfilter/vf_threshold: Move ff_threshold_init into a header

2022-05-02 Thread Andreas Rheinhardt
This removes a dependency of checkasm on lavfi/vf_threshold.o and also allows to inline ff_threshold_init() irrespectively of interposing. With this patch checkasm no longer pulls all of lavfi and lavf in. Signed-off-by: Andreas Rheinhardt --- libavfilter/threshold.h | 1 - libavfilter/

[FFmpeg-devel] [PATCH 06/10] avfilter/vf_hflip: Move ff_hflip_init into a header

2022-05-02 Thread Andreas Rheinhardt
This removes a dependency of checkasm on lavfi/vf_hflip.o and also allows to inline ff_hflip_init() irrespectively of interposing. Signed-off-by: Andreas Rheinhardt --- libavfilter/hflip.h | 1 - libavfilter/vf_hflip.c | 88 + libavfilter/vf_hflip_init

[FFmpeg-devel] [PATCH 05/10] avfilter/vf_gblur: Move ff_gblur_init into a header

2022-05-02 Thread Andreas Rheinhardt
This removes a dependency of checkasm on lavfi/vf_gblur.o and also allows to inline ff_gblur_init() irrespectively of interposing. Signed-off-by: Andreas Rheinhardt --- libavfilter/gblur.h | 1 - libavfilter/vf_gblur.c | 89 +- libavfilter/vf_gblur_init.h

[FFmpeg-devel] [PATCH 04/10] avfilter/vf_eq: Move ff_nlmeans_init into a header

2022-05-02 Thread Andreas Rheinhardt
This removes a dependency of checkasm on lavfi/vf_eq.o and also allows to inline ff_eq_init() irrespectively of interposing. Signed-off-by: Andreas Rheinhardt --- libavfilter/vf_eq.c | 27 --- libavfilter/vf_eq.h | 26 +- 2 files changed, 25 insert

[FFmpeg-devel] [PATCH 03/10] avfilter/vf_blend: Move ff_blend_init into a header

2022-05-02 Thread Andreas Rheinhardt
This removes a dependency of checkasm on lavfi/vf_blend.o and also allows to inline ff_blend_init() irrespectively of interposing. Signed-off-by: Andreas Rheinhardt --- libavfilter/blend.h | 1 - libavfilter/vf_blend.c | 176 +-- libavfilter/vf_blend_in

[FFmpeg-devel] [PATCH 02/10] avfilter/af_afir: Move ff_afir_init() to header

2022-05-02 Thread Andreas Rheinhardt
This allows to inline it in af_afir.c (regardless of interposing); moreover it removes a dependency of the checkasm test on lavfi/af_afir.o. Signed-off-by: Andreas Rheinhardt --- libavfilter/af_afir.c| 25 - libavfilter/af_afirdsp.h | 29 -

[FFmpeg-devel] [PATCH 01/10] avfilter/af_afir: Only keep DSP stuff in header

2022-05-02 Thread Andreas Rheinhardt
Only the AudioFIRDSPContext and the functions for its initialization are needed outside of lavfi/af_afir.c. Also rename the header to af_afirdsp.h to reflect the change. Signed-off-by: Andreas Rheinhardt --- libavfilter/af_afir.c | 71 +- libavfilter/af_afir.h

Re: [FFmpeg-devel] Need help submitting a patch

2022-05-02 Thread Soft Works
> -Original Message- > From: ffmpeg-devel On Behalf Of > Traian Coza > Sent: Tuesday, May 3, 2022 6:12 AM > To: ffmpeg-devel@ffmpeg.org > Subject: [FFmpeg-devel] Need help submitting a patch > > Hi! I am new to contributing to FFmpeg, and I have a technical > question. > > I'm trying

[FFmpeg-devel] Need help submitting a patch

2022-05-02 Thread Traian Coza
Hi! I am new to contributing to FFmpeg, and I have a technical question. I'm trying to submit a patch, but it's a fairly large patch, which I've made in multiple commits. I don't know how to generate the email for this patch. The example command given on the website (with format-patch) only genera

[FFmpeg-devel] [PATCH 2/2] tests/fate-run: Don't create unnecessary CRC-files, forward errors

2022-05-02 Thread Andreas Rheinhardt
These CRC-only files (the output of the CRC-muxer) are only used once, so they need not be preserved. Furthermore, errors from ffmpeg (used for creating the CRC) are no longer ignored with this patch. Signed-off-by: Andreas Rheinhardt --- tests/fate-run.sh | 6 ++ 1 file changed, 2 insertion

[FFmpeg-devel] [PATCH 1/2] fate/lavf-audio: Disable CRC for lavf-peak_only.wav test

2022-05-02 Thread Andreas Rheinhardt
The output of this test is just a file containing the positions of peaks; it is not a wave file and trying to demuxing it just returns AVERROR_INVALIDDATA; said error has just been ignored as the return value from do_avconv_crc is the return value from echo. Signed-off-by: Andreas Rheinhardt ---

Re: [FFmpeg-devel] [PATCH] hwcontext: Skip derivation checking for an existing device if options are set

2022-05-02 Thread Soft Works
> -Original Message- > From: ffmpeg-devel On Behalf Of Mark > Thompson > Sent: Tuesday, May 3, 2022 2:09 AM > To: FFmpeg development discussions and patches de...@ffmpeg.org> > Subject: [FFmpeg-devel] [PATCH] hwcontext: Skip derivation checking > for an existing device if options are s

Re: [FFmpeg-devel] [PATCH 1/3] avutils/hwcontext: add derive-device function which searches for existing devices in both directions

2022-05-02 Thread Soft Works
> -Original Message- > From: ffmpeg-devel On Behalf Of Mark > Thompson > Sent: Tuesday, May 3, 2022 1:57 AM > To: ffmpeg-devel@ffmpeg.org > Subject: Re: [FFmpeg-devel] [PATCH 1/3] avutils/hwcontext: add derive- > device function which searches for existing devices in both directions >

[FFmpeg-devel] [PATCH] hwcontext: Skip derivation checking for an existing device if options are set

2022-05-02 Thread Mark Thompson
If options are set then the user definitely intends to create a new device, so we shouldn't attempt to return an existing one. --- libavutil/hwcontext.c | 26 -- 1 file changed, 16 insertions(+), 10 deletions(-) diff --git a/libavutil/hwcontext.c b/libavutil/hwcontext.c i

Re: [FFmpeg-devel] [PATCH 1/3] avutils/hwcontext: add derive-device function which searches for existing devices in both directions

2022-05-02 Thread Mark Thompson
On 02/05/2022 23:59, Soft Works wrote: -Original Message- From: ffmpeg-devel On Behalf Of Mark Thompson Sent: Tuesday, May 3, 2022 12:12 AM To: ffmpeg-devel@ffmpeg.org Subject: Re: [FFmpeg-devel] [PATCH 1/3] avutils/hwcontext: add derive- device function which searches for existing devic

Re: [FFmpeg-devel] [PATCH 1/3] avutils/hwcontext: add derive-device function which searches for existing devices in both directions

2022-05-02 Thread Soft Works
> -Original Message- > From: ffmpeg-devel On Behalf Of Mark > Thompson > Sent: Tuesday, May 3, 2022 12:12 AM > To: ffmpeg-devel@ffmpeg.org > Subject: Re: [FFmpeg-devel] [PATCH 1/3] avutils/hwcontext: add derive- > device function which searches for existing devices in both directions >

Re: [FFmpeg-devel] PATCH - libmad MP3 decoding support

2022-05-02 Thread David Fletcher
On 2/5/2022, "Martin Storsjö" martin at martin.st wrote: > That sounds like there's an issue with some of the ARM implementations of > DSP functions, that only exists in implementations for less featureful ARM > instruction sets. > > (It could theoretically be a compiler bug also but I think it

Re: [FFmpeg-devel] [PATCH 1/3] avutils/hwcontext: add derive-device function which searches for existing devices in both directions

2022-05-02 Thread Mark Thompson
On 02/05/2022 09:14, Soft Works wrote: -Original Message- From: ffmpeg-devel On Behalf Of Mark Thompson Sent: Monday, May 2, 2022 12:01 AM To: ffmpeg-devel@ffmpeg.org Subject: Re: [FFmpeg-devel] [PATCH 1/3] avutils/hwcontext: add derive- device function which searches for existing device

Re: [FFmpeg-devel] [PATCH] avformat/mov: Only read the primary item for AVIF

2022-05-02 Thread Vignesh Venkatasubramanian
On Sun, Apr 24, 2022 at 11:35 AM Vignesh Venkatasubramanian wrote: > > Update the still AVIF parser to only read the primary item. With this > patch, AVIF still images with exif/icc/alpha channel will no longer > fail to parse. > > For example, this patch enables parsing of files in: > https://git

[FFmpeg-devel] [PATCH 1/3] avcodec/libaomenc: Add parameter for avif single image encoding

2022-05-02 Thread Vignesh Venkatasubramanian
Add a parameter to libaom-av1 encoder to enforce some of the single image constraints in the AV1 encoder. Setting this flag will limit the encoder to producing exactly one frame and the sequence header that is produced by the encoder will be conformant to the AVIF specification [1]. Part of Fixing

[FFmpeg-devel] [PATCH 2/3] avformat/av1: Add a parameter to av1c to omit seq header

2022-05-02 Thread Vignesh Venkatasubramanian
Add a parameter to omit seq header when generating the av1C atom. For now, this does not change any behavior. This will be used by a follow-up patch to add AVIF support. Signed-off-by: Vignesh Venkatasubramanian --- libavformat/av1.c | 7 +-- libavformat/av1.h | 4 +++- liba

[FFmpeg-devel] [PATCH 3/3] avformat/movenc: Add support for AVIF muxing

2022-05-02 Thread Vignesh Venkatasubramanian
Add an AVIF muxer by re-using the existing the mov/mp4 muxer. AVIF Specification: https://aomediacodec.github.io/av1-avif Sample usage for still image: ffmpeg -i image.png -c:v libaom-av1 -avif-image 1 image.avif Sample usage for animated AVIF image: ffmpeg -i video.mp4 animated.avif We can re-

Re: [FFmpeg-devel] [PATCH 3/3] avformat/movenc: Add support for AVIF muxing

2022-05-02 Thread Vignesh Venkatasubramanian
On Mon, May 2, 2022 at 10:28 AM James Zern wrote: > > On Wed, Apr 13, 2022 at 1:40 PM Vignesh Venkatasubramanian > wrote: > > > > Add an AVIF muxer by re-using the existing the mov/mp4 muxer. > > > > AVIF Specification: https://aomediacodec.github.io/av1-avif > > > > Sample usage for still image:

Re: [FFmpeg-devel] PATCH - libmad MP3 decoding support

2022-05-02 Thread Martin Storsjö
On Mon, 2 May 2022, David Fletcher wrote: On 2/5/2022, "Nicolas George" wrote: Is there a trac ticket? If not, please fill one: we would not want to keep that bug. Regards, -- Nicolas George Hi Nicolas, I'll prepare a test case to demonstrate the issue and fill in a ticket. As far as I c

Re: [FFmpeg-devel] PATCH - libmad MP3 decoding support

2022-05-02 Thread Neal Gompa
On Mon, May 2, 2022 at 1:42 PM David Fletcher wrote: > > On 2/5/2022, "Paul B Mahol" wrote: > >Only patches for master are accepted. > > > >No more wrappers. > > > >Thanks. > > Hi Paul, > > Please find attached the libmad MP3 decoding patch against the master > (ffmpeg-master-b67572c). > > I'm no

Re: [FFmpeg-devel] PATCH - libmad MP3 decoding support

2022-05-02 Thread Timo Rothenpieler
On 02.05.2022 19:45, David Fletcher wrote: On 2/5/2022, "Nicolas George" wrote: Is there a trac ticket? If not, please fill one: we would not want to keep that bug. Regards, -- Nicolas George Hi Nicolas, I'll prepare a test case to demonstrate the issue and fill in a ticket. As far as I

Re: [FFmpeg-devel] PATCH - wolfSSL TLS support

2022-05-02 Thread David Fletcher
On 2/5/2022, "Timo Rothenpieler" wrote: >Only patches against master can be accepted. >New stuff like this does not get backported either. Only fixes for >existing features. Hi Timo, Thanks for the comments. Please find attached an updated patch against the master (ffmpeg-master-b67572c). Best

[FFmpeg-devel] [PATCH] avfilter/vf_overlay: Fix the calculation of average alpha with alpha composition and threads > 1

2022-05-02 Thread Linjie Fu
The calculation of average alpha utilizes the value of next line(alpha[x+linesize]): alpha[0]alpha[1] alpha[0+linesize] alpha[1+linesize] However, alpha[x+linesize] could be either an alpha_composited value or an original value if it locates at next slice, which may lead to

Re: [FFmpeg-devel] PATCH - libmad MP3 decoding support

2022-05-02 Thread David Fletcher
On 2/5/2022, "Nicolas George" wrote: >Is there a trac ticket? If not, please fill one: we would not want to >keep that bug. > >Regards, > >-- > Nicolas George Hi Nicolas, I'll prepare a test case to demonstrate the issue and fill in a ticket. As far as I can tell this is an issue affecting old

Re: [FFmpeg-devel] PATCH - libmad MP3 decoding support

2022-05-02 Thread David Fletcher
On 2/5/2022, "Paul B Mahol" wrote: >Only patches for master are accepted. > >No more wrappers. > >Thanks. Hi Paul, Please find attached the libmad MP3 decoding patch against the master (ffmpeg-master-b67572c). I'm not sure what "No more wrappers" means? Best regards, David. diff -Nur ./ffmpeg-

Re: [FFmpeg-devel] [PATCH 3/3] avformat/movenc: Add support for AVIF muxing

2022-05-02 Thread James Zern
On Wed, Apr 13, 2022 at 1:40 PM Vignesh Venkatasubramanian wrote: > > Add an AVIF muxer by re-using the existing the mov/mp4 muxer. > > AVIF Specification: https://aomediacodec.github.io/av1-avif > > Sample usage for still image: > ffmpeg -i image.png -c:v libaom-av1 -avif-image 1 image.avif > > S

Re: [FFmpeg-devel] [PATCH] avformat/oggparsevorbis: Ignore duration of the first packet

2022-05-02 Thread Guangyu Sun
On Wed, Apr 20, 2022 at 8:22 PM Guangyu Sun wrote: > The decoded Data is not returned from the first frame; it must be used > to 'prime' the decode engine. The duration of the first packet should > be ignored also by the container, to make sure the total duration is > trimmed correctly. > > This

Re: [FFmpeg-devel] [PATCH] libavcodec/videotoolboxenc.c: add option to hevc encoder to prioritize speed.

2022-05-02 Thread Rick Kern
On Sun, May 1, 2022 at 12:12 PM Simone Karin Lehmann wrote: > Hi, > > … I’m so sorry, the patch I recently sent didn’t test the prio_speed bool. > This corrects it. > > I really sorry. :-/ > > Regards > Simone > Pushed, with some commit message changes. The first line of the commit message should

[FFmpeg-devel] [PATCH] avcodec/sbrdsp_fixed: Fix integer overflows in sbr_qmf_deint_neg_c()

2022-05-02 Thread Michael Niedermayer
Fixes: signed integer overflow: 2147483645 + 16 cannot be represented in type 'int' Fixes: 46993/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_AAC_FIXED_fuzzer-4759025234870272 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by:

Re: [FFmpeg-devel] movenc: add write_btrt option

2022-05-02 Thread zhilizhao(赵志立)
> On Apr 7, 2022, at 4:42 PM, Eran Kornblau wrote: > >> >> >> -Original Message- >> From: ffmpeg-devel On Behalf Of >> "zhilizhao(???)" >> Sent: Wednesday, 6 April 2022 11:46 >> To: FFmpeg development discussions and patches >> Subject: Re: [FFmpeg-devel] movenc: add write_btrt op

Re: [FFmpeg-devel] PATCH - wolfSSL TLS support

2022-05-02 Thread Timo Rothenpieler
On 02.05.2022 01:04, David Fletcher wrote: Please find attached a patch adding support for wolfSSL as a TLS backend. This is against release ffmpeg-5.0.1, and is working well with wolfSSL 5.1.1 (January 2022 release). Only patches against master can be accepted. New stuff like this does not get

Re: [FFmpeg-devel] [PATCH v7 4/4] doc/examples/transcode_aac: Bump date

2022-05-02 Thread Gyan Doshi
On 2022-05-02 03:13 pm, Andreas Unterweger wrote: On Mon, 2 May 2022 at 11:38, Gyan Doshi wrote: Removed whitespace errors in first two patches and pushed the set as e13429c9c4...40f2ea971f Thank you. Any hints on how I can avoid these types of errors in the future? You had stray tabs on

Re: [FFmpeg-devel] PATCH - libmad MP3 decoding support

2022-05-02 Thread Nicolas George
David Fletcher (12022-05-01): > I hope that this is useful. Some context - I found the FFmpeg inbuild > fixed point MP3 decoder produced very distorted audio for low bitrate > streams (56k/s and lower). Is there a trac ticket? If not, please fill one: we would not want to keep that bug. Regards,

Re: [FFmpeg-devel] [PATCH v7 4/4] doc/examples/transcode_aac: Bump date

2022-05-02 Thread Andreas Unterweger
On Mon, 2 May 2022 at 11:38, Gyan Doshi wrote: > Removed whitespace errors in first two patches and pushed the set as > > e13429c9c4...40f2ea971f Thank you. Any hints on how I can avoid these types of errors in the future? Best, Andreas ___ ffmpeg-deve

Re: [FFmpeg-devel] movenc: add write_btrt option

2022-05-02 Thread Gyan Doshi
On 2022-05-02 03:03 pm, Eran Kornblau wrote: Pinging again... can someone please apply this one? It's a trivial change... Don't see your patch on Patchwork. Regards, Gyan Thanks! Eran -Original Message- From: Eran Kornblau Sent: Monday, 25 April 2022 14:26 To: FFmpeg developmen

Re: [FFmpeg-devel] [PATCH v7 4/4] doc/examples/transcode_aac: Bump date

2022-05-02 Thread Gyan Doshi
On 2022-05-02 02:23 pm, Andreas Unterweger wrote: On Mon, 2 May 2022 at 10:39, Gyan Doshi wrote: The error is error: patch fragment without header at line 6: @@ -675,18 +677,17 @@ static int encode_audio_frame(AVFrame *frame, The patch on PW only shows the first two hunks. Ideally, send

Re: [FFmpeg-devel] [PATCH v7 4/4] doc/examples/transcode_aac: Bump date

2022-05-02 Thread Andreas Unterweger
On Mon, 2 May 2022 at 10:39, Gyan Doshi wrote: > The error is > > error: patch fragment without header at line 6: @@ -675,18 +677,17 @@ static > int encode_audio_frame(AVFrame *frame, > > > The patch on PW only shows the first two hunks. > > Ideally, send your path using git send-email, or upload

Re: [FFmpeg-devel] [PATCH v7 4/4] doc/examples/transcode_aac: Bump date

2022-05-02 Thread Gyan Doshi
On 2022-05-02 01:49 pm, Andreas Unterweger wrote: On Mon, 2 May 2022 at 09:31, Andreas Unterweger wrote: Signed-off-by: Andreas Unterweger --- doc/examples/transcode_aac.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/examples/transcode_aac.c b/doc/examples/trans

Re: [FFmpeg-devel] [PATCH 1/3] avutils/hwcontext: add derive-device function which searches for existing devices in both directions

2022-05-02 Thread Soft Works
> -Original Message- > From: ffmpeg-devel On Behalf Of Mark > Thompson > Sent: Monday, May 2, 2022 12:01 AM > To: ffmpeg-devel@ffmpeg.org > Subject: Re: [FFmpeg-devel] [PATCH 1/3] avutils/hwcontext: add derive- > device function which searches for existing devices in both directions [.

Re: [FFmpeg-devel] [PATCH] avfilter/alimiter: Add an option "comp_delay" that removes the delay introduced by lookahead buffer

2022-05-02 Thread Paul B Mahol
On Fri, Apr 29, 2022 at 10:49 PM Wang Cao wrote: > On Fri, Apr 15, 2022 at 11:50 AM Wang Cao wrote: > > > 1. The option also flushes all the valid audio samples in the lookahead > >buffer so the audio integrity is preserved. Previously the the output > >audio will lose the amount of audi

Re: [FFmpeg-devel] [PATCH v7 4/4] doc/examples/transcode_aac: Bump date

2022-05-02 Thread Andreas Unterweger
On Mon, 2 May 2022 at 09:31, Andreas Unterweger wrote: > > Signed-off-by: Andreas Unterweger > --- > doc/examples/transcode_aac.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/doc/examples/transcode_aac.c b/doc/examples/transcode_aac.c > index 909aa1cb73..1b372782ab 10

Re: [FFmpeg-devel] [PATCH 1/3] avutils/hwcontext: add derive-device function which searches for existing devices in both directions

2022-05-02 Thread Soft Works
> -Original Message- > From: ffmpeg-devel On Behalf Of Mark > Thompson > Sent: Monday, May 2, 2022 12:01 AM > To: ffmpeg-devel@ffmpeg.org > Subject: Re: [FFmpeg-devel] [PATCH 1/3] avutils/hwcontext: add derive- > device function which searches for existing devices in both directions [..

[FFmpeg-devel] [PATCH v7 4/4] doc/examples/transcode_aac: Bump date

2022-05-02 Thread Andreas Unterweger
Signed-off-by: Andreas Unterweger --- doc/examples/transcode_aac.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/examples/transcode_aac.c b/doc/examples/transcode_aac.c index 909aa1cb73..1b372782ab 100644 --- a/doc/examples/transcode_aac.c +++ b/doc/examples/transcode_aa

[FFmpeg-devel] [PATCH v7 3/4] doc/examples/transcode_aac: AAC encoder is no longer experimental

2022-05-02 Thread Andreas Unterweger
Signed-off-by: Andreas Unterweger --- doc/examples/transcode_aac.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/doc/examples/transcode_aac.c b/doc/examples/transcode_aac.c index 52548f080d..909aa1cb73 100644 --- a/doc/examples/transcode_aac.c +++ b/doc/examples/transcode_aac.c @@ -211,9

[FFmpeg-devel] [PATCH v7 2/4] doc/examples/transcode_aac: Set decoder packet timebase

2022-05-02 Thread Andreas Unterweger
Previously, the default timebase caused two warnings during decoding about not being able to update timestamps for skipped and discarded samples, respectively. Signed-off-by: Andreas Unterweger --- doc/examples/transcode_aac.c | 10 -- 1 file changed, 8 insertions(+), 2 deletions(-) dif

[FFmpeg-devel] [PATCH v7 1/4] doc/examples/transcode_aac: Don't ignore last encoded frame

2022-05-02 Thread Andreas Unterweger
The last encoded frame is now fetched on EOF. It was previously left in the encoder and caused a "1 frame left in queue" warning. Signed-off-by: Andreas Unterweger --- doc/examples/transcode_aac.c | 22 +++--- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/doc/ex

Re: [FFmpeg-devel] PATCH - libmad MP3 decoding support

2022-05-02 Thread Paul B Mahol
Only patches for master are accepted. No more wrappers. Thanks. ___ 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 subje