Re: [FFmpeg-devel] [PATCH 2/2] avcodec/mjpegdec: add support for frame threading

2023-09-07 Thread Paul B Mahol
On Thu, Sep 7, 2023 at 7:17 PM Paul B Mahol wrote: > > > On Tue, Dec 6, 2022 at 12:02 AM Timo Rothenpieler > wrote: > >> On 05.12.2022 15:15, Andreas Rheinhardt wrote: >> > Timo Rothenpieler: >> >> In my tests, this lead to a notable speed incr

Re: [FFmpeg-devel] [PATCH 2/2] avcodec/mjpegdec: add support for frame threading

2023-09-07 Thread Paul B Mahol
On Tue, Dec 6, 2022 at 12:02 AM Timo Rothenpieler wrote: > On 05.12.2022 15:15, Andreas Rheinhardt wrote: > > Timo Rothenpieler: > >> In my tests, this lead to a notable speed increase with the amount > >> of threads used. Decoding a 720p sample gave the following results: > >> > >> 1 Thread:

[FFmpeg-devel] [PATCH] avcodec/mjpegdec: add frame threading for mjpeg decoder

2023-09-07 Thread Paul B Mahol
Attached. From 2cff86b07b56d2923f60923e7dd21a546c2cc6fa Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Thu, 7 Sep 2023 18:42:03 +0200 Subject: [PATCH] avcodec/mjpegdec: add frame threading for mjpeg decoder Signed-off-by: Paul B Mahol --- libavcodec/mjpegdec.c | 8 1 file changed

Re: [FFmpeg-devel] [PATCH 28/31] avfilter/vsrc_testsrc: Don't use const uint8_t* when pointee changes

2023-09-07 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 27/31] avfilter/vf_vif: Don't cast const away unnecessarily

2023-09-07 Thread Paul B Mahol
OK ___ 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 31/31] avfilter/blend_modes: Always preserve constness

2023-09-07 Thread Paul B Mahol
OK ___ 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 30/31] avfilter/vf_varblur: Don't use pointer-to-const for destination

2023-09-07 Thread Paul B Mahol
OK ___ 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] avformat/flacdec: set time base for headerless flac

2023-09-07 Thread Paul B Mahol
will apply ___ 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] fate: add rpza encoder tests

2023-09-07 Thread Paul B Mahol
Attached. Now without floats. On Thu, Sep 7, 2023 at 10:10 AM Paul B Mahol wrote: > Attached. > From 5e9d20d393659c1c94ac328237699c3aa65f3ac9 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Thu, 7 Sep 2023 10:08:30 +0200 Subject: [PATCH 2/2] fate: add rpza encoder tests Signed-off-by

[FFmpeg-devel] [PATCH] fate: add rpza encoder tests

2023-09-07 Thread Paul B Mahol
Attached. From 1030770b92f74738dec515e8a2a6d660f7031c27 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Thu, 7 Sep 2023 10:08:30 +0200 Subject: [PATCH] fate: add rpza encoder tests Signed-off-by: Paul B Mahol --- tests/fate/vcodec.mak | 4 tests/ref/vsynth/vsynth1-rpza | 4

Re: [FFmpeg-devel] [PATCH v2 20/22] avcodec/v210dec: Don't cast const away

2023-09-07 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] avformat: add CRI USM demuxer

2023-09-06 Thread Paul B Mahol
On Wed, Sep 6, 2023 at 1:30 PM Andreas Rheinhardt < andreas.rheinha...@outlook.com> wrote: > Paul B Mahol: > > On Wed, Sep 6, 2023 at 11:26 AM Andreas Rheinhardt < > > andreas.rheinha...@outlook.com> wrote: > > > >> Paul B Mahol: > >>> > &

Re: [FFmpeg-devel] [PATCH] avformat: add CRI USM demuxer

2023-09-06 Thread Paul B Mahol
On Wed, Sep 6, 2023 at 11:26 AM Andreas Rheinhardt < andreas.rheinha...@outlook.com> wrote: > Paul B Mahol: > > > > +chunk_type = avio_rb32(pb); > > +chunk_size = avio_rb32(pb); > > You are not checking whether the chunk here exceeds its containing chu

Re: [FFmpeg-devel] [PATCH] avformat/flacdec: set time base for headerless flac

2023-09-06 Thread Paul B Mahol
On Wed, Sep 6, 2023 at 8:12 AM Tomas Härdin wrote: > ons 2023-09-06 klockan 02:10 +0200 skrev Paul B Mahol: > > +static const uint16_t sr_table[16] = { > > +0, 1764, 3528, 3840, 160, 320, 441, 480, 640, 882, 960, 1920, 0, > > 0, 0, 0 > > +}; > > Why not pr

