Re: [FFmpeg-devel] [PATCH] lavc/Makefile: fix make checkheaders fail

2022-08-05 Thread myp...@gmail.com
On Thu, Aug 4, 2022 at 6:34 PM Andreas Rheinhardt wrote: > > Jun Zhao: > > Fix the break when used libavcodec/Makefile > > > > Signed-off-by: Jun Zhao > > --- > > libavcodec/Makefile | 2 ++ > > 1 file changed, 2 insertions(+) > > > > diff --git a/libavcodec/Makefile b/libavcodec/Makefile > >

Re: [FFmpeg-devel] [PATCH v5 1/2] avformat: refactor ff_stream_encode_params_copy() to ff_stream_params_copy()

2022-08-05 Thread Pierre-Anthony Lemieux
On Thu, Aug 4, 2022 at 4:24 PM Pierre-Anthony Lemieux wrote: > > On Thu, Aug 4, 2022 at 4:13 PM Andreas Rheinhardt > wrote: > > > > Pierre-Anthony Lemieux: > > > On Thu, Aug 4, 2022 at 3:22 PM Andreas Rheinhardt > > > wrote: > > >> > > >> Pierre-Anthony Lemieux: > > >>> On Thu, Aug 4, 2022 at

[FFmpeg-devel] [PATCH v6 2/2] avformat/imfdec: preserve stream information

2022-08-05 Thread pal
From: Pierre-Anthony Lemieux --- libavformat/imfdec.c | 12 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/libavformat/imfdec.c b/libavformat/imfdec.c index 71dfb26958..5bbe7a53f8 100644 --- a/libavformat/imfdec.c +++ b/libavformat/imfdec.c @@ -573,18 +573,14 @@

[FFmpeg-devel] [PATCH v6 1/2] avformat: refactor ff_stream_encode_params_copy() to stream_params_copy()

2022-08-05 Thread pal
From: Pierre-Anthony Lemieux Addresses http://ffmpeg.org/pipermail/ffmpeg-devel/2022-August/299685.html --- libavformat/avformat.c | 68 libavformat/fifo.c | 8 ++--- libavformat/internal.h | 12 +++ libavformat/mux.h| 9 --

[FFmpeg-devel] [PATCH v4 3/3] ffmpeg: add video heartbeat capability to fix_sub_duration

2022-08-05 Thread Jan Ekström
From: Jan Ekström Splits the currently handled subtitle at random access point packets that can be configured to follow a specific output stream. This way the subtitle - which is known to be shown at this time can be split and passed to muxer before its full duration is yet known.

[FFmpeg-devel] [PATCH v4 2/3] ffmpeg: move decoded frame counter from after post-processing to decode

2022-08-05 Thread Jan Ekström
From: Jan Ekström This way we can call process_subtitles without causing the decoded frame counter to get bumped. Additionally, this now takes into mention all of the decoded subtitle frames without fix_sub_duration latency/buffering, or filtering out decoded reset/end subtitles without any

[FFmpeg-devel] [PATCH v4 1/3] ffmpeg: refactor post-decoding steps for subtitles into a function

2022-08-05 Thread Jan Ekström
From: Jan Ekström This enables us to later call this when generating additional subtitles for splitting purposes. Co-authored-by: Andrzej Nadachowski Signed-off-by: Jan Ekström --- fftools/ffmpeg.c | 50 1 file changed, 29 insertions(+), 21

Re: [FFmpeg-devel] [PATCH] avformat: allow .ec3 as extension for raw E-AC-3 stream

2022-08-05 Thread Rubén Gonzalez
Ok, thanks. On Thu, Aug 4, 2022 at 12:42 PM Anton Khirnov wrote: > Looks reasonable, will push soonish if nobody objects. > > -- > Anton Khirnov > ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [PATCH] checkasm: Silence warnings about unused return value from read()

2022-08-05 Thread Martin Storsjö
On Wed, 27 Jul 2022, Andreas Rheinhardt wrote: Swinney, Jonathan: This patch looks good to me. I would appreciate its merging. } while (0) #define PERF_STOP(t) do { \ +int ret;\ ioctl(sysfd,

Re: [FFmpeg-devel] [PATCH v1 2/2] lavfi/overlay_vaapi: Set defalut alpha value as 1.0

2022-08-05 Thread Wang, Fei W
On Wed, 2022-07-27 at 18:51 +0530, Gyan Doshi wrote: > Typo in title. > > > > On 2022-07-27 06:06 pm, Fei Wang wrote: > > Previous default value 0.0 means 100% transparency for overlaid > > video, > > which make overlaid invisible. Change to 1.0 will let output video > > much > > more clear and

[FFmpeg-devel] [PATCH v2 2/2] lavfi/overlay_vaapi: set defalut alpha value as 1.0

2022-08-05 Thread Fei Wang
The present default value of 0 will render the overlay video invisible. A default of 1.0 is consistent with most common use cases. Signed-off-by: Fei Wang --- doc/filters.texi | 2 +- libavfilter/vf_overlay_vaapi.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff

[FFmpeg-devel] [PATCH v2 1/2] doc/filters: correct description of overlay_vaapi

2022-08-05 Thread Fei Wang
Signed-off-by: Fei Wang --- update: 1. refine commit message and content in doc file. doc/filters.texi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/filters.texi b/doc/filters.texi index 4a5412c91d..a66b750d57 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@