Re: [FFmpeg-devel] [PATCH v2 2/4] avformat/hls: relay programs to child muxers

2023-02-16 Thread Gyan Doshi
On 2023-02-16 12:27 pm, Andreas Rheinhardt wrote: Gyan Doshi: --- libavformat/hlsenc.c | 6 ++ 1 file changed, 6 insertions(+) diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index 39df9becc7..0b66efad3e 100644 --- a/libavformat/hlsenc.c +++ b/libavformat/hlsenc.c @@ -907,6 +

Re: [FFmpeg-devel] [PATCH v14 9/9] avcodec/evc: Changes in Changelog and MAINTAINERS files

2023-02-16 Thread Dawid Kozinski/Multimedia (PLT) /SRPOL/Staff Engineer/Samsung Electronics
> -Original Message- > From: ffmpeg-devel On Behalf Of Kieran > Kunhya > Sent: środa, 15 lutego 2023 14:05 > To: FFmpeg development discussions and patches > Subject: Re: [FFmpeg-devel] [PATCH v14 9/9] avcodec/evc: Changes in > Changelog and MAINTAINERS files > > On Wed, 15 Feb 2023

[FFmpeg-devel] Patch: avformat_index_get_entry and avformat_index_get_entry_from_timestamp const correctness

2023-02-16 Thread Martijn Otto
With this patch it's now possible to call avformat_index_get_entry and avformat_index_get_entry_from_timestamp with a const-qualified AVStream. From cbf7880c230ccff35b8b6d1fab192a07c6083307 Mon Sep 17 00:00:00 2001 From: Martijn Otto Date: Mon, 7 Nov 2022 16:06:30 +0100 Subject: [PATCH] avformat

Re: [FFmpeg-devel] [PATCH 1/6] avformat/s337m: Split read_packet/get_packet

2023-02-16 Thread Tomas Härdin
mån 2023-02-13 klockan 19:09 +0100 skrev Nicolas Gaullier: > Prepare use of s337m_get_packet from outside. > --- >  libavformat/s337m.c | 24 >  libavformat/s337m.h | 37 + >  2 files changed, 57 insertions(+), 4 deletions(-) >  create mode

Re: [FFmpeg-devel] [PATCH 2/6] avformat/s337m: Consider container bit resolution

2023-02-16 Thread Tomas Härdin
mån 2023-02-13 klockan 19:09 +0100 skrev Nicolas Gaullier: > Prepare the support of s337m in muxers other than raw (ex: wav). > For example, this forbids reading 16 bits DolbyE stream from a 24 bit > wav file. > --- >  libavformat/s337m.c | 21 +++-- >  libavformat/s337m.h |  3 ++- >

Re: [FFmpeg-devel] [PATCH 3/6] avformat/s337m: New ff_s337m_probe()

