Re: [FFmpeg-devel] [PATCH] avutil/pixfmt: fix AV_PIX_FMT_RGB8 description

2024-01-14 Thread Stefano Sabatini
On date Monday 2024-01-08 09:53:37 -0500, Jeffrey Knockel wrote: > Previously the description was partially mistaken, explaining the format > as RGB 3:3:2, (msb)2R 3G 3B(lsb). While the RGB 3:3:2 part is correct, > the latter part should be: (msb)3R 3G 2B(lsb). The corresponding bit > masks are re

Re: [FFmpeg-devel] [PATCH] libavformat/adxdec: remove erroneous whitespace

2024-01-14 Thread Stefano Sabatini
On date Thursday 2024-01-11 15:55:05 -0600, Marth64 wrote: > 25th anniversary of the Dreamcast this year. Will follow up with FATE test. > > Signed-off-by: Marth64 > --- > libavformat/adxdec.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/libavformat/adxdec.c b/libavf

Re: [FFmpeg-devel] [PATCH] fate/audio: add ADX demux and decode test

2024-01-14 Thread Stefano Sabatini
On date Thursday 2024-01-11 16:01:57 -0600, Marth64 wrote: > Necessary samples to fate-samples/adx : > https://ufile.io/f/v306q > > Samples are re-encodes of luckynight from FATE suite. > d3a67e1d21bbaa7afc8e3bd089545ad44685e0c7a4212a75f7d115b0b8d656eb > luckynight.adx > f994367773da8cadc5a41d7e

Re: [FFmpeg-devel] [PATCH] libavutil/timecode: fix parameter order in documentation

2024-01-14 Thread Stefano Sabatini
On date Friday 2024-01-12 17:47:02 -0600, Marth64 wrote: > Signed-off-by: Marth64 > --- > libavutil/timecode.h | 14 +++--- > 1 file changed, 7 insertions(+), 7 deletions(-) Will apply, thanks. ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.

Re: [FFmpeg-devel] [PATCH] doc/codecs: -channel_layout -> should be -ch_layout

2024-01-14 Thread Stefano Sabatini
On date Friday 2024-01-12 17:51:26 -0600, Marth64 wrote: > Signed-off-by: Marth64 > --- > doc/codecs.texi | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/doc/codecs.texi b/doc/codecs.texi > index 6bdeb664e7..ca8c08a59f 100644 > --- a/doc/codecs.texi > +++ b/doc/codecs.te

Re: [FFmpeg-devel] [PATCH 4/4] doc/muxers/avi: apply misc changes

2024-01-14 Thread Stefano Sabatini
On date Wednesday 2024-01-10 15:58:42 -0600, Marth64 wrote: > LGTM Thanks, applied this and the other doc/muxers pending patches. ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visi

Re: [FFmpeg-devel] [PATCH] avutil/eval: Use even better PRNG

2024-01-14 Thread Stefano Sabatini
On date Saturday 2024-01-13 04:51:06 +0100, Michael Niedermayer wrote: > This is the 64bit version of Chris Doty-Humphreys SFC64 > > Compared to the LCGs these produce much better quality numbers. > Compared to LFGs this needs less state. (our LFG has 224 byte > state for its 32bit version) this h

Re: [FFmpeg-devel] [PATCH v3] libavformat: add RCWT closed caption muxer

2024-01-14 Thread Stefano Sabatini
On date Sunday 2024-01-07 16:24:07 +0100, Stefano Sabatini wrote: > On date Sunday 2024-01-07 09:07:01 -0600, Marth64 wrote: > > Thanks, long night. Should come together nicer now. > > > > Signed-off-by: Marth64 > > --- > > Changelog| 1 + > > doc/muxers.texi | 22 +++

Re: [FFmpeg-devel] [PATCH] avutil/pixfmt: fix AV_PIX_FMT_RGB8 description

2024-01-14 Thread Jeffrey Knockel
On 1/14/24 6:32 AM, Stefano Sabatini wrote: > On date Monday 2024-01-08 09:53:37 -0500, Jeffrey Knockel wrote: >> Previously the description was partially mistaken, explaining the format >> as RGB 3:3:2, (msb)2R 3G 3B(lsb). While the RGB 3:3:2 part is correct, >> the latter part should be: (msb)3R

[FFmpeg-devel] [PATCH v2] avutil/pixfmt: fix AV_PIX_FMT_RGB8 description

