Re: [FFmpeg-devel] [PATCH 1/4] lavc/aarch64: new optimization for 8-bit hevc_epel_v

2023-10-26 Thread Logan.Lyu
Hi, I'm sorry that I missed the message from Michael on Oct 14th due to my negligence. And I missed submitting a commit that was earlier than these four commits, which caused the corrupted whitespace problem. Now I have recreated these patches. In addition, I rebased it to ensure that thes

Re: [FFmpeg-devel] [ANNOUNCE] upcoming GA vote

2023-10-26 Thread Thilo Borgmann via ffmpeg-devel
Am 25.10.23 um 21:31 schrieb Thilo Borgmann via ffmpeg-devel: Am 25.10.23 um 19:39 schrieb Rémi Denis-Courmont: Hi, Le 25 octobre 2023 18:52:31 GMT+03:00, Thilo Borgmann via ffmpeg-devel a écrit : Am 25.10.23 um 16:23 schrieb Thilo Borgmann via ffmpeg-devel: Am 25.10.23 um 16:22 schrieb Rém

Re: [FFmpeg-devel] [PATCH v2] avfilter/vidstab: add option for file format specification

2023-10-26 Thread Gyan Doshi
On 2023-10-25 08:41 pm, Gyan Doshi wrote: On 2023-10-22 05:26 pm, Gyan Doshi wrote: The vidstab library added support in Nov 2020 for writing/reading the transforms data in binary in addition to ASCII. The library default was changed to binary format but no changes were made to the AVfilter

Re: [FFmpeg-devel] [PATCH] avformat/hls: use av_strlcopy instead of strncpy

2023-10-26 Thread Andreas Rheinhardt
Leo Izen: > Avoids a -Wstringop-truncation warning by using av_strlcopy instead of > strncpy. > > Signed-off-by: Leo Izen > --- > libavformat/hls.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/libavformat/hls.c b/libavformat/hls.c > index f5f549b24d..076f92ecfb 10064

Re: [FFmpeg-devel] [ANNOUNCE] upcoming GA vote

2023-10-26 Thread Thilo Borgmann via ffmpeg-devel
Am 26.10.23 um 12:57 schrieb Andreas Rheinhardt: Thilo Borgmann via ffmpeg-devel: Hi, Am 24.10.23 um 23:15 schrieb Anton Khirnov: Hi all, as discussed at the dev meeting at VDD, we need to have a series of votes, the first of which concerns defining when is the GA voter list to be updated. As

Re: [FFmpeg-devel] [PATCH] avcodec/pngdec: various stylistic changes

2023-10-26 Thread Andreas Rheinhardt
Leo Izen: > Various parts of this file are restructured slightly for readability, > such as spacing in arithmetic operations, and putting `if (ret < 0)` > clauses on separate lines. > > Signed-off-by: Leo Izen > --- > libavcodec/pngdec.c | 241 +++- > 1 fi

Re: [FFmpeg-devel] [PATCH] avformat/hls: use av_strlcopy instead of strncpy

2023-10-26 Thread Leo Izen
On 10/26/23 06:54, Andreas Rheinhardt wrote: Leo Izen: Avoids a -Wstringop-truncation warning by using av_strlcopy instead of strncpy. Signed-off-by: Leo Izen --- libavformat/hls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/hls.c b/libavformat/hls.c inde

Re: [FFmpeg-devel] [PATCH] avformat/hls: use av_strlcopy instead of strncpy

2023-10-26 Thread Andreas Rheinhardt
Leo Izen: > On 10/26/23 06:54, Andreas Rheinhardt wrote: >> Leo Izen: >>> Avoids a -Wstringop-truncation warning by using av_strlcopy instead of >>> strncpy. >>> >>> Signed-off-by: Leo Izen >>> --- >>>   libavformat/hls.c | 2 +- >>>   1 file changed, 1 insertion(+), 1 deletion(-) >>> >>> diff --gi

Re: [FFmpeg-devel] [PATCH] avformat/hls: use av_strlcopy instead of strncpy

2023-10-26 Thread Leo Izen
On 10/26/23 07:32, Andreas Rheinhardt wrote: This case can't happen here, because it only copies "sizeof(rend->language) - langlen - 2" bytes at most from position where sizeof(rend->language) - langlen - 1 are available, so the initial trailing \0 never gets touched. You did not touch the siz

