Re: [FFmpeg-devel] [PATCH] avfilter/split: switch to activate()

2022-03-06 Thread Nicolas George
Paul B Mahol (12022-03-01): > Signed-off-by: Paul B Mahol > --- > > Fix possible hangs if (a)split filter is used in graph and one of outputs ends > earlier than others. > Then filter may never receive EOF from input provided by (a)split filter. > > See ticket #9152 for commands how to reproduce

[FFmpeg-devel] [PATCH] avcodec/hevc_refs: don't use the frame's AVBufferRef sizes when initializing planes

2022-03-06 Thread James Almer
Use the actual plane sizes instead. Signed-off-by: James Almer --- libavcodec/hevc_refs.c | 14 +++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/libavcodec/hevc_refs.c b/libavcodec/hevc_refs.c index 35b8e5e696..b0035356ac 100644 --- a/libavcodec/hevc_refs.c +++ b/lib

Re: [FFmpeg-devel] [FFmpeg-cvslog] avfilter/vf_colorlevels: add planar rgb formats support

2022-03-06 Thread Michael Niedermayer
On Sun, Mar 06, 2022 at 12:59:01PM +, Paul B Mahol wrote: > ffmpeg | branch: master | Paul B Mahol | Sun Mar 6 > 13:57:34 2022 +0100| [10c2ef1ca41dbe7811f0588f4163c8cf7b8fda66] | committer: > Paul B Mahol > > avfilter/vf_colorlevels: add planar rgb formats support > > > http://git.videola

[FFmpeg-devel] [PATCH] avfilter/vf_colorlevels: Fix build failure on ARM

2022-03-06 Thread Michael Niedermayer
Signed-off-by: Michael Niedermayer --- libavfilter/vf_colorlevels.c | 16 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/libavfilter/vf_colorlevels.c b/libavfilter/vf_colorlevels.c index a8859795dd..76adfbd8c8 100644 --- a/libavfilter/vf_colorlevels.c +++ b/libavfi

Re: [FFmpeg-devel] [PATCH] avfilter/vf_colorlevels: Fix build failure on ARM

2022-03-06 Thread Paul B Mahol
On 3/6/22, Michael Niedermayer wrote: > Signed-off-by: Michael Niedermayer > --- > libavfilter/vf_colorlevels.c | 16 > 1 file changed, 8 insertions(+), 8 deletions(-) > > diff --git a/libavfilter/vf_colorlevels.c b/libavfilter/vf_colorlevels.c > index a8859795dd..76adfbd8c8 100

[FFmpeg-devel] [PATCH] avfilter/vf_colorlevels: Fix building for arm

2022-03-06 Thread Martin Storsjö
This fixes building for arm after 10c2ef1ca41dbe7811f0588f4163c8cf7b8fda66. The argument to av_clip_uintp2 must be an assembly time immediate constant. Signed-off-by: Martin Storsjö --- libavfilter/vf_colorlevels.c | 16 1 file changed, 8 insertions(+), 8 deletions(-) diff --gi

Re: [FFmpeg-devel] [PATCH] avfilter/vf_colorlevels: Fix build failure on ARM

2022-03-06 Thread Martin Storsjö
On Sun, 6 Mar 2022, Michael Niedermayer wrote: Signed-off-by: Michael Niedermayer --- libavfilter/vf_colorlevels.c | 16 1 file changed, 8 insertions(+), 8 deletions(-) LGTM (Sorry I didn't check the ML before sending my patch. Maybe mention the commit that introduced the re

Re: [FFmpeg-devel] [PATCH] avfilter/vf_colorlevels: Fix build failure on ARM

2022-03-06 Thread Michael Niedermayer
On Sun, Mar 06, 2022 at 08:12:26PM +0200, Martin Storsjö wrote: > On Sun, 6 Mar 2022, Michael Niedermayer wrote: > > > Signed-off-by: Michael Niedermayer > > --- > > libavfilter/vf_colorlevels.c | 16 > > 1 file changed, 8 insertions(+), 8 deletions(-) > > LGTM > > (Sorry I did

Re: [FFmpeg-devel] [PATCH v2] lavfi/drawtext: Add localtime_ms for millisecond precision

2022-03-06 Thread Thilo Borgmann
Am 22.02.22 um 12:36 schrieb Thilo Borgmann: Am 08.02.22 um 11:41 schrieb Thilo Borgmann: Am 08.02.22 um 10:27 schrieb Andreas Rheinhardt: Thilo Borgmann: Am 01.02.22 um 00:40 schrieb Andreas Rheinhardt: Thilo Borgmann: Am 31.01.22 um 14:08 schrieb Nicolas George: Thilo Borgman (12022-01-31

Re: [FFmpeg-devel] [PATCH] avfilter: Added siti filter

2022-03-06 Thread Thilo Borgmann
Am 22.02.22 um 12:30 schrieb Thilo Borgmann: Am 18.02.22 um 17:08 schrieb Paul B Mahol: On Sat, Feb 12, 2022 at 11:55 AM Thilo Borgmann wrote: Am 31.01.22 um 12:55 schrieb James Almer: On 1/31/2022 8:53 AM, Anton Khirnov wrote: Quoting Thilo Borgmann (2022-01-18 14:58:07) Violations of c

Re: [FFmpeg-devel] [PATCH] avfilter: Added siti filter

2022-03-06 Thread Paul B Mahol
On 3/6/22, Thilo Borgmann wrote: > Am 22.02.22 um 12:30 schrieb Thilo Borgmann: >> Am 18.02.22 um 17:08 schrieb Paul B Mahol: >>> On Sat, Feb 12, 2022 at 11:55 AM Thilo Borgmann >>> wrote: >>> Am 31.01.22 um 12:55 schrieb James Almer: > > > On 1/31/2022 8:53 AM, Anton Khirnov wro

[FFmpeg-devel] [PATCH] mlp_parser: fetch a new timestamp when major sync is found

2022-03-06 Thread Jan Ekström
From: Hendrik Leppkes Decoding can only start on a major sync and the parser discards any data received until that point. Therefore, previously received timestamps are no longer relevant to the data being returned from the parser. Additionally, adds a test which remuxes an existing TrueHD sample

Re: [FFmpeg-devel] [PATCH] libavfilter: vf_scale: Properly take in->color_range into account

2022-03-06 Thread Martin Storsjö
On Sun, 6 Mar 2022, Michael Niedermayer wrote: On Sat, Mar 05, 2022 at 11:33:15PM +0200, Martin Storsjö wrote: On Fri, 4 Mar 2022, Michael Niedermayer wrote: On Thu, Mar 03, 2022 at 02:06:45PM +0200, Martin Storsjö wrote: While swscale can be reconfigured with sws_setColorspaceDetails, the i

[FFmpeg-devel] [PATCH v1] doc/examples/transcoding: set ret before goto end

2022-03-06 Thread sunzhenliang
Signed-off-by: sunzhenliang --- doc/examples/transcoding.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/doc/examples/transcoding.c b/doc/examples/transcoding.c index badfba62cb..24e64e572e 100644 --- a/doc/examples/transcoding.c +++ b/doc/examples/transcoding.c @@ -524,8