2024-01-14 Thread Jeffrey Knockel
Previously AV_PIX_FMT_RGB8 was documented as "RGB 3:3:2, (msb)2R 3G 3B(lsb)". While the RGB 3:3:2 part is correct, the latter part should be: (msb)3R 3G 2B(lsb). This commit also updates the format's pixdesc description to be (msb)3R 3G 2B(lsb). Signed-off-by: Jeffrey Knockel --- libavutil/pix

[FFmpeg-devel] [PATCH 3/6] doc/muxers: add avif

2024-01-14 Thread Stefano Sabatini
--- doc/muxers.texi | 28 +++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/doc/muxers.texi b/doc/muxers.texi index 1636f16cab..0d163a1629 100644 --- a/doc/muxers.texi +++ b/doc/muxers.texi @@ -835,6 +835,33 @@ compatibility with software that only supports

[FFmpeg-devel] [PATCH 4/6] doc/muxers: add avm2

2024-01-14 Thread Stefano Sabatini
--- doc/muxers.texi | 5 + 1 file changed, 5 insertions(+) diff --git a/doc/muxers.texi b/doc/muxers.texi index 0d163a1629..77d1b2983f 100644 --- a/doc/muxers.texi +++ b/doc/muxers.texi @@ -862,6 +862,11 @@ Set the timescale written in the movie header box (@code{mvhd}). Range is 1 to INT_M

[FFmpeg-devel] [PATCH 5/6] doc/muxers: document avs3, expand AVS acronyms

2024-01-14 Thread Stefano Sabatini
--- doc/muxers.texi | 9 +++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/doc/muxers.texi b/doc/muxers.texi index 77d1b2983f..1caf41ee4a 100644 --- a/doc/muxers.texi +++ b/doc/muxers.texi @@ -49,10 +49,15 @@ aptX (Audio Processing Technology for Bluetooth) aptX HD (Audio Pr

[FFmpeg-devel] [PATCH 6/6] doc/muxers: add bit

2024-01-14 Thread Stefano Sabatini
--- doc/muxers.texi | 5 + 1 file changed, 5 insertions(+) diff --git a/doc/muxers.texi b/doc/muxers.texi index 1caf41ee4a..d1e80d6582 100644 --- a/doc/muxers.texi +++ b/doc/muxers.texi @@ -872,6 +872,11 @@ ShockWave Flash (SWF) / ActionScript Virtual Machine 2 (AVM2) format muxer. It acc

Re: [FFmpeg-devel] [PATCH v3] libavformat: add RCWT closed caption muxer

2024-01-14 Thread Marth64
Thank you, Stefano. I had thought I did , but next time I will also test applying the patch too on local : ) On Sun, Jan 14, 2024 at 08:16 Stefano Sabatini wrote: > On date Sunday 2024-01-07 16:24:07 +0100, Stefano Sabatini wrote: > > On date Sunday 2024-01-07 09:07:01 -0600, Marth64 wrote: > >

Re: [FFmpeg-devel] Hardware purchase request: AVX512-capable laptop

2024-01-14 Thread Lynne
Jan 9, 2024, 19:57 by d...@lynne.ee: > Jan 3, 2024, 04:30 by d...@lynne.ee: > >> Jan 3, 2024, 04:04 by d...@lynne.ee: >> >>> Jan 3, 2024, 02:22 by jamr...@gmail.com: >>> On 1/2/2024 9:56 PM, Lynne wrote: > As some of you know, my laptop died nearly 2 years ago, and > I've been wo

[FFmpeg-devel] [PATCH] doc/utils: fix atan2 parameter order

2024-01-14 Thread Haixia Shi via ffmpeg-devel
The C library function double atan2(double y, double x) takes y as the first parameter and x as the second parameter. Signed-off-by: Haixia Shi --- doc/utils.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/utils.texi b/doc/utils.texi index 0c4f146f4f..76e704fc3c 1006

Re: [FFmpeg-devel] [PATCH 1/4] avcodec/mdec: DC reading for STRv1 is like STRv2

2024-01-14 Thread Michael Niedermayer via ffmpeg-devel
Hi aybe On Sat, Jan 13, 2024 at 02:28:52AM +, aybe aybe wrote: > Here are the two STR files I have used when writing this patch: > https://github.com/aybe/FFmpeg-PSX-STR-tests ok, i can confirm the version patch fixes these, i will apply it > Fanatics would probably say that 30 FPS for NTS

