[FFmpeg-devel] [PATCH v4 1/8] avcodec/cbs_av1: Add tx mode enum values

2023-08-31 Thread fei . w . wang-at-intel . com
From: Fei Wang Signed-off-by: Fei Wang --- libavcodec/av1.h | 7 +++ libavcodec/cbs_av1_syntax_template.c | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/libavcodec/av1.h b/libavcodec/av1.h index 384f7cddc7..8704bc41c1 100644 --- a/libavcodec/av1

[FFmpeg-devel] [PATCH v4 3/8] avcodec/cbs_av1: Allow specifying obu size byte length

2023-08-31 Thread fei . w . wang-at-intel . com
From: Fei Wang Signed-off-by: Fei Wang --- libavcodec/cbs_av1.c | 30 +- libavcodec/cbs_av1.h | 1 + 2 files changed, 22 insertions(+), 9 deletions(-) diff --git a/libavcodec/cbs_av1.c b/libavcodec/cbs_av1.c index aa92639235..0c08256cc8 100644 --- a/libavcodec/cbs_

[FFmpeg-devel] [PATCH v4 4/8] lavc/vaapi_encode: Init pic at the beginning of API

2023-08-31 Thread fei . w . wang-at-intel . com
From: Fei Wang Signed-off-by: Fei Wang --- libavcodec/vaapi_encode.c | 5 + 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/libavcodec/vaapi_encode.c b/libavcodec/vaapi_encode.c index bfca315a7a..8c9f14df66 100644 --- a/libavcodec/vaapi_encode.c +++ b/libavcodec/vaapi_encode.c

[FFmpeg-devel] [PATCH v4 2/8] cbs: Make tracing more general

2023-08-31 Thread fei . w . wang-at-intel . com
From: Mark Thompson Turn tracing into callbacks for each syntax element, with default callbacks to match current trace_headers behaviour for debug. Move the construction of bit strings into the trace callback, which simplifies all of the read and write functions. Signed-off-by: Fei Wang --- l

[FFmpeg-devel] [PATCH v4 5/8] lavc/vaapi_encode: Extract set output pkt property function

2023-08-31 Thread fei . w . wang-at-intel . com
From: Fei Wang Signed-off-by: Fei Wang --- libavcodec/vaapi_encode.c | 65 +++ 1 file changed, 38 insertions(+), 27 deletions(-) diff --git a/libavcodec/vaapi_encode.c b/libavcodec/vaapi_encode.c index 8c9f14df66..719daedbc9 100644 --- a/libavcodec/vaapi_enc

[FFmpeg-devel] [PATCH v4 7/8] lavc/vaapi_encode: Add VAAPI AV1 encoder

2023-08-31 Thread fei . w . wang-at-intel . com
From: Fei Wang Signed-off-by: Fei Wang --- Fixed the discussions in V3. Changelog | 1 + configure | 3 + doc/encoders.texi | 14 + libavcodec/Makefile | 2 + libavcodec/allcodecs.c| 1 + libavcodec/av1_levels.c

[FFmpeg-devel] [PATCH v4 8/8] lavc/av1: Add unit test for level handling

2023-08-31 Thread fei . w . wang-at-intel . com
From: Fei Wang Signed-off-by: Fei Wang --- libavcodec/tests/.gitignore | 1 + libavcodec/tests/av1_levels.c | 124 ++ tests/fate/libavcodec.mak | 5 ++ 3 files changed, 130 insertions(+) create mode 100644 libavcodec/tests/av1_levels.c diff --git a/li

[FFmpeg-devel] [PATCH v4 6/8] lavc/vaapi_encode: Separate reference frame into previous/future list

2023-08-31 Thread fei . w . wang-at-intel . com
From: Fei Wang To support more reference frames from different directions. Signed-off-by: Fei Wang --- libavcodec/vaapi_encode.c | 112 +--- libavcodec/vaapi_encode.h | 15 +++-- libavcodec/vaapi_encode_h264.c | 94 +-- libavco

[FFmpeg-devel] sending RTSP keep alive even when paused

2023-08-31 Thread Tmc Tmc
Thank you for the response. With all due respect, my email is NOT about the RTSP standard, or the vendor specifics. FFmpeg code already does the necessary stuff by sending either GET_PARAMETER or OPTIONS. I was merely talking about moving that a little above, so that it works the same way in eve