Re: [FFmpeg-devel] [PATCH 11/11] doc/examples/transcode: fix selection of sample format if not set in encoder

2023-09-05 Thread Paul B Mahol
On Wed, Sep 6, 2023 at 1:49 AM Stefano Sabatini wrote: > On date Sunday 2023-09-03 09:41:49 +0200, Paul B Mahol wrote: > > Decoder formats may not relate to encoder formats, thus this one looks > too > > hackish to me to accept. > > Agreed but this is unrelated to th

[FFmpeg-devel] [PATCH] avcodec/yuv4enc: do not read past end of input in case of odd height

2023-09-05 Thread Paul B Mahol
Attached. From 8295be1415649255b26cfdb0308d7be208711b4d Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Wed, 6 Sep 2023 02:27:56 +0200 Subject: [PATCH] avcodec/yuv4enc: do not read past end of input in case of odd height Signed-off-by: Paul B Mahol --- libavcodec/yuv4enc.c | 13

[FFmpeg-devel] [PATCH] avformat/flacdec: set time base for headerless flac

2023-09-05 Thread Paul B Mahol
Attached. From dea5517ee383b4133a11137b99b27ba389e04a47 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Wed, 6 Sep 2023 02:04:10 +0200 Subject: [PATCH] avformat/flacdec: set time base for headerless flac Fixes #6396. Signed-off-by: Paul B Mahol --- libavformat/flacdec.c | 11 ++- 1

[FFmpeg-devel] [PATCH] fate: add OSQ test

2023-09-05 Thread Paul B Mahol
Attached. From c307a7598689fc39ad993c73428b44e0c4d0356e Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Tue, 5 Sep 2023 23:41:22 +0200 Subject: [PATCH] fate: add OSQ test Signed-off-by: Paul B Mahol --- tests/fate/lossless-audio.mak | 3 +++ tests/ref/fate/lossless-osq | 1 + 2 files

[FFmpeg-devel] [PATCH] avformat: add CRI USM demuxer

2023-09-05 Thread Paul B Mahol
Attached. From fc0f592a04ffa99b94b1402905d0bcfb2b15270c Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Tue, 5 Sep 2023 16:53:32 +0200 Subject: [PATCH] avformat: add CRI USM demuxer Signed-off-by: Paul B Mahol --- libavformat/Makefile | 1 + libavformat/allformats.c | 1

[FFmpeg-devel] [PATCH] avcodec/adxdec: support for 6 channels

2023-09-05 Thread Paul B Mahol
Attached. From b4d48134a026aaafddf753a1470f03e56b233f57 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Tue, 5 Sep 2023 14:46:39 +0200 Subject: [PATCH] avcodec/adxdec: add support for 6 channels Signed-off-by: Paul B Mahol --- libavcodec/adx.h| 4 +++- libavcodec/adxdec.c | 2 +- 2 files

Re: [FFmpeg-devel] [PATCH] fate: add rka test

2023-09-04 Thread Paul B Mahol
Will apply soon. ___ 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] MULTI VLC decoding boost

2023-09-04 Thread Paul B Mahol
Will apply soon. ___ 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 5/7] avutil: Move error.h from avutil.h to common.h

2023-09-03 Thread Paul B Mahol
Probably OK ___ 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 9/9] avcodec/vp8data: Use <> for inclusion of stdint.h

2023-09-03 Thread Paul B Mahol
OK ___ 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 6/7] avutil/mem: Don't include avutil.h

2023-09-03 Thread Paul B Mahol
probably ok ___ 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 5/6] doc/examples/transcode: use av_buffersrc_add_frame()

2023-09-03 Thread Paul B Mahol
See no real gain in this. ___ 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 11/11] doc/examples/transcode: fix selection of sample format if not set in encoder

2023-09-03 Thread Paul B Mahol
Decoder formats may not relate to encoder formats, thus this one looks too hackish to me to accept. ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email

Re: [FFmpeg-devel] [PATCH 4/6] doc/examples/transcode: improve reporting when the encoder is not found

2023-09-03 Thread Paul B Mahol
On Sat, Sep 2, 2023 at 1:15 AM Stefano Sabatini wrote: > Also return EINVAL in place of INVALIDDATA. > Better return also name, id number is meaningless to user. > --- > doc/examples/transcode.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git

Re: [FFmpeg-devel] [PATCH 06/11] doc/examples/transcode: use av_buffersrc_add_frame()

2023-09-03 Thread Paul B Mahol
This simplify nothing at all. ___ 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 08/11] doc/examples/transcode: use more meaningful labels for filtergraph sinks and sources