[FFmpeg-devel] [PATCH 1/5] avfilter/drawutils: ban XYZ formats

2023-10-26 Thread Niklas Haas
From: Niklas Haas These are not supported by the drawing functions at all, and were incorrectly advertised as supported in the past. --- libavfilter/drawutils.c | 3 +++ tests/ref/fate/filter-pixfmts-pad | 1 - 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/libavfilter/d

[FFmpeg-devel] [PATCH 2/5] avutil/pixdesc: add AV_PIX_FMT_FLAG_XYZ

2023-10-26 Thread Niklas Haas
From: Niklas Haas There are already several places in the codebase that match desc->name against "xyz", and many downstream clients replicate this behavior. I have no idea why this is not just a flag. Motivated by my desire to add yet another check for XYZ to the codebase, and I'd rather not kee

[FFmpeg-devel] [PATCH 3/5] avfilter/drawutils: simplify xyz format check

2023-10-26 Thread Niklas Haas
From: Niklas Haas --- libavfilter/drawutils.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/libavfilter/drawutils.c b/libavfilter/drawutils.c index c31ab6bd5a..1081938d86 100644 --- a/libavfilter/drawutils.c +++ b/libavfilter/drawutils.c @@ -22,7 +22,6 @@ #include #include "libavuti

[FFmpeg-devel] [PATCH 4/5] avutil/pixdesc: simplify xyz pixfmt check

2023-10-26 Thread Niklas Haas
From: Niklas Haas --- libavutil/pixdesc.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libavutil/pixdesc.c b/libavutil/pixdesc.c index f2647d3d55..4e4a63e287 100644 --- a/libavutil/pixdesc.c +++ b/libavutil/pixdesc.c @@ -3055,13 +3055,13 @@ static int get_color_typ

[FFmpeg-devel] [PATCH 5/5] avformat/vf_vapoursynth: simplify xyz format check

2023-10-26 Thread Niklas Haas
From: Niklas Haas --- libavformat/vapoursynth.c | 6 ++ 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/libavformat/vapoursynth.c b/libavformat/vapoursynth.c index 965d36dc2e..b79ecfcf1b 100644 --- a/libavformat/vapoursynth.c +++ b/libavformat/vapoursynth.c @@ -118,7 +118,8 @@

Re: [FFmpeg-devel] [PATCH 3/5] avfilter/drawutils: simplify xyz format check

2023-10-26 Thread Nicolas George
Niklas Haas (12023-10-26): > From: Niklas Haas > > --- > libavfilter/drawutils.c | 3 --- > 1 file changed, 3 deletions(-) Please merge this with patch 1. Regards, -- Nicolas George ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ff

Re: [FFmpeg-devel] [PATCH v3] avcodec/dovi_rpu: verify RPU data CRC32

2023-10-26 Thread quietvoid
On 09/08/2023 13.46, quietvoid wrote: The Dolby Vision RPU contains a CRC32 to validate the payload against. The implementation is CRC32/MPEG-2. The CRC is only verified with the AV_EF_CRCCHECK flag. Signed-off-by: quietvoid --- libavcodec/dovi_rpu.c | 46 +++

Re: [FFmpeg-devel] [PATCH 3/5] avfilter/drawutils: simplify xyz format check

2023-10-26 Thread Nicolas George
James Almer (12023-10-26): > This patch reverts patch 1, so merging is basically just dropping both. > I assume the reason he did things this way is to prevent patch 2 (an avutil > patch adding new API) from changing the output filter-pixfmts-pad. Oh, I read the commit message while your read the

Re: [FFmpeg-devel] [PATCH 3/5] avfilter/drawutils: simplify xyz format check

2023-10-26 Thread Niklas Haas
On Thu, 26 Oct 2023 10:13:03 -0300 James Almer wrote: > On 10/26/2023 9:23 AM, Nicolas George wrote: > > Niklas Haas (12023-10-26): > >> From: Niklas Haas > >> > >> --- > >> libavfilter/drawutils.c | 3 --- > >> 1 file changed, 3 deletions(-) > > > > Please merge this with patch 1. > > This

Re: [FFmpeg-devel] [PATCH 3/5] avfilter/drawutils: simplify xyz format check

2023-10-26 Thread epirat07
On 26 Oct 2023, at 16:05, Niklas Haas wrote: > On Thu, 26 Oct 2023 10:13:03 -0300 James Almer wrote: >> On 10/26/2023 9:23 AM, Nicolas George wrote: >>> Niklas Haas (12023-10-26): From: Niklas Haas --- libavfilter/drawutils.c | 3 --- 1 file changed, 3 deletions(-)