Re: [FFmpeg-devel] [PATCH] lavc/libx264: enable x4->params.analyse.b_fast_pskip if mb_info is set

2023-08-31 Thread Carotti, Elias via ffmpeg-devel
Hi -Original Message- From: ffmpeg-devel On Behalf Of Stefano Sabatini Sent: Friday, August 25, 2023 12:01 PM To: FFmpeg development discussions and patches Cc: Stefano Sabatini Subject: [EXTERNAL] [FFmpeg-devel] [PATCH] lavc/libx264: enable x4->params.analyse.b_fast_pskip if mb_info

Re: [FFmpeg-devel] [PATCH] lavc/libx264: enable x4->params.analyse.b_fast_pskip if mb_info is set

2023-08-31 Thread Kieran Kunhya
On Thu, 31 Aug 2023 at 15:12, Carotti, Elias via ffmpeg-devel < ffmpeg-devel@ffmpeg.org> wrote: > Hi > > -Original Message- > From: ffmpeg-devel On Behalf Of Stefano > Sabatini > Sent: Friday, August 25, 2023 12:01 PM > To: FFmpeg development discussions and patches > Cc: Stefano Sabatin

Re: [FFmpeg-devel] [PATCH] lavc/libx264: enable x4->params.analyse.b_fast_pskip if mb_info is set

2023-08-31 Thread Kieran Kunhya
On Thu, 31 Aug 2023 at 15:30, Kieran Kunhya wrote: > > > On Thu, 31 Aug 2023 at 15:12, Carotti, Elias via ffmpeg-devel < > ffmpeg-devel@ffmpeg.org> wrote: > >> Hi >> >> -Original Message- >> From: ffmpeg-devel On Behalf Of >> Stefano Sabatini >> Sent: Friday, August 25, 2023 12:01 PM >>

[FFmpeg-devel] [PATCH 1/2] avdevice/decklink_dec: add explicit specifier

2023-08-31 Thread Jun Zhao
The explicit specifier used with a single argument constructor to prevent implicit type conversions. Signed-off-by: Jun Zhao --- libavdevice/decklink_dec.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavdevice/decklink_dec.cpp b/libavdevice/decklink_dec.cpp index 1164

[FFmpeg-devel] [PATCH 2/2] lavc/videotoolboxenc: enable low-latency mode for HEVC

2023-08-31 Thread Jun Zhao
Enable the HEVC encoder that supports low-latency mode. Signed-off-by: Jun Zhao --- libavcodec/videotoolboxenc.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libavcodec/videotoolboxenc.c b/libavcodec/videotoolboxenc.c index 8e493c4f7a..bfc03787a0 100644 --- a/libavcodec/

Re: [FFmpeg-devel] [PATCH] lsws/swscale.h: introduce sws_get_gaussian_vec

2023-08-31 Thread Stefano Sabatini
On date Saturday 2023-08-26 17:15:36 +0200, Anton Khirnov wrote: > Quoting Stefano Sabatini (2023-08-26 14:23:28) > > Use in place of sws_getGaussianVec. > > > > The new function enable better log handling, and provide better naming > > for the variance variable, now named standard_deviation to re

Re: [FFmpeg-devel] [PATCH 4/6] doc/developer: add a code behaviour section to development policy

2023-08-31 Thread Stefano Sabatini
On date Tuesday 2023-08-29 10:34:45 +0200, Anton Khirnov wrote: > Quoting Stefano Sabatini (2023-08-27 14:38:44) > > Il sab 26 ago 2023, 20:08 Anton Khirnov ha scritto: > > > > > Document our longstanding de facto policies on things like correctness, > > > thread-safety, UB, etc. > > > > > > > U

Re: [FFmpeg-devel] [PATCH] lsws/swscale.h: introduce sws_get_gaussian_vec

2023-08-31 Thread Stefano Sabatini
On date Saturday 2023-08-26 17:15:27 +0200, Andreas Rheinhardt wrote: > Stefano Sabatini: > > Use in place of sws_getGaussianVec. > > > > The new function enable better log handling, and provide better naming > > Better log handling? Why? > > > for the variance variable, now named standard_devia

Re: [FFmpeg-devel] [PATCH 1/2] lsws, lavfi: use sws_get_gaussian_vec