2023-09-03 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 01/11] lavc/avcodec.h: fix typos in AVCodecContext.pkt_timebase description

2023-09-03 Thread Paul B Mahol
OK ___ 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".

[FFmpeg-devel] [PATCH] fate: add rka test

2023-09-01 Thread Paul B Mahol
Patch attached. From 74bd7f508208a3631f25874167355929d859a93b Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Fri, 1 Sep 2023 19:38:10 +0200 Subject: [PATCH] fate: add rka test Signed-off-by: Paul B Mahol --- tests/fate/lossless-audio.mak | 3 +++ tests/ref/fate/lossless-rka | 1 + 2 files

Re: [FFmpeg-devel] [PATCH 4/6] doc/developer: add a code behaviour section to development policy

2023-09-01 Thread Paul B Mahol
On Fri, Sep 1, 2023 at 7:16 PM Rémi Denis-Courmont wrote: > Le torstaina 31. elokuuta 2023, 18.28.48 EEST Stefano Sabatini a écrit : > > On date Tuesday 2023-08-29 10:34:45 +0200, Anton Khirnov wrote: > > > Quoting Stefano Sabatini (2023-08-27 14:38:44) > > > > > > > Il sab 26 ago 2023, 20:08

Re: [FFmpeg-devel] [PATCH] OSQ lossless audio format support

2023-08-31 Thread Paul B Mahol
Gonna push soon. ___ 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] OSQ lossless audio format support

2023-08-29 Thread Paul B Mahol
Now with always bitexact output and other improvements and fixes. From 208265707d57dbc14fec886629307c239f01090b Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Tue, 27 Jun 2023 19:51:54 +0200 Subject: [PATCH 2/2] avformat: add OSQ demuxer Signed-off-by: Paul B Mahol --- libavformat/Makefile

Re: [FFmpeg-devel] [PATCH] avfilter: add libvmaf_cuda

2023-08-28 Thread Paul B Mahol
On Mon, Aug 28, 2023 at 8:54 PM Kyle Swanson wrote: > Hi, > > Added filter docs, new patch attached. Unless there are any other > reviews I will plan on pushing this in a few days. > Only after at least two main devs reviews and agree to merge. New policy. > Thanks, > Kyle >

[FFmpeg-devel] [PATCH] MULTI VLC decoding boost

2023-08-28 Thread Paul B Mahol
Patches attached. Thanks for kurosu for pointing unmerged branches. The UNCACHED_PATH for x86_32 is broken with this for 2 codecs it touches. Fix is trivial, to be fixed later. From 2feb559ce6384c408a5d5008722b0a20262e976a Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Mon, 28 Aug 2023 12:20

Re: [FFmpeg-devel] [PATCH 2/2] avcodec/apedec: Implement interim mode detection

2023-08-26 Thread Paul B Mahol
On Sat, Aug 26, 2023 at 6:54 PM Michael Niedermayer wrote: > Fixes: NoLegacy.ape > Found-by: Matt Ashland > Signed-off-by: Michael Niedermayer > --- > libavcodec/apedec.c | 106 +++- > 1 file changed, 84 insertions(+), 22 deletions(-) > > diff --git

Re: [FFmpeg-devel] [PATCH] adpcm fixes and improvements

2023-08-26 Thread Paul B Mahol
Will apply soon. ___ 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] OSQ lossless audio format support

2023-08-25 Thread Paul B Mahol
On Fri, Aug 25, 2023 at 6:42 PM James Almer wrote: > On 8/25/2023 1:28 PM, Paul B Mahol wrote: > > On Fri, Aug 25, 2023 at 5:57 PM James Almer wrote: > > > >> On 8/24/2023 7:06 PM, Paul B Mahol wrote: > >>> On Thu, Aug 24, 2023 at 11:51 PM James Almer > w

Re: [FFmpeg-devel] [PATCH] OSQ lossless audio format support

2023-08-25 Thread Paul B Mahol
On Fri, Aug 25, 2023 at 5:57 PM James Almer wrote: > On 8/24/2023 7:06 PM, Paul B Mahol wrote: > > On Thu, Aug 24, 2023 at 11:51 PM James Almer wrote: > > > >> On 8/24/2023 6:11 PM, Paul B Mahol wrote: > >>> On Thu, Aug 24, 2023 at 11:00 PM James Almer >

Re: [FFmpeg-devel] [PATCH 2/2] doc/developer: Code pushed without patches on ffmpeg-devel must be announced on the ML