2023-02-16 Thread Tomas Härdin
mån 2023-02-13 klockan 19:09 +0100 skrev Nicolas Gaullier: > +    do { > +    uint64_t state; > +    int data_type, data_size, offset; > +    while (pos < size - 12 && !buf[pos]) { > +    pos++; > +    } > +    if (pos >= size - 12 || pos < > S337M_PROBE_GUARDBAND_MIN_BY

Re: [FFmpeg-devel] [PATCH 4/6] avformat/wavdec: s337m support

2023-02-16 Thread Tomas Härdin
mån 2023-02-13 klockan 19:09 +0100 skrev Nicolas Gaullier: > +#if CONFIG_S337M_DEMUXER > +    {"non_pcm_mode", "Chooses what to do with s337m", > OFFSET(non_pcm_mode), AV_OPT_TYPE_INT, {.i64 = 1}, 0, 1, DEC, > "non_pcm_mode"}, > +    {"copy"    , "Pass s337m through unchanged", 0, > AV_OPT_TYPE

Re: [FFmpeg-devel] [PATCH] avformat/cdg: add probe

2023-02-16 Thread Tomas Härdin
tis 2023-02-14 klockan 22:27 +0100 skrev Paul B Mahol: > Patch attached. Looks OK /Tomas ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-req

Re: [FFmpeg-devel] [PATCH] ffprobe/eac3/mlp/dca: add detection of spatial audio extensions

2023-02-16 Thread Hendrik Leppkes
On Sun, Feb 12, 2023 at 1:53 AM Marth64 wrote: > diff --git a/libavcodec/dca_syncwords.h b/libavcodec/dca_syncwords.h > index 4d2cd5f56d..200702f89e 100644 > --- a/libavcodec/dca_syncwords.h > +++ b/libavcodec/dca_syncwords.h > @@ -33,4 +33,7 @@ > #defineDCA_SYNCWORD_SUBSTREAM_CORE 0x02

[FFmpeg-devel] [PATCH] hwcontext_vaapi: Add support for vaGetDisplayWin32 initialization

2023-02-16 Thread Sil Vilerino
These changes add support for VAAPI on Windows in hwcontext_vaapi using vaGetDisplayWin32, also allowing for DirectX adapter index selection via the "-device" command line argument. Libva 2.17+ adds a new libva-win32 node and Mesa 22.3 adds a VAAPI driver based on Direct3D 12 for Windows, both ava

[FFmpeg-devel] Trac votes and priority

2023-02-16 Thread Michael Niedermayer
Hi Trac allows users to vote for tickets, should we bump tickets priority to important once they surpass some threshold of votes ? Should there be a difference betweem defects and enhancements ? Heres the list of tickets sorted by the number of votes https://trac.ffmpeg.org/report/11 Thanks --

Re: [FFmpeg-devel] [PATCH] ffprobe/eac3/mlp/dca: add detection of spatial audio extensions

2023-02-16 Thread Marth64
Hi Hendrik, Thank you for taking the time to help me test this. I will verify this as well on my corpus of 15 or so titles and commit/sign if it passes there too. Will update within 24. Respectfully, Marth64 On Thu, Feb 16, 2023 at 06:37 Hendrik Leppkes wrote: > On Sun, Feb 12, 2023 at 1:53 AM

Re: [FFmpeg-devel] [PATCH] libavutil/log: Support for logging timestamps in the log

2023-02-16 Thread Prakash
Moved the timestamp to the front (before loglevel but after the prefix if present, so the timestamp has the same color as log line based on log level). Updated the patch and attached again. >From 04857a7bf0d4cf24a479e795a55a61ab2e2f618e Mon Sep 17 00:00:00 2001 From: Prakash Duggaraju Date: Thu

Re: [FFmpeg-devel] [PATCH v2] libavformat/mpegtsenc.c: correctly re-emit extradata ahead of IDR pictures

2023-02-16 Thread Marton Balint
On Sun, 12 Feb 2023, John Coiner wrote: This is v2 of the patch for https://trac.ffmpeg.org/ticket/10148. It implements the handling described at http://ffmpeg.org/pipermail/ffmpeg-devel/2023-February/306542.html, that is: * If we receive [AUD][IDR], we emit [AUD][SPS][PPS][IDR] * If we re

Re: [FFmpeg-devel] FFmpeg 6.0

2023-02-16 Thread Lynne
Feb 16, 2023, 00:14 by mich...@niedermayer.cc: > On Fri, Feb 10, 2023 at 07:50:29PM +0100, Lynne wrote: > >> Feb 10, 2023, 18:47 by mich...@niedermayer.cc: >> >> > Hi all >> > >> > i plan to branch off release/6.0 from master in the next days >> > If theres something blocking and i should wait, p

[FFmpeg-devel] [PATCH] ffprobe/eac3/mlp/dca: add detection of spatial audio extensions

2023-02-16 Thread Marth64
Signed-off-by: Marth64 --- - Align to dword and use more exact syncwords for DTS:X detection libavcodec/ac3dec.c| 4 libavcodec/ac3dec.h| 1 + libavcodec/avcodec.h | 18 -- libavcodec/codec_desc.c| 2 ++ libavcodec/dca_syncwords.h | 3 +++ libav