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 T

[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 de

[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 rend

[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. Co-authored-b

[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 -- l

[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 @@ stati

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 10

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 > > in