2023-08-25 Thread Paul B Mahol
On Fri, Aug 25, 2023 at 5:36 PM Jean-Baptiste Kempf wrote: > > > On Fri, 25 Aug 2023, at 17:34, Michael Niedermayer wrote: > > On Thu, Aug 24, 2023 at 10:04:16PM +0200, Andreas Rheinhardt wrote: > >> Michael Niedermayer: > >> > Signed-off-by: Michael Niedermayer > >> > --- > >> >

Re: [FFmpeg-devel] [PATCH 2/2] avcodec/apedec: Fix 48khz 24bit below insane level

2023-08-25 Thread Paul B Mahol
On Fri, Aug 25, 2023 at 5:13 PM Michael Niedermayer wrote: > Fixes: Ticket9816 > Fixes: vlc.ape and APE_48K_24bit_2CH_02_01.ape > > Regression since: ed0001482a74b60f3d5bc5cd7e304c9d65b2fcd5. > > Signed-off-by: Michael Niedermayer > --- > libavcodec/apedec.c | 15 +++ > 1 file

Re: [FFmpeg-devel] [PATCH 1/2] Revert "avcodec/apedec: fix decoding 24bit insane files with recent versions"

2023-08-25 Thread Paul B Mahol
On Fri, Aug 25, 2023 at 4:21 PM Michael Niedermayer wrote: > On Fri, Aug 25, 2023 at 11:08:55AM +0200, Paul B Mahol wrote: > > On Fri, Aug 25, 2023 at 2:01 AM Michael Niedermayer < > mich...@niedermayer.cc> > > wrote: > > > > > On Fri, Aug 25, 2023

Re: [FFmpeg-devel] [PATCH 1/2] doc/developer: Reviews must be constructive

2023-08-25 Thread Paul B Mahol
On Fri, Aug 25, 2023 at 8:46 AM Nicolas George wrote: > Vittorio Giovara (12023-08-25): > > NAK > > we shouldn't put extra burden on reviewers, nor guilt trap them into > > suggesting an alternative approach > > It is hilarious, in a very sad way, that you prefer put extra burden on > people who

Re: [FFmpeg-devel] [PATCH 1/2] Revert "avcodec/apedec: fix decoding 24bit insane files with recent versions"

2023-08-25 Thread Paul B Mahol
On Fri, Aug 25, 2023 at 2:01 AM Michael Niedermayer wrote: > On Fri, Aug 25, 2023 at 01:37:27AM +0200, Paul B Mahol wrote: > > NAK > > > > Breaks decoding of another sample. > > please provide the sample > > if noone provides a sample, i will disregard this obj

Re: [FFmpeg-devel] [PATCH 1/2] Revert "avcodec/apedec: fix decoding 24bit insane files with recent versions"

2023-08-24 Thread Paul B Mahol
NAK Breaks decoding of another sample. ___ 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] OSQ lossless audio format support