Re: [FFmpeg-devel] [PATCH v2] avutil/pixfmt: fix AV_PIX_FMT_RGB8 description

2024-01-14 Thread Diederick C. Niehorster
On Sun, Jan 14, 2024 at 4:15 PM Jeffrey Knockel wrote: > > Previously AV_PIX_FMT_RGB8 was documented as "RGB 3:3:2, > (msb)2R 3G 3B(lsb)". While the RGB 3:3:2 part is correct, the latter > part should be: (msb)3R 3G 2B(lsb). This commit also updates the > format's pixdesc description to be (msb)

[FFmpeg-devel] [PATCH v2 1/2] lavc/d3d12va: remove unused variables

2024-01-14 Thread tong1 . wu-at-intel . com
From: Tong Wu Signed-off-by: Tong Wu --- libavcodec/d3d12va_av1.c| 18 +- libavcodec/d3d12va_decode.c | 9 ++--- libavcodec/d3d12va_h264.c | 4 libavcodec/d3d12va_hevc.c | 5 - libavcodec/d3d12va_vc1.c| 3 --- libavcodec/d3d12va_vp9.c| 4 6

[FFmpeg-devel] [PATCH v2 2/2] d3d12va_av1|h264|hevc|vc1|vp9: input void** for ID3D12Resource_Map

2024-01-14 Thread tong1 . wu-at-intel . com
From: Tong Wu Fixes -Wincompatible-pointer-types warnings. Signed-off-by: Tong Wu --- libavcodec/d3d12va_av1.c | 2 +- libavcodec/d3d12va_h264.c | 2 +- libavcodec/d3d12va_hevc.c | 2 +- libavcodec/d3d12va_vc1.c | 2 +- libavcodec/d3d12va_vp9.c | 2 +- 5 files changed, 5 insertions(+), 5 de

Re: [FFmpeg-devel] [PATCH v3] libavformat: add RCWT closed caption muxer

2024-01-14 Thread Xiang, Haihao
On So, 2024-01-14 at 15:16 +0100, Stefano Sabatini wrote: > On date Sunday 2024-01-07 16:24:07 +0100, Stefano Sabatini wrote: > > On date Sunday 2024-01-07 09:07:01 -0600, Marth64 wrote: > > > Thanks, long night. Should come together nicer now. > > > > > > Signed-off-by: Marth64 > > > --- > > >  

Re: [FFmpeg-devel] [PATCH v3] libavformat: add RCWT closed caption muxer

2024-01-14 Thread Marth64
Hello, seems this file didn't make it during merge. Patch coming very shortly. Thank you, On Sun, Jan 14, 2024 at 10:25 PM Xiang, Haihao wrote: > On So, 2024-01-14 at 15:16 +0100, Stefano Sabatini wrote: > > On date Sunday 2024-01-07 16:24:07 +0100, Stefano Sabatini wrote: > > > On date Sunday

[FFmpeg-devel] [PATCH] rcwtenc: add sub-rcwt fate test ref

2024-01-14 Thread Marth64
Resolves the issue. Patch generated with git format-patch and validated to apply. I reget any inconvenience this may have caused. Respectfully, Signed-off-by: Marth64 --- tests/ref/fate/sub-rcwt | 1 + 1 file changed, 1 insertion(+) create mode 100644 tests/ref/fate/sub-rcwt diff --git a/test

Re: [FFmpeg-devel] [PATCH] rcwtenc: add sub-rcwt fate test ref

2024-01-14 Thread Xiang, Haihao
On So, 2024-01-14 at 22:38 -0600, Marth64 wrote: > Resolves the issue. Patch generated with git format-patch and validated to > apply. > I reget any inconvenience this may have caused. Respectfully, > > Signed-off-by: Marth64 > --- >  tests/ref/fate/sub-rcwt | 1 + >  1 file changed, 1 insertion(+

Re: [FFmpeg-devel] [PATCH] rcwtenc: add sub-rcwt fate test ref

2024-01-14 Thread Marth64
Great, thank you for the confirmation. On Sun, Jan 14, 2024 at 11:06 PM Xiang, Haihao wrote: > On So, 2024-01-14 at 22:38 -0600, Marth64 wrote: > > Resolves the issue. Patch generated with git format-patch and validated > to > > apply. > > I reget any inconvenience this may have caused. Respectf