Re: [FFmpeg-devel] [PATCH] flvenc: flush after write header

2021-11-01 Thread Lingjiang Fang
On Thu, 28 Oct 2021 20:50:05 +0800 Steven Liu wrote: ping for review or apply :) > > > > 2021??10??28?? 2:32??Lingjiang Fang > > ?? > > > > keep align with movenc, or it seems a little weired when debug > > --- > > libavformat/flvenc.c | 2 ++ > > 1 file changed, 2 insertions(+) > >

Re: [FFmpeg-devel] [PATCH] libaom: Dont use aom_codec_av1_dx_algo.

2021-11-01 Thread Matt Oliver
On Tue, 2 Nov 2021 at 04:41, James Zern wrote: > On Fri, Oct 29, 2021 at 8:51 PM Matt Oliver wrote: > > > > On Sat, 30 Oct 2021 at 14:13, Matt Oliver wrote: > > > > > Does this compile and link with libaom 1.0.0? We unfortunately still > > >> support that version (despite being unusable speed w

[FFmpeg-devel] Possible contract work for someone familiar with ffmpeg

2021-11-01 Thread Michael Van Hulle
I don't know if this is the correct place to ask for possible contract work for someone that is familiar with ffmpeg.  Here is what my company is looking for: We are looking to design a streaming server with the following requirements: * The files that are streamed by the server are MP4 files

[FFmpeg-devel] [PATCH] avcodec/libx264: fix sei payload leaks on error

2021-11-01 Thread James Almer
Signed-off-by: James Almer --- libavcodec/libx264.c | 23 +++ 1 file changed, 19 insertions(+), 4 deletions(-) diff --git a/libavcodec/libx264.c b/libavcodec/libx264.c index 21f434d06d..0766b4a950 100644 --- a/libavcodec/libx264.c +++ b/libavcodec/libx264.c @@ -293,6 +293,18

[FFmpeg-devel] [PATCH 3/3 v2] fate: Add test for Dolby Vision RPU side data

2021-11-01 Thread Derek Buitenhuis
Signed-off-by: Derek Buitenhuis --- tests/fate/hevc.mak| 3 + tests/ref/fate/hevc-dv-rpu | 512 + 2 files changed, 515 insertions(+) create mode 100644 tests/ref/fate/hevc-dv-rpu diff --git a/tests/fate/hevc.mak b/tests/fate/hevc.mak index f6ea1df9a

[FFmpeg-devel] [PATCH 2/3 v2] avcodec/hevcdec: Export Dolby Vision RPUs as side data

2021-11-01 Thread Derek Buitenhuis
Signed-off-by: Derek Buitenhuis --- libavcodec/h2645_parse.c | 28 libavcodec/hevcdec.c | 29 + libavcodec/hevcdec.h | 2 ++ libavcodec/version.h | 2 +- 4 files changed, 60 insertions(+), 1 deletion(-) diff --git a/libavcode

[FFmpeg-devel] [PATCH 1/3 v2] avutil: Add Dolby Vision RPU side data type

2021-11-01 Thread Derek Buitenhuis
Signed-off-by: Derek Buitenhuis --- doc/APIchanges | 3 +++ libavutil/frame.c | 1 + libavutil/frame.h | 7 +++ libavutil/version.h | 2 +- 4 files changed, 12 insertions(+), 1 deletion(-) diff --git a/doc/APIchanges b/doc/APIchanges index 99e185ee4e..86c7cae4bc 100644 --- a/doc/API

[FFmpeg-devel] [PATCH 0/3 v2] Dolby Vision RPU Side Data

2021-11-01 Thread Derek Buitenhuis
v1 discussion: https://patchwork.ffmpeg.org/project/ffmpeg/list/?series=5130 All suggestions applied except the configuration record check, which can't be, because AVStream side data is not accessible in avcodec - discused on IRC with James and Jan. Derek Buitenhuis (3): avutil: Add Dolby Visio

Re: [FFmpeg-devel] [PATCH] libavformat/tls_mbedtls.c: Accommodating to mbedtls v3.0.0 API changes

2021-11-01 Thread James Almer
On 11/1/2021 2:42 PM, meryacine wrote: There were breaking API changes in mbedtls from v2.27.0 to v3.0.0. This patch accounts for these changes. Changes: - mbedtls/certs.h is no longer imported. See https://github.com/ARMmbed/mbedtls/pull/4119. - mbedtls/config.h is replaced with mbedtls/build

Re: [FFmpeg-devel] libavformat/tls_mbedtls.c: Accommodating to mbedtls v3.0.0 API changes

2021-11-01 Thread omer yacine
Ok I will try that. Should I opt out using TLS and don't encrypt the mail? maybe that's why it's not reaching the archive. On Mon, Nov 1, 2021, 2:02 PM James Almer wrote: > On 11/1/2021 2:30 AM, omer yacine wrote: > > Hello, > > > > Let me ping this patch since I got no response after 4 days. >

Re: [FFmpeg-devel] [PATCH] avcodec/libaomdec: use intermediate arrays for plane pointers and strides

2021-11-01 Thread James Zern
On Sat, Oct 30, 2021 at 6:59 AM James Almer wrote: > > Fixes -Wstringop-overflow warnings with libaom >= 2.0.0, where the unused > alpha > plane was removed from aom_image. > > Signed-off-by: James Almer > --- > libavcodec/libaomdec.c | 10 +++--- > 1 file changed, 7 insertions(+), 3 deleti

[FFmpeg-devel] [PATCH] libavformat/tls_mbedtls.c: Accommodating to mbedtls v3.0.0 API changes

2021-11-01 Thread meryacine
There were breaking API changes in mbedtls from v2.27.0 to v3.0.0. This patch accounts for these changes. Changes: - mbedtls/certs.h is no longer imported. See https://github.com/ARMmbed/mbedtls/pull/4119. - mbedtls/config.h is replaced with mbedtls/build_info.h. See https://github.com/ARMmbed/

Re: [FFmpeg-devel] [PATCH] libaom: Dont use aom_codec_av1_dx_algo.

2021-11-01 Thread James Zern
On Fri, Oct 29, 2021 at 8:51 PM Matt Oliver wrote: > > On Sat, 30 Oct 2021 at 14:13, Matt Oliver wrote: > > > Does this compile and link with libaom 1.0.0? We unfortunately still > >> support that version (despite being unusable speed wise) because distros > >> like Debian still ship it. > >> > >

Re: [FFmpeg-devel] [PATCH] libaom: Dont use aom_codec_av1_dx_algo.

2021-11-01 Thread James Zern
On Fri, Oct 29, 2021 at 8:13 PM Matt Oliver wrote: > > > > > Does this compile and link with libaom 1.0.0? We unfortunately still > > support that version (despite being unusable speed wise) because distros > > like Debian still ship it. > > > > Just looked it up and yes version 1.0.0 includes the

Re: [FFmpeg-devel] [PATCH 3/3] avformat/aiffdec: Use av_rescale() for bitrate

2021-11-01 Thread Michael Niedermayer
On Sun, Oct 31, 2021 at 10:03:17AM +0100, Paul B Mahol wrote: > lgtm will apply thx [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB The misfortune of the wise is better than the prosperity of the fool. -- Epicurus signature.asc Description: PGP signature

Re: [FFmpeg-devel] [PATCH 2/3] avformat/aiffdec: sanity check block_align

2021-11-01 Thread Michael Niedermayer
On Sun, Oct 31, 2021 at 10:02:10AM +0100, Paul B Mahol wrote: > lgtm, could also change return values in next commits. will change the return values thx [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB The smallest minority on earth is the individual. Those wh

Re: [FFmpeg-devel] [PATCH 1/3] avformat/aiffdec: Check sample_rate

2021-11-01 Thread Michael Niedermayer
On Sun, Oct 31, 2021 at 10:03:33AM +0100, Paul B Mahol wrote: > lgtm will apply thx [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB Dictatorship naturally arises out of democracy, and the most aggravated form of tyranny and slavery out of the most extreme liber

Re: [FFmpeg-devel] [PATCH] configure: add initial RISC-V support

2021-11-01 Thread Michael Niedermayer
On Fri, Oct 29, 2021 at 04:43:16PM -0400, Brad Smith wrote: > On 10/29/2021 2:39 PM, Michael Niedermayer wrote: > > > On Thu, Oct 28, 2021 at 06:13:30PM -0400, Brad Smith wrote: > > > ping. > > > > > > On 8/8/2021 8:48 PM, Brad Smith wrote: > > > > ping. > > > > > > > > On 7/25/2021 6:31 PM, Bra

Re: [FFmpeg-devel] libavformat/tls_mbedtls.c: Accommodating to mbedtls v3.0.0 API changes

2021-11-01 Thread James Almer
On 11/1/2021 2:30 AM, omer yacine wrote: Hello, Let me ping this patch since I got no response after 4 days. Thanks, I don't see the patch in the mailing list archive. Could you resend it? --Omar On Thu, Oct 28, 2021 at 8:11 PM meryacine wrote: There were breaking API changes in mbedt

Re: [FFmpeg-devel] [PATCH][RFC] avformat/http: Add short_seek_size option

2021-11-01 Thread Derek Buitenhuis
On 10/26/2021 4:14 PM, Derek Buitenhuis wrote: > Signed-off-by: Derek Buitenhuis > --- > libavformat/http.c | 4 > 1 file changed, 4 insertions(+) Ping. - Derek ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/list

Re: [FFmpeg-devel] [PATCH] avfilter: add option to end filtering on first EOF in filter sink

2021-11-01 Thread Nicolas George
Paul B Mahol (12021-10-31): > Signed-off-by: Paul B Mahol > --- > fftools/ffmpeg.h| 1 + > fftools/ffmpeg_filter.c | 1 + > fftools/ffmpeg_opt.c| 3 +++ > libavfilter/avfilter.h | 1 + > libavfilter/avfiltergraph.c | 7 +-- > 5 files changed, 11 insertions(+), 2 d