[FFmpeg-devel] [PATCH v2 1/5] avfilter/drawutils: ban XYZ formats

2023-10-26 Thread Niklas Haas
From: Niklas Haas These are not supported by the drawing functions at all, and were incorrectly advertised as supported in the past. Note: This check is added only to separate the logic change from the API change in the following commit, and will be removed again after it becomes redundant. ---

[FFmpeg-devel] [PATCH v2 2/5] avutil/pixdesc: add AV_PIX_FMT_FLAG_XYZ

2023-10-26 Thread Niklas Haas
From: Niklas Haas There are already several places in the codebase that match desc->name against "xyz", and many downstream clients replicate this behavior. I have no idea why this is not just a flag. Motivated by my desire to add yet another check for XYZ to the codebase, and I'd rather not kee

[FFmpeg-devel] [PATCH v2 3/5] avfilter/drawutils: remove redundant xyz format check

2023-10-26 Thread Niklas Haas
From: Niklas Haas The code above this does a whitelist on desc->flags, which now includes the (disallowed) AV_PIX_FMT_FLAG_XYZ for XYZ formats. So there is no more need for a separate check, here. --- libavfilter/drawutils.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/libavfilter/drawu

[FFmpeg-devel] [PATCH v2 4/5] avutil/pixdesc: simplify xyz pixfmt check

2023-10-26 Thread Niklas Haas
From: Niklas Haas --- libavutil/pixdesc.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libavutil/pixdesc.c b/libavutil/pixdesc.c index f2647d3d55..4e4a63e287 100644 --- a/libavutil/pixdesc.c +++ b/libavutil/pixdesc.c @@ -3055,13 +3055,13 @@ static int get_color_typ

[FFmpeg-devel] [PATCH v2 5/5] avformat/vf_vapoursynth: simplify xyz format check

2023-10-26 Thread Niklas Haas
From: Niklas Haas --- libavformat/vapoursynth.c | 6 ++ 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/libavformat/vapoursynth.c b/libavformat/vapoursynth.c index 965d36dc2e..b79ecfcf1b 100644 --- a/libavformat/vapoursynth.c +++ b/libavformat/vapoursynth.c @@ -118,7 +118,8 @@

Re: [FFmpeg-devel] trac spam

2023-10-26 Thread Michael Koch
please delete: comment 12 in ticket 1920 user ""willow" I have updated the regex filter so that it should match all combinations of two keywords, in both orders. Michael ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailma

[FFmpeg-devel] [RFC] financial sustainability Plan A (SPI)

2023-10-26 Thread Michael Niedermayer
Hi all Many developers no longer live with their parents. The subject of financial sustainability has come up many times and also increasingly each year This is financial sustainability Plan A (SPI) ATM SPI has like 150k $, we do not activly seek donations, we do not currently use SPI money to fu

[FFmpeg-devel] [PATCH] lavu/riscv: fix typo

2023-10-26 Thread Rémi Denis-Courmont
--- libavutil/riscv/cpu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavutil/riscv/cpu.c b/libavutil/riscv/cpu.c index fa45c0ad83..460d3e9f91 100644 --- a/libavutil/riscv/cpu.c +++ b/libavutil/riscv/cpu.c @@ -67,7 +67,7 @@ int ff_get_cpu_flags_riscv(void) #endif

Re: [FFmpeg-devel] [PATCH] lavu/riscv: fix typo

2023-10-26 Thread Sean McGovern
On Thu, Oct 26, 2023, 12:05 Rémi Denis-Courmont wrote: > --- > libavutil/riscv/cpu.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/libavutil/riscv/cpu.c b/libavutil/riscv/cpu.c > index fa45c0ad83..460d3e9f91 100644 > --- a/libavutil/riscv/cpu.c > +++ b/libavutil/riscv/

Re: [FFmpeg-devel] [PATCH v2 1/3] avutil/channel_layout: rename 7.1(top) channel layout to 5.1.2

2023-10-26 Thread James Almer
On 10/23/2023 9:33 PM, James Almer wrote: This layout maps to ITU-R BS.2051-3 "Sound System C" and ITU-R BS.1196-8 "Channel Configuration 14", and it being the first layout with top layer channels, it's best to use a different scheme to properly convey the presence and amount of said channels.