2023-08-24 Thread Paul B Mahol
On Thu, Aug 24, 2023 at 11:51 PM James Almer wrote: > On 8/24/2023 6:11 PM, Paul B Mahol wrote: > > On Thu, Aug 24, 2023 at 11:00 PM James Almer wrote: > > > >> On 8/24/2023 6:52 AM, Paul B Mahol wrote: > >>> +static int osq_receive_frame(A

Re: [FFmpeg-devel] [PATCH] OSQ lossless audio format support

2023-08-24 Thread Paul B Mahol
On Thu, Aug 24, 2023 at 11:00 PM James Almer wrote: > On 8/24/2023 6:52 AM, Paul B Mahol wrote: > > +static int osq_receive_frame(AVCodecContext *avctx, AVFrame *frame) > > +{ > > +OSQContext *s = avctx->priv_data; > > +GetBitContext *gb = >gb; > >

Re: [FFmpeg-devel] [PATCH] OSQ lossless audio format support

2023-08-24 Thread Paul B Mahol
On Thu, Aug 24, 2023 at 9:54 PM James Almer wrote: > On 8/24/2023 6:52 AM, Paul B Mahol wrote: > > Patches attached. > > > > Stereo decoding have some issues with some predictors so not yet > bitexact. > > > > Please comment. > > > +stati

Re: [FFmpeg-devel] [PATCH] adpcm fixes and improvements

2023-08-24 Thread Paul B Mahol
On Thu, Aug 24, 2023 at 7:39 PM Michael Niedermayer wrote: > On Thu, Aug 24, 2023 at 06:26:36PM +0200, Andreas Rheinhardt wrote: > > Michael Niedermayer: > > > On Thu, Aug 24, 2023 at 12:51:28AM +0200, Paul B Mahol wrote: > > >> On Thu, Aug 24, 2023 at 12:36 A

Re: [FFmpeg-devel] [PATCH] OSQ lossless audio format support

2023-08-24 Thread Paul B Mahol
On Thu, Aug 24, 2023 at 8:06 PM Michael Niedermayer wrote: > On Thu, Aug 24, 2023 at 11:52:45AM +0200, Paul B Mahol wrote: > > Patches attached. > > > > Stereo decoding have some issues with some predictors so not yet > bitexact. > > > > Please comment. >

[FFmpeg-devel] [PATCH] OSQ lossless audio format support

2023-08-24 Thread Paul B Mahol
Patches attached. Stereo decoding have some issues with some predictors so not yet bitexact. Please comment. From a90b4fbd4178d4ef434e1255ed20dddebde0ddb8 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Tue, 27 Jun 2023 19:51:54 +0200 Subject: [PATCH 2/2] avformat: add OSQ demuxer Signed-off

Re: [FFmpeg-devel] [PATCH] adpcm fixes and improvements

2023-08-23 Thread Paul B Mahol
On Thu, Aug 24, 2023 at 12:36 AM Michael Niedermayer wrote: > On Wed, Aug 23, 2023 at 09:04:35PM +0200, Paul B Mahol wrote: > > On Wed, Aug 23, 2023 at 9:02 PM Michael Niedermayer < > mich...@niedermayer.cc> > > wrote: > > > > > On Wed, Aug 16, 2023

Re: [FFmpeg-devel] [PATCH] adpcm fixes and improvements

2023-08-23 Thread Paul B Mahol
On Wed, Aug 23, 2023 at 9:02 PM Michael Niedermayer wrote: > On Wed, Aug 16, 2023 at 06:53:42PM +0200, Paul B Mahol wrote: > > On Wed, Aug 16, 2023 at 6:38 PM Michael Niedermayer < > mich...@niedermayer.cc> > > wrote: > > > > > On Tue, Aug 15, 2023

Re: [FFmpeg-devel] [PATCH] adpcm fixes and improvements

2023-08-23 Thread Paul B Mahol
Will apply ASAP! ___ 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] avformat/avcodec: Add DTS-UHD demuxer and parser, movenc support.

2023-08-17 Thread Paul B Mahol
Is decoder part still missing or? ___ 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] adpcm fixes and improvements

2023-08-16 Thread Paul B Mahol
On Wed, Aug 16, 2023 at 6:38 PM Michael Niedermayer wrote: > On Tue, Aug 15, 2023 at 04:49:05PM +0200, Paul B Mahol wrote: > > Attached > > [...] > > adpcm.c |2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > 3305dbe07ca935958fa213f5cadc339a

Re: [FFmpeg-devel] [PATCH] avutil/channel_layout: make pre-defined channel layouts C++ friendly

2023-08-16 Thread Paul B Mahol
On Wed, Aug 16, 2023 at 6:21 PM James Almer wrote: > On 8/16/2023 12:44 PM, Zhao Zhili wrote: > > From: Zhao Zhili > > > > C++ doesn't support designated initializers until C++20. We have > > a bunch of pre-defined channel layouts, the gains to make them > > usable in C++ exceed the losses. > >

Re: [FFmpeg-devel] [PATCH] avutil/channel_layout: make pre-defined channel layouts C++ friendly

2023-08-16 Thread Paul B Mahol
NAK, as full codebase have usages of designated initializers. ___ 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

Re: [FFmpeg-devel] [PATCH] avcodec/exr: tag gamma=1.0 output as linear light

2023-08-16 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".

[FFmpeg-devel] [PATCH] tta decoder improvements

2023-08-16 Thread Paul B Mahol
Patch attached. From 2b6ac4f7093157533b7f279a78a73bfabeb98cf0 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Tue, 15 Aug 2023 21:13:59 +0200 Subject: [PATCH] avcodec/tta: switch to planar sample formats Makes decoding few percent faster. Also fix code style while here. Signed-off-by: Paul B

[FFmpeg-devel] [PATCH] adpcm fixes and improvements

2023-08-15 Thread Paul B Mahol
Attached From aab0cfb7e37992b1c1ef34740d199cc2bdc4ce40 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Tue, 15 Aug 2023 12:18:02 +0200 Subject: [PATCH 1/4] avcodec/adpcm: refactor ADPCM_MS decoder Signed-off-by: Paul B Mahol --- libavcodec/adpcm.c | 63

Re: [FFmpeg-devel] [PATCH] avfilter/vf_ssim: Fix x86 assembly code for SSIM calculation

2023-08-14 Thread Paul B Mahol
LGTM will apply soon. ___ 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 1/2] avradio/sdr: add Airband frequencies

