Re: [FFmpeg-devel] [PATCH v7 01/10] lavc/avcodec: Add HEVC Screen Content Coding Extensions profile

2023-02-18 Thread Xiang, Haihao
On Do, 2023-02-16 at 13:46 +0800, Fei Wang wrote: > From: Linjie Fu > > Described in HEVC spec A.3.7. Bump minor version and add APIchanges > entry for new added profile. > > Signed-off-by: Linjie Fu > Signed-off-by: Fei Wang > --- > 1. fix warning of patchwork report for V6. > > doc/APIchan

Re: [FFmpeg-devel] [PATCH v3 1/3] hwcontext_d3d11va: add mutiple supported DXGI formats

2023-02-18 Thread Xiang, Haihao
On Do, 2023-02-16 at 01:30 +, Xiang, Haihao wrote: > On Di, 2023-02-14 at 10:45 +0800, Tong Wu wrote: > > Add support for VUYX, YUYV422, Y210, XV30, P012, Y212, XV36. > > > > The added formats work with qsv acceleration and will not have > > impact on d3d11va acceleration(-hwaccel d3d11va) sin

Re: [FFmpeg-devel] [PATCH 00/72] Implement support for Vulkan multiplane images and video decoding

2023-02-18 Thread Lynne
Feb 18, 2023, 20:03 by mich...@niedermayer.cc: > On Fri, Feb 17, 2023 at 04:43:50AM +0100, Lynne wrote: > >> This small patchset mostly rewrites Vulkan to enable using multiplane images, >> and implements video decode support. Also, many numerous bugs and issues >> were fixed, as well as having

[FFmpeg-devel] [PATCH 3/3] avcodec/wavarc: Check k

2023-02-18 Thread Michael Niedermayer
Fixes: Assertion failure Fixes: 55849/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_WAVARC_fuzzer-6590105973555200 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer --- libavcodec/wavarc.c | 4 1 file

[FFmpeg-devel] [PATCH 2/3] avformat/wavarc: Check if extradata has been fully read

2023-02-18 Thread Michael Niedermayer
Signed-off-by: Michael Niedermayer --- libavformat/wavarc.c | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libavformat/wavarc.c b/libavformat/wavarc.c index 208b723716..2b5d1b99eb 100644 --- a/libavformat/wavarc.c +++ b/libavformat/wavarc.c @@ -22,6 +22,7 @@ #include "li

[FFmpeg-devel] [PATCH 1/3] avcodec/ffv1dec: Check that num h/v slices is supported

2023-02-18 Thread Michael Niedermayer
Fixes: out of array access Fixes: 55597/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_FFV1_fuzzer-4898293416329216 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer --- libavcodec/ffv1dec.c | 5 + 1 fi

[FFmpeg-devel] [PATCH v2 1/4] avcodec/eac3dec: add detection of Atmos spatial extension profile

2023-02-18 Thread Marth64
Signed-off-by: Marth64 --- - Fix if() statement oversight libavcodec/ac3dec.c | 1 + libavcodec/ac3dec.h | 1 + libavcodec/ac3dec_float.c | 2 ++ libavcodec/avcodec.h | 2 ++ libavcodec/codec_desc.c | 1 + libavcodec/eac3dec.c | 11 ++- libavcodec/profiles.c

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

2023-02-18 Thread John Coiner
On Thu, Feb 16, 2023 at 7:36 PM Marton Balint wrote: > > > > 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

Re: [FFmpeg-devel] [PATCH v2 1/4] avcodec/eac3dec: add detection of Atmos spatial extension profile

2023-02-18 Thread Marth64
Embarrassing, good eye. Fixing now! On Sat, Feb 18, 2023 at 12:59 PM Hendrik Leppkes wrote: > On Sat, Feb 18, 2023 at 6:50 PM Marth64 wrote: > > > > Signed-off-by: Marth64 > > --- > > - Missed adding the profiles to actual codec descriptor in ac3dec_float > > - Formatting tidyness > > > > lib

Re: [FFmpeg-devel] [PATCH 00/72] Implement support for Vulkan multiplane images and video decoding

2023-02-18 Thread Michael Niedermayer
On Fri, Feb 17, 2023 at 04:43:50AM +0100, Lynne wrote: > This small patchset mostly rewrites Vulkan to enable using multiplane images, > and implements video decode support. Also, many numerous bugs and issues > were fixed, as well as having quite a lot of performance improvements. > > The patchse

Re: [FFmpeg-devel] [PATCH v2 1/4] avcodec/eac3dec: add detection of Atmos spatial extension profile

2023-02-18 Thread Hendrik Leppkes
On Sat, Feb 18, 2023 at 6:50 PM Marth64 wrote: > > Signed-off-by: Marth64 > --- > - Missed adding the profiles to actual codec descriptor in ac3dec_float > - Formatting tidyness > > libavcodec/ac3dec.c | 3 +++ > libavcodec/ac3dec.h | 1 + > libavcodec/ac3dec_float.c | 2 ++ > lib