2023-08-31 Thread Stefano Sabatini
On date Saturday 2023-08-26 17:13:19 +0200, Andreas Rheinhardt wrote: > Stefano Sabatini: > > Use in place of deprecated sws_getGaussianVec. > > This patchset should have been sent as a reply to the patch actually > adding sws_get_gaussian_vec. Noted. > > --- > > libavfilter/vf_sab.c | 1

Re: [FFmpeg-devel] [PATCH] Build failed with newer glslang

2023-08-31 Thread Stefano Sabatini
On date Tuesday 2023-08-29 11:33:43 +0200, Luca Bonissi wrote: > Newer glslang does no more provide static libraries libOSDependent.a and > libOGLCompiler.a. > These libraries are only used in configure's test to detect spirv_compiler, > but are no more necessary even with older glslang. > > The f

Re: [FFmpeg-devel] [PATCH] avformat/mov: add io_order option to disable demuxer level interleave

2023-08-31 Thread Derek Buitenhuis
On 8/28/2023 5:06 PM, Zhao Zhili wrote: > -if (!sample || (!(s->pb->seekable & AVIO_SEEKABLE_NORMAL) && > current_sample->pos < sample->pos) || > +if (!sample || (force_io_order && current_sample->pos < > sample->pos) || Hmm, I think the name `io_order` is a misnomer: It

Re: [FFmpeg-devel] [PATCH] lsws/swscale.h: introduce sws_get_gaussian_vec

2023-08-31 Thread Andreas Rheinhardt
Stefano Sabatini: > +int sws_get_gaussian_vec(SwsVector **vecp, > + AVClass *log_ctx, > + double standard_deviation, double quality); > Seriously? A pointer to an AVClass as log_ctx? It is actually AVClass** (the logcontext must have a pointer to a

Re: [FFmpeg-devel] [PATCH] lavc/libx264: enable x4->params.analyse.b_fast_pskip if mb_info is set

2023-08-31 Thread Stefano Sabatini
On date Thursday 2023-08-31 15:38:09 +0100, Kieran Kunhya wrote: > On Thu, 31 Aug 2023 at 15:30, Kieran Kunhya wrote: > > > > > > > On Thu, 31 Aug 2023 at 15:12, Carotti, Elias via ffmpeg-devel < > > ffmpeg-devel@ffmpeg.org> wrote: > > > >> Hi > >> > >> -Original Message- > >> From: ffmpe

Re: [FFmpeg-devel] [PATCH] lsws/swscale.h: introduce sws_get_gaussian_vec

2023-08-31 Thread Stefano Sabatini
On date Thursday 2023-08-31 18:51:52 +0200, Andreas Rheinhardt wrote: > Stefano Sabatini: > > +int sws_get_gaussian_vec(SwsVector **vecp, > > + AVClass *log_ctx, > > + double standard_deviation, double quality); > > > > Seriously? A pointer to an A

[FFmpeg-devel] [PATCH] avformat/internal: Don't auto-include os_support.h

2023-08-31 Thread Andreas Rheinhardt
It includes various Windows-specific headers when compiling for Windows and these sometimes cause issues: E.g. winbase.h defines IGNORE, which clashes with a macro used in the Matroska muxer (since 884653ee5be03ed38db957c14fad51b300611c8c) and demuxer. This header provides fallback defines for var

Re: [FFmpeg-devel] [PATCH] OSQ lossless audio format support

2023-08-31 Thread Paul B Mahol
Gonna push soon. ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

[FFmpeg-devel] [PATCH] avformat/matroska(dec|enc): Rename macro to avoid clash with winbase.h

2023-08-31 Thread Andreas Rheinhardt
winbase.h defines IGNORE and is included via bzlib.h when compiling for Windows. So rename this macro to NOTHING. Also rename the muxer macro for consistency. Signed-off-by: Andreas Rheinhardt --- libavformat/matroskadec.c | 4 ++-- libavformat/matroskaenc.c | 4 ++-- 2 files changed, 4 insertio

Re: [FFmpeg-devel] [PATCH] avformat/mov: add io_order option to disable demuxer level interleave

2023-08-31 Thread Zhao Zhili
> From: ffmpeg-devel On Behalf Of Derek > Buitenhuis > Sent: 2023年8月31日 23:59 > To: ffmpeg-devel@ffmpeg.org > Subject: Re: [FFmpeg-devel] [PATCH] avformat/mov: add io_order option to > disable demuxer level interleave > > On 8/28/2023 5:06 PM, Zhao Zhili wrote: > > -if (!sample ||

Re: [FFmpeg-devel] [PATCH 2/2] lavc/videotoolboxenc: enable low-latency mode for HEVC

2023-08-31 Thread Zhao Zhili
> From: ffmpeg-devel On Behalf Of Jun Zhao > Sent: 2023年8月31日 22:50 > To: ffmpeg-devel@ffmpeg.org > Cc: Jun Zhao ; Jun Zhao > Subject: [FFmpeg-devel] [PATCH 2/2] lavc/videotoolboxenc: enable low-latency > mode for HEVC > > Enable the HEVC encoder that supports low-latency mode. > > Signed-off

Re: [FFmpeg-devel] [PATCH] avfilter: add libvmaf_cuda

2023-08-31 Thread Kyle Swanson
Hi, On Wed, Aug 30, 2023 at 9:44 AM Kyle Swanson wrote: > Fixed in the attached patch. Any other reviews, or is this one OK to merge now? Thanks, Kyle ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-dev

[FFmpeg-devel] Working on an LTC source filter - can this be made seekable?

2023-08-31 Thread Johannes Maibaum
Hello, as my first dive into the ffmpeg source, I am working on an Linear/Longitudinal Time Code (LTC) source filter for ffmpeg using https://github.com/x42/libltc here: https://git.sr.ht/~jmaibaum/ffmpeg/log/ltc The basics are working fine and turned out to be fairly easy to achieve, even

Re: [FFmpeg-devel] [PATCH] avformat/internal: Don't auto-include os_support.h

2023-08-31 Thread Martin Storsjö
On Thu, 31 Aug 2023, Andreas Rheinhardt wrote: It includes various Windows-specific headers when compiling for Windows and these sometimes cause issues: E.g. winbase.h defines IGNORE, which clashes with a macro used in the Matroska muxer (since 884653ee5be03ed38db957c14fad51b300611c8c) and demux

[FFmpeg-devel] [PATCH 01/13] avfilter: Remove unnecessary emms_c for ff_scene_sad_get_fn

2023-08-31 Thread Andreas Rheinhardt
ff_scene_sad_get_fn() does not return functions that use MMX at all. Signed-off-by: Andreas Rheinhardt --- libavfilter/f_select.c| 1 - libavfilter/vf_framerate.c| 1 - libavfilter/vf_freezedetect.c | 1 - libavfilter/vf_minterpolate.c | 1 - libavfilter/vf_scdet.c| 1 - 5 fi

[FFmpeg-devel] [PATCH 02/13] avfilter/vf_gblur: Remove unnecessary emms_c()

2023-08-31 Thread Andreas Rheinhardt
There is no MMX ASM code for gblur. Signed-off-by: Andreas Rheinhardt --- libavfilter/vf_gblur.c | 1 - 1 file changed, 1 deletion(-) diff --git a/libavfilter/vf_gblur.c b/libavfilter/vf_gblur.c index 6e8ef96235..6ce2c84736 100644 --- a/libavfilter/vf_gblur.c +++ b/libavfilter/vf_gblur.c @@ -73

[FFmpeg-devel] [PATCH 03/13] avfilter/vf_colorspace: Remove redundant emms_c()

2023-08-31 Thread Andreas Rheinhardt
It is not even clear what these emms_c() are supposed to achieve: create_filtergraph() (where it may be called) does not call ASM functions itself; it merely sets some function pointers. Furthermore, there are no colorspacedsp functions using MMX (checked by checkasm which does not use declare_new_

[FFmpeg-devel] [PATCH 04/13] avfilter/vf_bwdif: Remove obsolete emms_c()

2023-08-31 Thread Andreas Rheinhardt
Obsolete since ed42a51930d9cca6dfed35c4af4b5b3a3f7f6a04. Signed-off-by: Andreas Rheinhardt --- libavfilter/vf_bwdif.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/libavfilter/vf_bwdif.c b/libavfilter/vf_bwdif.c index 5f5f8e4610..6195e6cb64 100644 --- a/libavfilter/vf_bwdif.c +++ b/libavf

[FFmpeg-devel] [PATCH 11/13] tests/checkasm/hevc_*: Avoid using declare_func_emms where possible

2023-08-31 Thread Andreas Rheinhardt
Only the idct_dc and add_residual functions have MMX versions, so one can use the version with the stricter check (that checks that the MMX registers have not been clobbered) for all the other checks. Signed-off-by: Andreas Rheinhardt --- tests/checkasm/hevc_deblock.c | 2 +- tests/checkasm/hev

[FFmpeg-devel] [PATCH 12/13] tests/checkasm/llvidencdsp: Don't use declare_func_emms

2023-08-31 Thread Andreas Rheinhardt
Only sub_media_pred has an MMXEXT version, so one can use the version with the stricter check (that checks that the MMX registers have not been clobbered) for sub_left_predict. Signed-off-by: Andreas Rheinhardt --- tests/checkasm/llviddspenc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletio

[FFmpeg-devel] [PATCH 05/13] avfilter/afir_template: Remove unnecessary emms_c()

2023-08-31 Thread Andreas Rheinhardt
The floating point dsp code does not use MMX registers since 2718a3be1f8867fd4f6cb3f452d6917838b1ed88. Signed-off-by: Andreas Rheinhardt --- libavfilter/afir_template.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/libavfilter/afir_template.c b/libavfilter/afir_template.c index 099fda2520

[FFmpeg-devel] [PATCH 13/13] tests/checkasm/sw_scale: Avoid declare_func_emms where possible

2023-08-31 Thread Andreas Rheinhardt
This makes the test stricter because it is checked that the MMX registers are not accidentally clobbered. Signed-off-by: Andreas Rheinhardt --- tests/checkasm/sw_scale.c | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/checkasm/sw_scale.c b/tests/checkasm/sw

[FFmpeg-devel] [PATCH 07/13] avfilter/af_sofalizer: Remove unnecessary emms_c()

2023-08-31 Thread Andreas Rheinhardt
The floating point dsp code does not use MMX registers since 2718a3be1f8867fd4f6cb3f452d6917838b1ed88. Signed-off-by: Andreas Rheinhardt --- libavfilter/af_sofalizer.c | 1 - 1 file changed, 1 deletion(-) diff --git a/libavfilter/af_sofalizer.c b/libavfilter/af_sofalizer.c index 60e0da30e9..5c2

[FFmpeg-devel] [PATCH 08/13] avfilter/af_headphone: Remove unnecessary emms_c()

2023-08-31 Thread Andreas Rheinhardt
The floating point dsp code does not use MMX registers since 2718a3be1f8867fd4f6cb3f452d6917838b1ed88. Signed-off-by: Andreas Rheinhardt --- libavfilter/af_headphone.c | 1 - 1 file changed, 1 deletion(-) diff --git a/libavfilter/af_headphone.c b/libavfilter/af_headphone.c index c8f753387f..765

[FFmpeg-devel] [PATCH 09/13] avfilter/af_amultiply: Remove unnecessary emms_c()

2023-08-31 Thread Andreas Rheinhardt
The floating point dsp code does not use MMX registers since 2718a3be1f8867fd4f6cb3f452d6917838b1ed88. Signed-off-by: Andreas Rheinhardt --- libavfilter/af_amultiply.c | 1 - 1 file changed, 1 deletion(-) diff --git a/libavfilter/af_amultiply.c b/libavfilter/af_amultiply.c index 3d8782002b..0e2

[FFmpeg-devel] [PATCH 10/13] avcodec/pcm: Remove unnecessary emms_c()

2023-08-31 Thread Andreas Rheinhardt
The floating point dsp code does not use MMX registers since 2718a3be1f8867fd4f6cb3f452d6917838b1ed88. Signed-off-by: Andreas Rheinhardt --- libavcodec/pcm.c | 1 - 1 file changed, 1 deletion(-) diff --git a/libavcodec/pcm.c b/libavcodec/pcm.c index 467ecb4fe0..4abca7cc07 100644 --- a/libavcode

[FFmpeg-devel] [PATCH 06/13] avfilter/af_volume: Remove unnecessary emms_c()

2023-08-31 Thread Andreas Rheinhardt
The floating point dsp code does not use MMX registers since 2718a3be1f8867fd4f6cb3f452d6917838b1ed88. Signed-off-by: Andreas Rheinhardt --- libavfilter/af_volume.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/libavfilter/af_volume.c b/libavfilter/af_volume.c index 926529947c..b41c15e867

[FFmpeg-devel] [PATCH 14/14] avutil/internal: Don't auto-include emms.h

2023-08-31 Thread Andreas Rheinhardt
Instead include emms.h wherever it is needed. Signed-off-by: Andreas Rheinhardt --- libavcodec/ac3enc.c | 1 + libavcodec/avcodec.c| 1 + libavcodec/bink.c | 1 + libavcodec/cavsdec.c| 1 + libavcodec/dca_core.c | 1 + libavcodec/decode.c | 1

Re: [FFmpeg-devel] [PATCH] avformat/internal: Don't auto-include os_support.h

2023-08-31 Thread Andreas Rheinhardt
Martin Storsjö: > On Thu, 31 Aug 2023, Andreas Rheinhardt wrote: > >> It includes various Windows-specific headers when compiling >> for Windows and these sometimes cause issues: E.g. winbase.h >> defines IGNORE, which clashes with a macro used in the Matroska >> muxer (since 884653ee5be03ed38db95

Re: [FFmpeg-devel] [PATCH] avformat/matroska(dec|enc): Rename macro to avoid clash with winbase.h

2023-08-31 Thread Andreas Rheinhardt
Andreas Rheinhardt: > winbase.h defines IGNORE and is included via bzlib.h when compiling > for Windows. So rename this macro to NOTHING. > Also rename the muxer macro for consistency. > > Signed-off-by: Andreas Rheinhardt > --- > libavformat/matroskadec.c | 4 ++-- > libavformat/matroskaenc.c |

Re: [FFmpeg-devel] [PATCH 2/2] lavc/videotoolboxenc: enable low-latency mode for HEVC

2023-08-31 Thread myp...@gmail.com
On Fri, Sep 1, 2023 at 2:13 AM Zhao Zhili wrote: > > > > From: ffmpeg-devel On Behalf Of Jun Zhao > > Sent: 2023年8月31日 22:50 > > To: ffmpeg-devel@ffmpeg.org > > Cc: Jun Zhao ; Jun Zhao > > Subject: [FFmpeg-devel] [PATCH 2/2] lavc/videotoolboxenc: enable > > low-latency mode for HEVC > > > > Ena

Re: [FFmpeg-devel] [PATCH 2/2] lavc/videotoolboxenc: enable low-latency mode for HEVC

2023-08-31 Thread zhilizhao(赵志立)
> On Sep 1, 2023, at 09:13, myp...@gmail.com wrote: > > On Fri, Sep 1, 2023 at 2:13 AM Zhao Zhili wrote: >> >> >>> From: ffmpeg-devel On Behalf Of Jun Zhao >>> Sent: 2023年8月31日 22:50 >>> To: ffmpeg-devel@ffmpeg.org >>> Cc: Jun Zhao ; Jun Zhao >>> Subject: [FFmpeg-devel] [PATCH 2/2] lavc/vid

Re: [FFmpeg-devel] [PATCH 2/2] lavc/videotoolboxenc: enable low-latency mode for HEVC

2023-08-31 Thread myp...@gmail.com
On Fri, Sep 1, 2023 at 11:50 AM "zhilizhao(赵志立)" wrote: > > > > > On Sep 1, 2023, at 09:13, myp...@gmail.com wrote: > > > > On Fri, Sep 1, 2023 at 2:13 AM Zhao Zhili wrote: > >> > >> > >>> From: ffmpeg-devel On Behalf Of Jun Zhao > >>> Sent: 2023年8月31日 22:50 > >>> To: ffmpeg-devel@ffmpeg.org > >

Re: [FFmpeg-devel] [PATCH 2/2] lavc/videotoolboxenc: enable low-latency mode for HEVC

2023-08-31 Thread Richard Kern
> On Sep 1, 2023, at 12:07 AM, myp...@gmail.com wrote: > > On Fri, Sep 1, 2023 at 11:50 AM "zhilizhao(赵志立)" > wrote: >> >> >> On Sep 1, 2023, at 09:13, myp...@gmail.com wrote: >>> >>> On Fri, Sep 1, 2023 at 2:13 AM Zhao Zhili wrote: > From: ffmpeg-devel On Behalf Of

[FFmpeg-devel] [PATCH v3] wmavoice: convert DCT-I/DST-I to lavu/tx

2023-08-31 Thread Lynne
Added a patch to fix scaling of R2R transforms and improved table generation precision slightly. Planning to push this at the end of today, as it has been on the mailing list for over a month with two LGTMs. >From 145b5ca2be45e07fe16b700aa2b42cbeaa6d1a28 Mon Sep 17 00:00:00 2001 From: Lynne Date