2023-08-14 Thread Paul B Mahol
On Mon, Aug 14, 2023 at 3:43 PM Michael Niedermayer wrote: > On Sat, Jul 29, 2023 at 11:46:56AM +1000, Peter Ross wrote: > > --- > > libavradio/sdrdemux.c | 1 + > > 1 file changed, 1 insertion(+) > > > > diff --git a/libavradio/sdrdemux.c b/libavradio/sdrdemux.c > > index

Re: [FFmpeg-devel] [PATCH] apsnr and asisdr filter

2023-08-13 Thread Paul B Mahol
Will apply soon. ___ 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 v2] wmavoice: convert DCT-I/DST-I to lavu/tx

2023-08-13 Thread Paul B Mahol
LGTM to whole set ___ 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".

[FFmpeg-devel] [PATCH] apsnr and asisdr filter

2023-08-12 Thread Paul B Mahol
Attached. From ad9def7fad58a75450176413564543a16965d165 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Sun, 13 Aug 2023 05:03:00 +0200 Subject: [PATCH 3/3] avfilter/af_asdr: use single structure for sums Signed-off-by: Paul B Mahol --- libavfilter/af_asdr.c | 44

Re: [FFmpeg-devel] [PATCH] exclude currently unused 0.17% of fate samples from rsync

2023-08-12 Thread Paul B Mahol
On Sat, Aug 12, 2023 at 5:09 PM James Almer wrote: > On 8/12/2023 12:07 PM, Paul B Mahol wrote: > > On Sat, Aug 12, 2023 at 4:19 PM Michael Niedermayer < > mich...@niedermayer.cc> > > wrote: > > > >> On Fri, Aug 11, 2023 at 06:17:29PM +0200, Vittorio Gi

Re: [FFmpeg-devel] [PATCH] exclude currently unused 0.17% of fate samples from rsync

2023-08-12 Thread Paul B Mahol
On Sat, Aug 12, 2023 at 4:19 PM Michael Niedermayer wrote: > On Fri, Aug 11, 2023 at 06:17:29PM +0200, Vittorio Giovara wrote: > > On Thu, Aug 10, 2023 at 5:27 PM Michael Niedermayer < > mich...@niedermayer.cc> > > wrote: > > > > > Several developers where upset, that from the over 1gb of fate

Re: [FFmpeg-devel] [PATCH 8/9] avformat/matroskadec: Use named constants instead of their value

2023-08-11 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 01/12] avradio/avformat/sdrdemux: Move agc_gain into local variable

2023-08-10 Thread Paul B Mahol
On Thu, Aug 10, 2023 at 11:03 PM Michael Niedermayer wrote: > Hi Paul > > also CC-ing jb as he seemed interrested in teh subject > > On Mon, Jul 31, 2023 at 12:26:50AM +0200, Paul B Mahol wrote: > > NAK to whole set. > > I suggest you lift that NAK. > NAK is her

Re: [FFmpeg-devel] [PATCH] new audio filter and misc improvements

2023-08-10 Thread Paul B Mahol
On Thu, Aug 10, 2023 at 5:13 PM Michael Niedermayer wrote: > On Thu, Aug 10, 2023 at 12:10:49PM +0200, Paul B Mahol wrote: > > On Thu, Aug 10, 2023 at 11:48 AM Michael Niedermayer < > mich...@niedermayer.cc> > > wrote: > > > > > On Wed, Aug 09, 2023

Re: [FFmpeg-devel] [PATCH v2] avcodec/mv30: Check the input length before allocation

2023-08-10 Thread Paul B Mahol
On Thu, Aug 10, 2023 at 5:46 PM Michael Niedermayer wrote: > On Thu, Aug 10, 2023 at 12:12:51PM +0200, Paul B Mahol wrote: > > On Thu, Aug 10, 2023 at 11:34 AM Michael Niedermayer < > mich...@niedermayer.cc> > > wrote: > > > > > On Wed, Aug 09, 2023

Re: [FFmpeg-devel] [PATCH v2] avcodec/mv30: Check the input length before allocation

2023-08-10 Thread Paul B Mahol
On Thu, Aug 10, 2023 at 11:34 AM Michael Niedermayer wrote: > On Wed, Aug 09, 2023 at 11:20:43PM +0200, Paul B Mahol wrote: > > On Wed, Aug 9, 2023 at 9:30 PM Michael Niedermayer < > mich...@niedermayer.cc> > > wrote: > > > > > Hi Paul > > > > &

Re: [FFmpeg-devel] [PATCH] new audio filter and misc improvements