Re: [FFmpeg-devel] [ANNOUNCE] upcoming GA vote

2023-10-26 Thread Derek Buitenhuis
On 10/25/2023 2:14 PM, Thilo Borgmann via ffmpeg-devel wrote: > To test the voting beforehand this time, I created a test vote with a fake-GA > member list. All of the following people should have received a corresponding > mail. If you are part of this list, but did not receive an email, check y

Re: [FFmpeg-devel] [RFC] financial sustainability Plan A (SPI)

2023-10-26 Thread Kieran Kunhya
> > * If you have some flashy FFmpeg project you want to work on with a cost of > between 5-15k $ then propose it on the mailing list, make yourself ready > for > some paperwork complexities and some public debate as thats the first > time we > try this, there will be extra issues likely. And

Re: [FFmpeg-devel] [PATCH] avcodec/pngdec: various stylistic changes

2023-10-26 Thread Michael Niedermayer
On Tue, Oct 24, 2023 at 07:13:14AM -0400, Leo Izen wrote: > Various parts of this file are restructured slightly for readability, > such as spacing in arithmetic operations, and putting `if (ret < 0)` > clauses on separate lines. > > Signed-off-by: Leo Izen > --- > libavcodec/pngdec.c | 241

Re: [FFmpeg-devel] [ANNOUNCE] upcoming GA vote

2023-10-26 Thread Vittorio Giovara
On Thu, Oct 26, 2023 at 11:59 AM Derek Buitenhuis < derek.buitenh...@gmail.com> wrote: > On 10/25/2023 2:14 PM, Thilo Borgmann via ffmpeg-devel wrote: > > To test the voting beforehand this time, I created a test vote with a > fake-GA member list. All of the following people should have received a

Re: [FFmpeg-devel] [RFC] financial sustainability Plan A (SPI)

2023-10-26 Thread Thilo Borgmann via ffmpeg-devel
Am 26.10.23 um 21:02 schrieb Kieran Kunhya: * If you have some flashy FFmpeg project you want to work on with a cost of between 5-15k $ then propose it on the mailing list, make yourself ready for some paperwork complexities and some public debate as thats the first time we try this, th

Re: [FFmpeg-devel] [PATCH 1/4] avcodec/jpeg2000dec: Check image offset

2023-10-26 Thread Michael Niedermayer
On Wed, Oct 25, 2023 at 09:20:09PM +0200, Tomas Härdin wrote: > On Thu, 2023-10-05 at 00:59 +0200, Michael Niedermayer wrote: > > Fixes: left shift of negative value -538967841 > > Fixes: 62447/clusterfuzz-testcase-minimized- > > ffmpeg_AV_CODEC_ID_JPEG2000_fuzzer-6427134337613824 > > > > Found-by

Re: [FFmpeg-devel] trac spam

2023-10-26 Thread Michael Niedermayer
On Thu, Oct 26, 2023 at 04:37:00PM +0200, Michael Koch wrote: > please delete: > comment 12 in ticket 1920 > user ""willow" done [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB No human being will ever know the Truth, for even if they happen to say it by chance,

Re: [FFmpeg-devel] [PATCH 1/4] avcodec/magicyuv: Use a compile time constant for vlc_bits

2023-10-26 Thread Andreas Rheinhardt
Michael Niedermayer: > This will permit further optimizations > > Signed-off-by: Michael Niedermayer > --- > libavcodec/magicyuv.c | 5 ++--- > 1 file changed, 2 insertions(+), 3 deletions(-) > > diff --git a/libavcodec/magicyuv.c b/libavcodec/magicyuv.c > index 4a143cdbbf7..78d7f44cd65 100644

Re: [FFmpeg-devel] [PATCH 1/2] aarch64: Simplify the linux runtime cpu detection code

2023-10-26 Thread Sean McGovern
On Tue, Oct 24, 2023 at 8:40 AM Sean McGovern wrote: > > > > On Tue, Oct 24, 2023, 08:23 Martin Storsjö wrote: >> >> Skip doing the whole getauxval(AT_HWCAP) if HWCAP_CPUID isn't >> defined. >> --- >> libavutil/aarch64/cpu.c | 6 +- >> 1 file changed, 1 insertion(+), 5 deletions(-) >> >> dif

Re: [FFmpeg-devel] [PATCH 1/2] aarch64: Simplify the linux runtime cpu detection code