[FFmpeg-devel] [PATCH v2 1/4] avcodec/eac3dec: add detection of Atmos spatial extension profile

2023-02-18 Thread Marth64
Signed-off-by: Marth64 --- - Missed adding the profiles to actual codec descriptor in ac3dec_float - Formatting tidyness libavcodec/ac3dec.c | 3 +++ libavcodec/ac3dec.h | 1 + libavcodec/ac3dec_float.c | 2 ++ libavcodec/avcodec.h | 2 ++ libavcodec/codec_desc.c | 1 + l

[FFmpeg-devel] [PATCH v2 2/4] avcodec/mlpdec: add detection of Atmos spatial extension profile in TrueHD

2023-02-18 Thread Marth64
Signed-off-by: Marth64 --- Tidied up formatting in mlpdec.c libavcodec/avcodec.h| 2 ++ libavcodec/codec_desc.c | 1 + libavcodec/mlpdec.c | 10 ++ libavcodec/profiles.c | 5 + libavcodec/profiles.h | 1 + 5 files changed, 19 insertions(+) diff --git a/libavcodec/avc

Re: [FFmpeg-devel] [PATCH v2 2/4] avcodec/mlpdec: add detection of Atmos spatial extension profile in TrueHD

2023-02-18 Thread Marth64
Good nit. Fix on the way, On Sat, Feb 18, 2023 at 10:50 AM Hendrik Leppkes wrote: > On Sat, Feb 18, 2023 at 2:15 AM Marth64 wrote: > > > > Signed-off-by: Marth64 > > --- > > libavcodec/avcodec.h| 2 ++ > > libavcodec/codec_desc.c | 1 + > > libavcodec/mlpdec.c | 11 +++ > >

Re: [FFmpeg-devel] [PATCH v2 2/4] avcodec/mlpdec: add detection of Atmos spatial extension profile in TrueHD

2023-02-18 Thread Hendrik Leppkes
On Sat, Feb 18, 2023 at 2:15 AM Marth64 wrote: > > Signed-off-by: Marth64 > --- > libavcodec/avcodec.h| 2 ++ > libavcodec/codec_desc.c | 1 + > libavcodec/mlpdec.c | 11 +++ > libavcodec/profiles.c | 5 + > libavcodec/profiles.h | 1 + > 5 files changed, 20 insertion

Re: [FFmpeg-devel] [PATCH v2 3/4] avcodec/dca_xll: add detection of DTS:X and DTS:X IMAX

2023-02-18 Thread Hendrik Leppkes
On Sat, Feb 18, 2023 at 2:15 AM Marth64 wrote: > > Signed-off-by: Marth64 > --- > libavcodec/avcodec.h | 15 +-- > libavcodec/dca_syncwords.h | 3 +++ > libavcodec/dca_xll.c | 26 +- > libavcodec/dca_xll.h | 3 +++ > libavcodec/profiles.c

Re: [FFmpeg-devel] [PATCH v2 1/4] avcodec/eac3dec: add detection of Atmos spatial extension profile

2023-02-18 Thread Hendrik Leppkes
On Sat, Feb 18, 2023 at 2:15 AM Marth64 wrote: > > Signed-off-by: Marth64 > --- Another thing I noticed, you should add the profiles to the eac3 decoder AVCodec in ac3_float.c ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mai

Re: [FFmpeg-devel] [PATCH v2 1/4] avcodec/eac3dec: add detection of Atmos spatial extension profile

2023-02-18 Thread Hendrik Leppkes
On Sat, Feb 18, 2023 at 2:15 AM Marth64 wrote: > > Signed-off-by: Marth64 > --- > libavcodec/ac3dec.c | 3 +++ > libavcodec/ac3dec.h | 1 + > libavcodec/avcodec.h| 2 ++ > libavcodec/codec_desc.c | 1 + > libavcodec/eac3dec.c| 11 ++- > libavcodec/profiles.c | 5 ++

Re: [FFmpeg-devel] [PATCH] lavc: deprecate avcodec_dct, av_fft, av_dct, av_rdft and av_mdct

2023-02-18 Thread Lynne
Feb 18, 2023, 14:58 by jamr...@gmail.com: > On 2/18/2023 10:45 AM, Lynne wrote: > >> Feb 18, 2023, 14:32 by jamr...@gmail.com: >> >>> On 2/18/2023 9:49 AM, Lynne wrote: >>> Feb 17, 2023, 19:45 by d...@lynne.ee: > Feb 17, 2023, 18:08 by jamr...@gmail.com: > >> On 2/17/2023 1:5

Re: [FFmpeg-devel] [PATCH] lavc: deprecate avcodec_dct, av_fft, av_dct, av_rdft and av_mdct