2023-08-10 Thread Paul B Mahol
On Thu, Aug 10, 2023 at 11:48 AM Michael Niedermayer wrote: > On Wed, Aug 09, 2023 at 11:36:16PM +0200, Paul B Mahol wrote: > > Patches attached. > > > af_adeclick.c |7 --- > > 1 file changed, 4 insertions(+), 3 deletions(-) > > b19bd0c3f05d5ebce92f7500da

[FFmpeg-devel] [PATCH] new audio filter and misc improvements

2023-08-09 Thread Paul B Mahol
Patches attached. From 2d8c330f543397642fa1afe0a01a67155008d4e1 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Wed, 9 Aug 2023 21:53:04 +0200 Subject: [PATCH 3/3] avfilter/af_adeclick: do not output pointless message Signed-off-by: Paul B Mahol --- libavfilter/af_adeclick.c | 7 --- 1

Re: [FFmpeg-devel] [PATCH v2] avcodec/mv30: Check the input length before allocation

2023-08-09 Thread Paul B Mahol
On Wed, Aug 9, 2023 at 11:15 PM James Almer wrote: > On 8/9/2023 6:20 PM, Paul B Mahol wrote: > > On Wed, Aug 9, 2023 at 9:30 PM Michael Niedermayer < > mich...@niedermayer.cc> > > wrote: > > > >> Hi Paul > >> > >> On

Re: [FFmpeg-devel] [PATCH v2] avcodec/mv30: Check the input length before allocation

2023-08-09 Thread Paul B Mahol
On Wed, Aug 9, 2023 at 9:30 PM Michael Niedermayer wrote: > Hi Paul > > On Wed, Aug 09, 2023 at 08:53:03PM +0200, Paul B Mahol wrote: > > This is not correct, and please stop writing such patches. Thanks. > > If there is a problem in the bugfix, please explain what the pr

Re: [FFmpeg-devel] [PATCH v2] avcodec/mv30: Check the input length before allocation

2023-08-09 Thread Paul B Mahol
This is not correct, and please stop writing such patches. 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

Re: [FFmpeg-devel] What is FFmpeg and what should it be

2023-08-09 Thread Paul B Mahol
On Wed, Aug 9, 2023 at 5:59 PM Michael Niedermayer wrote: > On Tue, Aug 08, 2023 at 09:53:11PM +0300, Rémi Denis-Courmont wrote: > > Le tiistaina 8. elokuuta 2023, 18.22.49 EEST Michael Niedermayer a écrit > : > > > > > That is missing that people suggest a path forward but > > > > > with too

Re: [FFmpeg-devel] What is FFmpeg and what should it be

2023-08-08 Thread Paul B Mahol
On Tue, Aug 8, 2023 at 5:23 PM Michael Niedermayer wrote: > Hi > > On Mon, Aug 07, 2023 at 06:39:10PM +0300, Rémi Denis-Courmont wrote: > > Le sunnuntaina 6. elokuuta 2023, 22.53.23 EEST Michael Niedermayer a > écrit : > > > > > > Did you ask people to do that? > > > > > > > > > > yes, multiple

Re: [FFmpeg-devel] [PATCH 2/2] fate/audio: Add SBaGen/ffwavesynth test

2023-08-08 Thread Paul B Mahol
Why you adding test for target that breaks numerous rules and should be removed completely? ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email

Re: [FFmpeg-devel] [PATCH 2/5] avcodec/mv30: Check the input length before allocation

2023-08-07 Thread Paul B Mahol
NAK ___ 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] What is FFmpeg and what should it be

2023-08-05 Thread Paul B Mahol
Your attempts to troll other developers to work on SDR/AVRadio is flawed and disrespectful to other FFmpeg people. ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above,

Re: [FFmpeg-devel] [PATCH 1/2] avradio/sdr: Add CQUAM support

2023-08-05 Thread Paul B Mahol
NAK ___ 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 5/6] fftools: avradio support

2023-08-02 Thread Paul B Mahol
On Wed, Aug 2, 2023 at 2:47 PM Michael Niedermayer wrote: > On Tue, Aug 01, 2023 at 10:06:19PM +0200, Paul B Mahol wrote: > > On Tue, Aug 1, 2023 at 9:51 PM Cosmin Stejerean > wrote: > > > > > On Jul 27, 2023, at 11:36 AM, Michael Niedermayer < > mi

Re: [FFmpeg-devel] [PATCH 5/6] fftools: avradio support

2023-08-01 Thread Paul B Mahol
On Tue, Aug 1, 2023 at 9:51 PM Cosmin Stejerean wrote: > On Jul 27, 2023, at 11:36 AM, Michael Niedermayer > wrote: > > Let me first explain what i want to provide to the user (most of this > is already implemented, some needs more work) > the user starts her favorite player, be that vlc,

