* [FFmpeg-devel] [PATCH] avcodec/aarch64/aacencdsp: NEON implementation
@ 2025-01-24 18:58 Krzysztof Pyrkosz via ffmpeg-devel
2025-01-25 23:29 ` Martin Storsjö
0 siblings, 1 reply; 4+ messages in thread
From: Krzysztof Pyrkosz via ffmpeg-devel @ 2025-01-24 18:58 UTC (permalink / raw)
To: ffmpeg-devel; +Cc: Krzysztof Pyrkosz
This patch supplies handwritten NEON code for AAC.
The benchmarks below were collected by invoking these two commands on
each of my boards, A78, A72 and Thinkpad x13s:
1) ./tests/checkasm/checkasm --test=aacencdsp --bench --runs=12
2) ./ffmpeg -y -t 10:00 -f lavfi -i sine /tmp/foo.aac (the first line is
speed without the patch, second, with)
- A78
abs_pow34_c: 4161.5 ( 1.00x)
abs_pow34_neon: 3586.2 ( 1.16x)
quant_bands_signed_c: 5548.0 ( 1.00x)
quant_bands_signed_neon: 1126.8 ( 4.92x)
quant_bands_unsigned_c: 3979.2 ( 1.00x)
quant_bands_unsigned_neon: 800.2 ( 4.97x)
size= 5251KiB time=00:10:00.00 bitrate= 71.7kbits/s speed=71.6x
size= 5251KiB time=00:10:00.00 bitrate= 71.7kbits/s speed=82.3x
- A72
abs_pow34_c: 15362.2 ( 1.00x)
abs_pow34_neon: 15382.5 ( 1.00x)
quant_bands_signed_c: 9926.5 ( 1.00x)
quant_bands_signed_neon: 2467.8 ( 4.02x)
quant_bands_unsigned_c: 5469.8 ( 1.00x)
quant_bands_unsigned_neon: 2089.5 ( 2.62x)
size= 5251KiB time=00:10:00.00 bitrate= 71.7kbits/s speed=34.3x
size= 5251KiB time=00:10:00.00 bitrate= 71.7kbits/s speed=37.8
- x13s
abs_pow34_c: 2413.4 ( 1.00x)
abs_pow34_neon: 1796.2 ( 1.34x)
quant_bands_signed_c: 2968.9 ( 1.00x)
quant_bands_signed_neon: 675.6 ( 4.39x)
quant_bands_unsigned_c: 2311.9 ( 1.00x)
quant_bands_unsigned_neon: 477.1 ( 4.85x)
size= 5251KiB time=00:10:00.00 bitrate= 71.7kbits/s speed= 135x
size= 5251KiB time=00:10:00.00 bitrate= 71.7kbits/s speed= 159x
Krzysztof
---
libavcodec/aacencdsp.h | 3 ++
libavcodec/aarch64/Makefile | 2 +
libavcodec/aarch64/aacencdsp_init.c | 38 ++++++++++++++++++
libavcodec/aarch64/aacencdsp_neon.S | 62 +++++++++++++++++++++++++++++
4 files changed, 105 insertions(+)
create mode 100644 libavcodec/aarch64/aacencdsp_init.c
create mode 100644 libavcodec/aarch64/aacencdsp_neon.S
diff --git a/libavcodec/aacencdsp.h b/libavcodec/aacencdsp.h
index 67836d8cf7..d0d86c3d70 100644
--- a/libavcodec/aacencdsp.h
+++ b/libavcodec/aacencdsp.h
@@ -34,6 +34,7 @@ typedef struct AACEncDSPContext {
void ff_aacenc_dsp_init_riscv(AACEncDSPContext *s);
void ff_aacenc_dsp_init_x86(AACEncDSPContext *s);
+void ff_aacenc_dsp_init_aarch64(AACEncDSPContext *s);
static inline void abs_pow34_v(float *out, const float *in, const int size)
{
@@ -66,6 +67,8 @@ static inline void ff_aacenc_dsp_init(AACEncDSPContext *s)
ff_aacenc_dsp_init_riscv(s);
#elif ARCH_X86
ff_aacenc_dsp_init_x86(s);
+#elif ARCH_AARCH64
+ ff_aacenc_dsp_init_aarch64(s);
#endif
}
diff --git a/libavcodec/aarch64/Makefile b/libavcodec/aarch64/Makefile
index 9affb92789..a67e53bffb 100644
--- a/libavcodec/aarch64/Makefile
+++ b/libavcodec/aarch64/Makefile
@@ -19,6 +19,7 @@ OBJS-$(CONFIG_VP8DSP) += aarch64/vp8dsp_init_aarch64.o
# decoders/encoders
OBJS-$(CONFIG_AAC_DECODER) += aarch64/aacpsdsp_init_aarch64.o \
aarch64/sbrdsp_init_aarch64.o
+OBJS-$(CONFIG_AAC_ENCODER) += aarch64/aacencdsp_init.o
OBJS-$(CONFIG_DCA_DECODER) += aarch64/synth_filter_init.o
OBJS-$(CONFIG_OPUS_DECODER) += aarch64/opusdsp_init.o
OBJS-$(CONFIG_RV40_DECODER) += aarch64/rv40dsp_init_aarch64.o
@@ -38,6 +39,7 @@ ARMV8-OBJS-$(CONFIG_VIDEODSP) += aarch64/videodsp.o
# subsystems
NEON-OBJS-$(CONFIG_AAC_DECODER) += aarch64/sbrdsp_neon.o
+NEON-OBJS-$(CONFIG_AAC_ENCODER) += aarch64/aacencdsp_neon.o
NEON-OBJS-$(CONFIG_AC3DSP) += aarch64/ac3dsp_neon.o
NEON-OBJS-$(CONFIG_FDCTDSP) += aarch64/fdctdsp_neon.o
NEON-OBJS-$(CONFIG_FMTCONVERT) += aarch64/fmtconvert_neon.o
diff --git a/libavcodec/aarch64/aacencdsp_init.c b/libavcodec/aarch64/aacencdsp_init.c
new file mode 100644
index 0000000000..23498e7891
--- /dev/null
+++ b/libavcodec/aarch64/aacencdsp_init.c
@@ -0,0 +1,38 @@
+/*
+ * Copyright (c) 2025 Krzysztof Aleksander Pyrkosz
+ *
+ * This file is part of FFmpeg.
+ *
+ * FFmpeg is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * FFmpeg is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with FFmpeg; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#include "config.h"
+
+#include "libavutil/arm/cpu.h"
+#include "libavutil/attributes.h"
+#include "libavcodec/aacencdsp.h"
+
+void ff_abs_pow34_neon(float *out, const float *in, const int size);
+void ff_aac_quant_bands_neon(int *, const float *, const float *, int, int,
+ int, const float, const float);
+
+av_cold void ff_aacenc_dsp_init_aarch64(AACEncDSPContext *s)
+{
+ int cpu_flags = av_get_cpu_flags();
+ if (!have_neon(cpu_flags)) return;
+
+ s->abs_pow34 = ff_abs_pow34_neon;
+ s->quant_bands = ff_aac_quant_bands_neon;
+}
diff --git a/libavcodec/aarch64/aacencdsp_neon.S b/libavcodec/aarch64/aacencdsp_neon.S
new file mode 100644
index 0000000000..f0bf013c85
--- /dev/null
+++ b/libavcodec/aarch64/aacencdsp_neon.S
@@ -0,0 +1,62 @@
+/*
+ * Copyright (c) 2025 Krzysztof Aleksander Pyrkosz
+ *
+ * This file is part of FFmpeg.
+ *
+ * FFmpeg is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * FFmpeg is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with FFmpeg; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#include "libavutil/aarch64/asm.S"
+
+function ff_abs_pow34_neon, export=1
+1: subs w2, w2, #4
+ ld1 {v0.4s}, [x1], #16
+ fabs v0.4s, v0.4s
+ fsqrt v2.4s, v0.4s
+ fmul v0.4s, v2.4s, v0.4s
+ fsqrt v0.4s, v0.4s
+ st1 {v0.4s}, [x0], #16
+ b.ne 1b
+ ret
+endfunc
+
+function ff_aac_quant_bands_neon, export=1
+ scvtf s2, w5
+ dup v1.4s, v1.s[0]
+ dup v2.4s, v2.s[0]
+ cbz w4, 0f
+ movi v5.4s, 0x80, lsl #24
+.irp signed,1,0
+\signed:
+ subs w3, w3, #4
+ ld1 {v3.4s}, [x2], #16
+ fmul v3.4s, v3.4s, v0.s[0]
+.if \signed
+ ld1 {v4.4s}, [x1], #16
+.endif
+ fadd v3.4s, v3.4s, v1.4s
+.if \signed
+ and v4.16b, v4.16b, v5.16b
+.endif
+ fmin v3.4s, v3.4s, v2.4s
+.if \signed
+ eor v3.16b, v4.16b, v3.16b
+.endif
+ fcvtzs v3.4s, v3.4s
+ st1 {v3.4s}, [x0], #16
+ b.ne \signed\()b
+ ret
+.endr
+endfunc
--
2.45.2
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [FFmpeg-devel] [PATCH] avcodec/aarch64/aacencdsp: NEON implementation
2025-01-24 18:58 [FFmpeg-devel] [PATCH] avcodec/aarch64/aacencdsp: NEON implementation Krzysztof Pyrkosz via ffmpeg-devel
@ 2025-01-25 23:29 ` Martin Storsjö
2025-01-27 18:21 ` Krzysztof Pyrkosz via ffmpeg-devel
0 siblings, 1 reply; 4+ messages in thread
From: Martin Storsjö @ 2025-01-25 23:29 UTC (permalink / raw)
To: Krzysztof Pyrkosz via ffmpeg-devel; +Cc: Krzysztof Pyrkosz
On Fri, 24 Jan 2025, Krzysztof Pyrkosz via ffmpeg-devel wrote:
> This patch supplies handwritten NEON code for AAC.
>
> The benchmarks below were collected by invoking these two commands on
> each of my boards, A78, A72 and Thinkpad x13s:
> 1) ./tests/checkasm/checkasm --test=aacencdsp --bench --runs=12
> 2) ./ffmpeg -y -t 10:00 -f lavfi -i sine /tmp/foo.aac (the first line is
> speed without the patch, second, with)
>
>
> - A78
> abs_pow34_c: 4161.5 ( 1.00x)
> abs_pow34_neon: 3586.2 ( 1.16x)
> quant_bands_signed_c: 5548.0 ( 1.00x)
> quant_bands_signed_neon: 1126.8 ( 4.92x)
> quant_bands_unsigned_c: 3979.2 ( 1.00x)
> quant_bands_unsigned_neon: 800.2 ( 4.97x)
>
> size= 5251KiB time=00:10:00.00 bitrate= 71.7kbits/s speed=71.6x
> size= 5251KiB time=00:10:00.00 bitrate= 71.7kbits/s speed=82.3x
>
> - A72
> abs_pow34_c: 15362.2 ( 1.00x)
> abs_pow34_neon: 15382.5 ( 1.00x)
> quant_bands_signed_c: 9926.5 ( 1.00x)
> quant_bands_signed_neon: 2467.8 ( 4.02x)
> quant_bands_unsigned_c: 5469.8 ( 1.00x)
> quant_bands_unsigned_neon: 2089.5 ( 2.62x)
>
> size= 5251KiB time=00:10:00.00 bitrate= 71.7kbits/s speed=34.3x
> size= 5251KiB time=00:10:00.00 bitrate= 71.7kbits/s speed=37.8
>
> - x13s
> abs_pow34_c: 2413.4 ( 1.00x)
> abs_pow34_neon: 1796.2 ( 1.34x)
> quant_bands_signed_c: 2968.9 ( 1.00x)
> quant_bands_signed_neon: 675.6 ( 4.39x)
> quant_bands_unsigned_c: 2311.9 ( 1.00x)
> quant_bands_unsigned_neon: 477.1 ( 4.85x)
>
> size= 5251KiB time=00:10:00.00 bitrate= 71.7kbits/s speed= 135x
> size= 5251KiB time=00:10:00.00 bitrate= 71.7kbits/s speed= 159x
Thanks for the numbers!
It's interesting how the numbers for abs_pow34 end up so identical on the
A72, while they do differ on the other cores.
In my test, I'm getting the following numbers for that function:
Cortex A53 A72 A78
abs_pow34_c: 36889.0 15359.5 14345.0
abs_pow34_neon: 9237.0 15359.0 3592.5
This test is done with the same binary across all three devices. The test
is made with a fairly old C compiler so that may explain the much larger
difference in speed for the C version - but surprisingly, it is still
almost identical in speed compared with the SIMD version on A72. Very
surprising, but anyway, the code seems to add value.
The code overall looks ok, but there are some minor opportunities to make
things a little bit better, primarily by looking at the scheduling.
Normally, scheduling mostly helps for the in-order cores, but I do see
some smaller speedups on out-of-order cores here as well.
> diff --git a/libavcodec/aarch64/aacencdsp_neon.S b/libavcodec/aarch64/aacencdsp_neon.S
> new file mode 100644
> index 0000000000..f0bf013c85
> --- /dev/null
> +++ b/libavcodec/aarch64/aacencdsp_neon.S
> @@ -0,0 +1,62 @@
> +/*
> + * Copyright (c) 2025 Krzysztof Aleksander Pyrkosz
> + *
> + * This file is part of FFmpeg.
> + *
> + * FFmpeg is free software; you can redistribute it and/or
> + * modify it under the terms of the GNU Lesser General Public
> + * License as published by the Free Software Foundation; either
> + * version 2.1 of the License, or (at your option) any later version.
> + *
> + * FFmpeg is distributed in the hope that it will be useful,
> + * but WITHOUT ANY WARRANTY; without even the implied warranty of
> + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
> + * Lesser General Public License for more details.
> + *
> + * You should have received a copy of the GNU Lesser General Public
> + * License along with FFmpeg; if not, write to the Free Software
> + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
> + */
> +
> +#include "libavutil/aarch64/asm.S"
> +
> +function ff_abs_pow34_neon, export=1
> +1: subs w2, w2, #4
> + ld1 {v0.4s}, [x1], #16
> + fabs v0.4s, v0.4s
> + fsqrt v2.4s, v0.4s
> + fmul v0.4s, v2.4s, v0.4s
> + fsqrt v0.4s, v0.4s
> + st1 {v0.4s}, [x0], #16
> + b.ne 1b
> + ret
> +endfunc
This mostly looks straightforward. As the whole instruction sequence
mostly depends on the results of the previous instruction, there's not
really much one can do here. But the main usual thing to do is to place
the loop decrement instruction where it can help hide latency the best;
either between a load ands the use of it (if there's nothing else that can
be placed there), or e.g. between the last calculation and the store of
it).
Here, I did the following modification:
@@ -21,8 +21,9 @@
#include "libavutil/aarch64/asm.S"
function ff_abs_pow34_neon, export=1
-1: subs w2, w2, #4
+1:
ld1 {v0.4s}, [x1], #16
+ subs w2, w2, #4
fabs v0.4s, v0.4s
fsqrt v2.4s, v0.4s
fmul v0.4s, v2.4s, v0.4s
And I got the following results:
Before: Cortex A53 A72 A78
abs_pow34_neon: 9488.0 15359.0 3586.5
Aftere:
abs_pow34_neon: 9232.0 15359.0 3586.5
Thus, no change on the big out-of-order cores, but a small consistent
improvement on the in-order core. I.e. no reason not to do it here.
> +
> +function ff_aac_quant_bands_neon, export=1
> + scvtf s2, w5
> + dup v1.4s, v1.s[0]
> + dup v2.4s, v2.s[0]
> + cbz w4, 0f
> + movi v5.4s, 0x80, lsl #24
> +.irp signed,1,0
> +\signed:
> + subs w3, w3, #4
> + ld1 {v3.4s}, [x2], #16
> + fmul v3.4s, v3.4s, v0.s[0]
> +.if \signed
> + ld1 {v4.4s}, [x1], #16
> +.endif
Here, you could do the same - do the "subs" after the first ld1 (while
we're waiting for the result to be loaded) anyway. I see that you've
interleaved the extra operations on v4 here, that's good. We could try
doing the load of v4 before the first fmul, but that doesn't seem to make
any difference at all.
With the following diff:
@@ -40,8 +41,8 @@ function ff_aac_quant_bands_neon, export=1
movi v5.4s, 0x80, lsl #24
.irp signed,1,0
\signed:
- subs w3, w3, #4
ld1 {v3.4s}, [x2], #16
+ subs w3, w3, #4
fmul v3.4s, v3.4s, v0.s[0]
.if \signed
ld1 {v4.4s}, [x1], #16
I'm getting the following improvement:
Before: Cortex A53 A72 A78
quant_bands_signed_neon: 5661.0 2383.2 1113.2
quant_bands_unsigned_neon: 5401.5 2067.8 811.8
After:
quant_bands_signed_neon: 5402.5 2385.5 1090.0
quant_bands_unsigned_neon: 5145.5 2067.8 809.5
No change on the A72 here, but apparently a (very) small improvement on
the A78, and a bigger improvement on the A53 as expected.
If you don't mind these changes, we could land the change with that
tweaked. (I guess the numbers in the commit message could be re-measured,
but I'm not sure if they change enough to make much of a difference there,
especially on the cores you've measured on.)
// Martin
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [FFmpeg-devel] [PATCH] avcodec/aarch64/aacencdsp: NEON implementation
2025-01-25 23:29 ` Martin Storsjö
@ 2025-01-27 18:21 ` Krzysztof Pyrkosz via ffmpeg-devel
2025-01-28 8:46 ` Martin Storsjö
0 siblings, 1 reply; 4+ messages in thread
From: Krzysztof Pyrkosz via ffmpeg-devel @ 2025-01-27 18:21 UTC (permalink / raw)
To: FFmpeg development discussions and patches; +Cc: Krzysztof Pyrkosz
On Sun, Jan 26, 2025 at 01:29:38AM +0200, Martin Storsjö wrote:
> With the following diff:
>
> @@ -40,8 +41,8 @@ function ff_aac_quant_bands_neon, export=1
> movi v5.4s, 0x80, lsl #24
> .irp signed,1,0
> \signed:
> - subs w3, w3, #4
> ld1 {v3.4s}, [x2], #16
> + subs w3, w3, #4
> fmul v3.4s, v3.4s, v0.s[0]
> .if \signed
> ld1 {v4.4s}, [x1], #16
>
> I'm getting the following improvement:
>
> Before: Cortex A53 A72 A78
> quant_bands_signed_neon: 5661.0 2383.2 1113.2
> quant_bands_unsigned_neon: 5401.5 2067.8 811.8
> After:
> quant_bands_signed_neon: 5402.5 2385.5 1090.0
> quant_bands_unsigned_neon: 5145.5 2067.8 809.5
>
> No change on the A72 here, but apparently a (very) small improvement on the
> A78, and a bigger improvement on the A53 as expected.
>
> If you don't mind these changes, we could land the change with that tweaked.
> (I guess the numbers in the commit message could be re-measured, but I'm not
> sure if they change enough to make much of a difference there, especially on
> the cores you've measured on.)
>
> // Martin
I don't mind these changes, I'm perfectly fine with applying any
improvements on top of the patch.
The speeds on A78 and x13s did not change significantly, the initial
benchmark values can be used.
Krzysztof
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [FFmpeg-devel] [PATCH] avcodec/aarch64/aacencdsp: NEON implementation
2025-01-27 18:21 ` Krzysztof Pyrkosz via ffmpeg-devel
@ 2025-01-28 8:46 ` Martin Storsjö
0 siblings, 0 replies; 4+ messages in thread
From: Martin Storsjö @ 2025-01-28 8:46 UTC (permalink / raw)
To: Krzysztof Pyrkosz via ffmpeg-devel; +Cc: Krzysztof Pyrkosz
On Mon, 27 Jan 2025, Krzysztof Pyrkosz via ffmpeg-devel wrote:
> On Sun, Jan 26, 2025 at 01:29:38AM +0200, Martin Storsjö wrote:
>> With the following diff:
>>
>> @@ -40,8 +41,8 @@ function ff_aac_quant_bands_neon, export=1
>> movi v5.4s, 0x80, lsl #24
>> .irp signed,1,0
>> \signed:
>> - subs w3, w3, #4
>> ld1 {v3.4s}, [x2], #16
>> + subs w3, w3, #4
>> fmul v3.4s, v3.4s, v0.s[0]
>> .if \signed
>> ld1 {v4.4s}, [x1], #16
>>
>> I'm getting the following improvement:
>>
>> Before: Cortex A53 A72 A78
>> quant_bands_signed_neon: 5661.0 2383.2 1113.2
>> quant_bands_unsigned_neon: 5401.5 2067.8 811.8
>> After:
>> quant_bands_signed_neon: 5402.5 2385.5 1090.0
>> quant_bands_unsigned_neon: 5145.5 2067.8 809.5
>>
>> No change on the A72 here, but apparently a (very) small improvement on the
>> A78, and a bigger improvement on the A53 as expected.
>>
>> If you don't mind these changes, we could land the change with that tweaked.
>> (I guess the numbers in the commit message could be re-measured, but I'm not
>> sure if they change enough to make much of a difference there, especially on
>> the cores you've measured on.)
>>
>> // Martin
>
> I don't mind these changes, I'm perfectly fine with applying any
> improvements on top of the patch.
> The speeds on A78 and x13s did not change significantly, the initial
> benchmark values can be used.
Ok, great, I've pushed this patch then. Thanks for your contribution!
// Martin
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2025-01-28 8:46 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-01-24 18:58 [FFmpeg-devel] [PATCH] avcodec/aarch64/aacencdsp: NEON implementation Krzysztof Pyrkosz via ffmpeg-devel
2025-01-25 23:29 ` Martin Storsjö
2025-01-27 18:21 ` Krzysztof Pyrkosz via ffmpeg-devel
2025-01-28 8:46 ` Martin Storsjö
Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
This inbox may be cloned and mirrored by anyone:
git clone --mirror https://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git
# If you have public-inbox 1.1+ installed, you may
# initialize and index your mirror using the following commands:
public-inbox-init -V2 ffmpegdev ffmpegdev/ https://master.gitmailbox.com/ffmpegdev \
ffmpegdev@gitmailbox.com
public-inbox-index ffmpegdev
Example config snippet for mirrors.
AGPL code for this site: git clone https://public-inbox.org/public-inbox.git