2023-10-26 Thread Sean McGovern
On Thu, Oct 26, 2023 at 5:40 PM Sean McGovern wrote: > > On Tue, Oct 24, 2023 at 8:40 AM Sean McGovern wrote: > > > > > > > > On Tue, Oct 24, 2023, 08:23 Martin Storsjö wrote: > >> > >> Skip doing the whole getauxval(AT_HWCAP) if HWCAP_CPUID isn't > >> defined. > >> --- > >> libavutil/aarch64/c

Re: [FFmpeg-devel] [PATCH v3] avcodec/dovi_rpu: verify RPU data CRC32

2023-10-26 Thread Michael Niedermayer
On Wed, Aug 09, 2023 at 01:46:57PM -0400, quietvoid wrote: > The Dolby Vision RPU contains a CRC32 to validate the payload against. > The implementation is CRC32/MPEG-2. > > The CRC is only verified with the AV_EF_CRCCHECK flag. > > Signed-off-by: quietvoid > --- > libavcodec/dovi_rpu.c | 46 ++

Re: [FFmpeg-devel] [PATCH 1/9] avcodec/vlc: merge lost 16bit end of array check

2023-10-26 Thread Michael Niedermayer
On Sun, Oct 22, 2023 at 11:51:05PM +0200, Michael Niedermayer wrote: > Also cleanup related code > > Signed-off-by: Michael Niedermayer > --- > libavcodec/vlc.c | 8 > 1 file changed, 4 insertions(+), 4 deletions(-) will apply patches 1 and 2 [...] -- Michael GnuPG fingerprint: 9

Re: [FFmpeg-devel] [PATCH 1/3] avcodec/bitstream_template: Basic documentation for read_vlc_multi()

2023-10-26 Thread Michael Niedermayer
On Sun, Oct 22, 2023 at 05:39:49PM +0200, Michael Niedermayer wrote: > Signed-off-by: Michael Niedermayer > --- > libavcodec/bitstream_template.h | 15 ++- > 1 file changed, 14 insertions(+), 1 deletion(-) will apply patchset, dont want to leave this open [...] -- Michael GnuP

[FFmpeg-devel] [PATCH] Add init_program_date_time so start time can be specified

2023-10-26 Thread Dave Johansen
--- doc/muxers.texi | 3 +++ libavformat/hlsenc.c | 41 + 2 files changed, 28 insertions(+), 16 deletions(-) diff --git a/doc/muxers.texi b/doc/muxers.texi index f6071484ff..87c19a5cb9 100644 --- a/doc/muxers.texi +++ b/doc/muxers.texi @@ -1086,6 +108

Re: [FFmpeg-devel] [RFC] financial sustainability Plan A (SPI)

2023-10-26 Thread Kieran Kunhya
Hi, On Thu, 26 Oct 2023 at 12:41, Thilo Borgmann via ffmpeg-devel < ffmpeg-devel@ffmpeg.org> wrote: > Of course. FFmpeg has a donations account. So the money is already there > and > already used for the reimbursement requests. Whatever we spent it for > needs to > be decided by the community. Sp

[FFmpeg-devel] [PATCH] avformat/hlsenc: Add CHANNELS to EXT-X-MEDIA for Audio

2023-10-26 Thread Dave Johansen
--- libavformat/dashenc.c | 3 ++- libavformat/hlsenc.c | 8 +++- libavformat/hlsplaylist.c | 5 - libavformat/hlsplaylist.h | 2 +- 4 files changed, 14 insertions(+), 4 deletions(-) diff --git a/libavformat/dashenc.c b/libavformat/dashenc.c index 96f4a5fbdf..15f700acbc 100644 --

Re: [FFmpeg-devel] [PATCH] avformat/hlsenc: Add CHANNELS to EXT-X-MEDIA for Audio

2023-10-26 Thread Steven Liu
Dave Johansen 于2023年10月27日周五 09:44写道: > > --- > libavformat/dashenc.c | 3 ++- > libavformat/hlsenc.c | 8 +++- > libavformat/hlsplaylist.c | 5 - > libavformat/hlsplaylist.h | 2 +- > 4 files changed, 14 insertions(+), 4 deletions(-) > > diff --git a/libavformat/dashenc.c b/liba

Re: [FFmpeg-devel] [PATCH 2/4] avcodec/get_bits: Avoid 2nd bitstream read in GET_VLC() if bits are known at build and small