2023-02-18 Thread James Almer
On 2/18/2023 10:45 AM, Lynne wrote: Feb 18, 2023, 14:32 by jamr...@gmail.com: On 2/18/2023 9:49 AM, Lynne wrote: Feb 17, 2023, 19:45 by d...@lynne.ee: Feb 17, 2023, 18:08 by jamr...@gmail.com: On 2/17/2023 1:54 PM, Lynne wrote: This reverts commit 26cb36f35746fe6ef53688b119852bfa6d555f6

Re: [FFmpeg-devel] [PATCH] lavc: deprecate avcodec_dct, av_fft, av_dct, av_rdft and av_mdct

2023-02-18 Thread Lynne
Feb 18, 2023, 14:32 by jamr...@gmail.com: > On 2/18/2023 9:49 AM, Lynne wrote: > >> Feb 17, 2023, 19:45 by d...@lynne.ee: >> >>> Feb 17, 2023, 18:08 by jamr...@gmail.com: >>> On 2/17/2023 1:54 PM, Lynne wrote: > This reverts commit 26cb36f35746fe6ef53688b119852bfa6d555f62. >

Re: [FFmpeg-devel] [PATCH] lavc: deprecate avcodec_dct, av_fft, av_dct, av_rdft and av_mdct

2023-02-18 Thread James Almer
On 2/18/2023 9:49 AM, Lynne wrote: Feb 17, 2023, 19:45 by d...@lynne.ee: Feb 17, 2023, 18:08 by jamr...@gmail.com: On 2/17/2023 1:54 PM, Lynne wrote: This reverts commit 26cb36f35746fe6ef53688b119852bfa6d555f62. All filters and all codecs (except wmavoice) have been ported for the lavu/tx

Re: [FFmpeg-devel] [PATCH] lavc: deprecate avcodec_dct, av_fft, av_dct, av_rdft and av_mdct

2023-02-18 Thread James Almer
On 2/18/2023 8:52 AM, Lynne wrote: Feb 18, 2023, 01:00 by h.lepp...@gmail.com: On Fri, Feb 17, 2023 at 7:45 PM Lynne wrote: Feb 17, 2023, 18:08 by jamr...@gmail.com: On 2/17/2023 1:54 PM, Lynne wrote: This reverts commit 26cb36f35746fe6ef53688b119852bfa6d555f62. All filters and all cod

Re: [FFmpeg-devel] [PATCH] lavc: deprecate avcodec_dct, av_fft, av_dct, av_rdft and av_mdct

2023-02-18 Thread Lynne
Feb 17, 2023, 19:45 by d...@lynne.ee: > Feb 17, 2023, 18:08 by jamr...@gmail.com: > >> On 2/17/2023 1:54 PM, Lynne wrote: >> >>> This reverts commit 26cb36f35746fe6ef53688b119852bfa6d555f62. >>> >>> All filters and all codecs (except wmavoice) have been ported for the >>> lavu/tx API. >>> >>> The

[FFmpeg-devel] [PATCH] ffplay: port to lavu/tx

2023-02-18 Thread Lynne
This ports the last user of the avfft/avdct/avrdft API. Patch attached. >From 85dd7ac926d298217f3d57cd389351993a6ef39c Mon Sep 17 00:00:00 2001 From: Lynne Date: Sat, 18 Feb 2023 13:14:31 +0100 Subject: [PATCH] ffplay: port to lavu/tx --- fftools/ffplay.c | 42 +++--

Re: [FFmpeg-devel] [PATCH] lavc: deprecate avcodec_dct, av_fft, av_dct, av_rdft and av_mdct

2023-02-18 Thread Lynne
Feb 18, 2023, 01:00 by h.lepp...@gmail.com: > On Fri, Feb 17, 2023 at 7:45 PM Lynne wrote: > >> >> Feb 17, 2023, 18:08 by jamr...@gmail.com: >> >> > On 2/17/2023 1:54 PM, Lynne wrote: >> > >> >> This reverts commit 26cb36f35746fe6ef53688b119852bfa6d555f62. >> >> >> >> All filters and all codecs (

Re: [FFmpeg-devel] Hardware purchase request Apple M2

2023-02-18 Thread Neal Gompa
On Tue, Feb 7, 2023 at 4:41 PM Martin Storsjö wrote: > > Hi Devin, Thilo, > > On Tue, 7 Feb 2023, Thilo Borgmann wrote: > > > Am 07.02.23 um 21:19 schrieb Devin Heitmueller: > >> On Mon, Feb 6, 2023 at 6:24 AM Thilo Borgmann > >> wrote: > >>> Martin pointed out we don't need an M2 for FATE as the

Re: [FFmpeg-devel] [PATCH] configure: select subordinate formats for HLS

2023-02-18 Thread Gyan Doshi
On 2023-02-15 10:02 am, Gyan Doshi wrote: On 2023-02-14 02:16 pm, Gyan Doshi wrote: On 2023-02-11 06:06 pm, Gyan Doshi wrote: HLS segments may be MPEG-TS or fragmented MP4, so those (de)muxers are required for reading/writing HLS media segments. Fixes functionality with --disable-everyt