Re: [FFmpeg-devel] [PATCH 5/5] avcodec/sga: Don't use GetBit-API for byte-aligned reads

2023-07-31 Thread Paul B Mahol
Have you actually tested this? ___ 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 01/12] avradio/avformat/sdrdemux: Move agc_gain into local variable

2023-07-30 Thread Paul B Mahol
NAK to whole set. ___ 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".

[FFmpeg-devel] Cease and Desist for AVRadio and SDR spam on this mailing list

2023-07-29 Thread Paul B Mahol
serious mental breakdown. If you do not cease and desist the harassment, I will be forced to take appropriate critical action against this behavior including but not limited to leaving project and will seek all available damages and remedies. Sincerely, Paul B Mahol, FFmpeg developer and FFmpeg

Re: [FFmpeg-devel] [PATCH v3 1/2] lavc: add prores bitstream parser

2023-07-26 Thread Paul B Mahol
On Wed, Jul 26, 2023 at 11:27 AM hung kuishing wrote: > Signed-off-by: clarkh > --- > libavcodec/Makefile| 1 + > libavcodec/parsers.c | 1 + > libavcodec/prores_parser.c | 107 + > 3 files changed, 109 insertions(+) > create mode 100644

Re: [FFmpeg-devel] [PATCH 1/5] avutil/tx_template: extend to 2M

2023-07-25 Thread Paul B Mahol
On Mon, Jul 24, 2023 at 8:46 PM Tomas Härdin wrote: > mån 2023-07-24 klockan 10:57 +0200 skrev Paul B Mahol: > > On Mon, Jul 24, 2023 at 10:34 AM Andreas Rheinhardt < > > andreas.rheinha...@outlook.com> wrote: > > > > > Michael Niedermayer: > > &g

Re: [FFmpeg-devel] [PATCH v3 1/1] avfilter/buffersink: Add video frame allocation callback

2023-07-24 Thread Paul B Mahol
On Mon, Jul 24, 2023 at 10:21 AM Nicolas George wrote: > Paul B Mahol (12023-07-23): > > Your comment is extremely rude and unhelpful. > > I am sorry for any perceived rudeness. Shall I point each time I find > your comments to me extremely rude and/or unhelpful too? > >

Re: [FFmpeg-devel] [PATCH 1/5] avutil/tx_template: extend to 2M

2023-07-24 Thread Paul B Mahol
On Mon, Jul 24, 2023 at 10:34 AM Andreas Rheinhardt < andreas.rheinha...@outlook.com> wrote: > Michael Niedermayer: > > On Sat, Jun 17, 2023 at 12:20:44AM +0200, Michael Niedermayer wrote: > >> Signed-off-by: Michael Niedermayer > >> --- > >> libavutil/tx_template.c | 12 > >> 1

Re: [FFmpeg-devel] [PATCH v3 1/1] avfilter/buffersink: Add video frame allocation callback

2023-07-23 Thread Paul B Mahol
On Sun, Jul 23, 2023 at 9:36 PM Nicolas George wrote: > Paul B Mahol (12023-07-23): > > - missing audio support > > You realize that direct rendering is order of magnitude more useful for > video frames than for audio, right? > That does not make patch more complete.

Re: [FFmpeg-devel] [PATCH v3 1/1] avfilter/buffersink: Add video frame allocation callback

2023-07-23 Thread Paul B Mahol
On Sun, Jul 23, 2023 at 9:36 PM Nicolas George wrote: > Paul B Mahol (12023-07-23): > > - missing audio support > > You realize that direct rendering is order of magnitude more useful for > video frames than for audio, right? > > > - missing full internal buffers all

Re: [FFmpeg-devel] [PATCH v3 1/1] avfilter/buffersink: Add video frame allocation callback

2023-07-23 Thread Paul B Mahol
On Sun, Jul 23, 2023 at 9:26 PM Nicolas George wrote: > James Almer (12023-07-23): > > What about when FF_FILTER_FLAG_HWFRAME_AWARE filters are present in the > > graph? hw_frames_ctx from AVFilterLink can't be accessed from outside > lavfi. > > Is vf_hwdownload meant to be added to the graph

Re: [FFmpeg-devel] [PATCH 3/6] avformat: add support for demuxers/inputs from avradio

2023-07-22 Thread Paul B Mahol
NAK ___ 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 2/6] avutil/log: Add AV_CLASS_CATEGORY_RADIO_INPUT

2023-07-22 Thread Paul B Mahol
NAK ___ 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".

<    1   2   3   4   5   6   7   8   9   10   >