2023-10-26 Thread Andreas Rheinhardt
Michael Niedermayer: > Signed-off-by: Michael Niedermayer > --- > libavcodec/get_bits.h | 8 ++-- > 1 file changed, 6 insertions(+), 2 deletions(-) > > diff --git a/libavcodec/get_bits.h b/libavcodec/get_bits.h > index cfcf97c021c..86cea00494a 100644 > --- a/libavcodec/get_bits.h > +++ b/lib

[FFmpeg-devel] [PATCH] avutil/hwcontext_vulkan: fix memleak when device_create is skipped

2023-10-26 Thread Zhao Zhili
From: Zhao Zhili --- libavutil/hwcontext_vulkan.c | 17 ++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/libavutil/hwcontext_vulkan.c b/libavutil/hwcontext_vulkan.c index 4adcc0e839..8dd40cb66f 100644 --- a/libavutil/hwcontext_vulkan.c +++ b/libavutil/hwcontext_vu

[FFmpeg-devel] [PATCH 1/4] avformat/hlsenc: Add init_program_date_time so start time can be specified

2023-10-26 Thread Dave Johansen
--- doc/muxers.texi | 3 +++ libavformat/hlsenc.c | 41 + 2 files changed, 28 insertions(+), 16 deletions(-) diff --git a/doc/muxers.texi b/doc/muxers.texi index f6071484ff..87c19a5cb9 100644 --- a/doc/muxers.texi +++ b/doc/muxers.texi @@ -1086,6 +108

[FFmpeg-devel] [PATCH 2/4] avformat/hlsenc: Add strftime_prog for using PROGRAM-DATE-TIME in the segment filename

2023-10-26 Thread Dave Johansen
--- libavformat/hlsenc.c | 36 ++-- 1 file changed, 30 insertions(+), 6 deletions(-) diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index 5dfff6b2b6..24a0304f78 100644 --- a/libavformat/hlsenc.c +++ b/libavformat/hlsenc.c @@ -159,6 +159,7 @@ typedef struc

[FFmpeg-devel] [PATCH 3/4] avformat/hlsenc: Fix name of flag in error message

2023-10-26 Thread Dave Johansen
--- libavformat/hlsenc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index 24a0304f78..93c47b631b 100644 --- a/libavformat/hlsenc.c +++ b/libavformat/hlsenc.c @@ -1013,7 +1013,7 @@ static int sls_flags_filename_process(struct

[FFmpeg-devel] [PATCH 4/4] avformat/hlsenc: Add second_level_segment_microsecond for using %%f to specify microseconds of time in segment filename

2023-10-26 Thread Dave Johansen
--- libavformat/hlsenc.c | 51 +--- 1 file changed, 48 insertions(+), 3 deletions(-) diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index 93c47b631b..f613e35984 100644 --- a/libavformat/hlsenc.c +++ b/libavformat/hlsenc.c @@ -103,6 +103,7 @@ typed

Re: [FFmpeg-devel] [PATCH] Add init_program_date_time so start time can be specified

2023-10-26 Thread David Johansen
On Thu, Oct 26, 2023 at 7:12 PM Dave Johansen wrote: > --- > doc/muxers.texi | 3 +++ > libavformat/hlsenc.c | 41 + > 2 files changed, 28 insertions(+), 16 deletions(-) > I submitted a revised set of patches with additional features with this as th

Re: [FFmpeg-devel] [PATCH] avformat/hlsenc: Add CHANNELS to EXT-X-MEDIA for Audio

2023-10-26 Thread David Johansen
> > LGTM > > > Thanks > Steven > I'm new to ffmpeg development so what's the process for this to be merged? Do I need to do something or is it taken care of by a different process/someone else? Thanks, Dave ___ ffmpeg-devel mailing list ffmpeg-devel@ffm

Re: [FFmpeg-devel] [PATCH] avutil/hwcontext_vulkan: fix memleak when device_create is skipped

2023-10-26 Thread Lynne
Oct 27, 2023, 05:53 by quinkbl...@foxmail.com: > From: Zhao Zhili > > --- > libavutil/hwcontext_vulkan.c | 17 ++--- > 1 file changed, 14 insertions(+), 3 deletions(-) > > diff --git a/libavutil/hwcontext_vulkan.c b/libavutil/hwcontext_vulkan.c > index 4adcc0e839..8dd40cb66f 100644 >