Re: [FFmpeg-devel] [PATCH] FTR decoder

2022-09-22 Thread Anton Khirnov
Quoting Paul B Mahol (2022-09-22 11:09:03) > On 8/31/22, Paul B Mahol wrote: > > New patch updated from feedback received. > > > > Will apply soon. This needs tests. -- Anton Khirnov ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpe

Re: [FFmpeg-devel] [PATCH] FTR decoder

2022-09-22 Thread Paul B Mahol
On 8/31/22, Paul B Mahol wrote: > New patch updated from feedback received. > 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-deve

Re: [FFmpeg-devel] [PATCH] FTR decoder

2022-08-31 Thread Paul B Mahol
On Wed, Aug 31, 2022 at 9:15 PM Andreas Rheinhardt < andreas.rheinha...@outlook.com> wrote: > Paul B Mahol: > > diff --git a/libavcodec/ftr.c b/libavcodec/ftr.c > > new file mode 100644 > > index 00..03d490a0c9 > > --- /dev/null > > +++ b/libavcodec/ftr.c > > @@ -0,0 +1,217 @@ > > +/* > >

Re: [FFmpeg-devel] [PATCH] FTR decoder

2022-08-31 Thread Paul B Mahol
New patch updated from feedback received. From c605f6799daeff65d7379c3d10ea7542d9b0ab39 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Tue, 30 Aug 2022 17:14:46 +0200 Subject: [PATCH] avcodec: add FTR audio decoder Signed-off-by: Paul B Mahol --- libavcodec/Makefile | 2 + libavcodec/a

Re: [FFmpeg-devel] [PATCH] FTR decoder

2022-08-31 Thread Jean-Baptiste Kempf
On Wed, 31 Aug 2022, at 18:42, Paul B Mahol wrote: > Patch attached. gg -- Jean-Baptiste Kempf - President +33 672 704 734 ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit li

Re: [FFmpeg-devel] [PATCH] FTR decoder

2022-08-31 Thread Andreas Rheinhardt
Paul B Mahol: > diff --git a/libavcodec/ftr.c b/libavcodec/ftr.c > new file mode 100644 > index 00..03d490a0c9 > --- /dev/null > +++ b/libavcodec/ftr.c > @@ -0,0 +1,217 @@ > +/* > + * This file is part of FFmpeg. > + * > + * FFmpeg is free software; you can redistribute it and/or > + * modi

Re: [FFmpeg-devel] [PATCH] FTR decoder

2022-08-31 Thread Andreas Rheinhardt
Paul B Mahol: > Patch attached. > +union { > +uint64_t u64; > +uint8_t u8[8 + AV_INPUT_BUFFER_PADDING_SIZE]; > +} tmp; > + > +*poutbuf_size = 0; > +*poutbuf = NULL; > + > +if (s->flags & PARSER_FLAG_COMPLETE_FRAMES) { > +next = buf_size; > +} else {