Re: [FFmpeg-devel] [PATCH v2 1/2] lavc/vaapi_decode: Make it possible to send multiple slice params buffers

2024-05-27 Thread Neal Gompa
), > data, data_size); > +err = ff_vaapi_decode_make_slice_buffer(avctx, pic, &sp, 1, sizeof(sp), > data, data_size); > if (err) > goto fail; > > diff --git a/libavcodec/vaapi_vp9.c b/libavcodec/vaapi_vp9.c > index b8e760c807..a28fc75a59 100644 >

Re: [FFmpeg-devel] [PATCH v2 2/2] lavc/vaapi_av1: Avoid sending the same slice buffer multiple times

2024-05-27 Thread Neal Gompa
size); > -if (err) { > -ff_vaapi_decode_cancel(avctx, pic); > -return err; > -} > } > > +err = ff_vaapi_decode_make_slice_buffer(avctx, pic, ctx->slice_params, > nb_params, > + > s

Re: [FFmpeg-devel] [RFC] Release 6.1

2023-10-10 Thread Neal Gompa
On Mon, Oct 9, 2023 at 1:42 PM Michael Niedermayer wrote: > > On Mon, Oct 09, 2023 at 05:37:42AM +0200, Lynne wrote: > > Jul 6, 2023, 18:04 by d...@lynne.ee: > > > > > It's been a while since we've had a release, and we've had > > > a lot of new features in. > > > We did say we would make releases

Re: [FFmpeg-devel] [PATCH v28 1/2] avcodec/evc_encoder: Provided support for EVC encoder

2023-10-18 Thread Neal Gompa
On Tue, Sep 19, 2023 at 7:34 AM Dawid Kozinski wrote: > > - Added EVC encoder wrapper > - Changes in project configuration file and libavcodec Makefile > - Added documentation for xeve wrapper > Can you make this work with just the baseline library too? For Fedora and EPEL, we can only ship the x

Re: [FFmpeg-devel] [PATCH v28 2/2] avcodec/evc_decoder: Provided support for EVC decoder

2023-10-18 Thread Neal Gompa
On Tue, Sep 19, 2023 at 7:35 AM Dawid Kozinski wrote: > > - Added EVC decoder wrapper > - Changes in project configuration file and libavcodec Makefile > - Added documentation for xevd wrapper > Can you make this work with just the baseline library too? For Fedora and EPEL, we can only ship the x

Re: [FFmpeg-devel] [PATCH v28 1/2] avcodec/evc_encoder: Provided support for EVC encoder

2023-11-11 Thread Neal Gompa
On Thu, Nov 9, 2023 at 8:21 AM Rémi Denis-Courmont wrote: > > Hi, > > Le 9 novembre 2023 12:16:28 GMT+02:00, "Dawid Kozinski/Multimedia (PLT) > /SRPOL/Staff Engineer/Samsung Electronics" a écrit : > >Hi, > > > >Both, the implementation of the EVC encoder and decoder for FFmpeg depend on > >exte

Re: [FFmpeg-devel] [PATCH] lavc/Makefile: build vulkan decode code if vulkan_av1 has been enabled

2023-12-03 Thread Neal Gompa
On Sun, Dec 3, 2023 at 3:06 PM Lynne wrote: > > Fixes builds with only vulkan_av1 enabled. > Thanks for this fix! Reviewed-by: Neal Gompa Tested-by: Neal Gompa -- 真実はいつも一つ!/ Always, there's only one truth! ___ ffmpeg-devel maili

Re: [FFmpeg-devel] [PATCH] lavc/libopenh264: Drop openh264 runtime version checks

2023-12-08 Thread Neal Gompa
t; SVCContext *s = avctx->priv_data; > SEncParamExt param = { 0 }; > -int err; > int log_level; > WelsTraceCallback callback_function; > AVCPBProperties *props; > > -if ((err = ff_libopenh264_check_version(avctx)) < 0) > -retur

Re: [FFmpeg-devel] [PATCH v2 6/6] lavc/vaapi_encode: Add VAAPI AV1 encoder

2023-07-31 Thread Neal Gompa
On Tue, Jul 18, 2023 at 4:13 AM Fei Wang wrote: > > Signed-off-by: Fei Wang > --- > update > 1. set color_range in sequence header. > > Changelog |1 + > configure |3 + > doc/encoders.texi | 13 + > libavcodec/Makefile |

Re: [FFmpeg-devel] [PATCH v2 6/6] lavc/vaapi_encode: Add VAAPI AV1 encoder

2023-07-31 Thread Neal Gompa
On Mon, Jul 31, 2023 at 9:04 PM Neal Gompa wrote: > > On Tue, Jul 18, 2023 at 4:13 AM Fei Wang > wrote: > > > > Signed-off-by: Fei Wang > > --- > > update > > 1. set color_range in sequence header. > > > > Changelog

Re: [FFmpeg-devel] [PATCH v3 6/6] lavc/vaapi_encode: Add VAAPI AV1 encoder

2023-08-15 Thread Neal Gompa
On Tue, Aug 15, 2023 at 9:59 AM Dong, Ruijing wrote: > > [AMD Official Use Only - General] > > -Original Message- > From: Wang, Fei W > Sent: Wednesday, August 9, 2023 10:55 PM > To: ffmpeg-devel@ffmpeg.org > Cc: Dong, Ruijing > Subject: Re: [FFmpeg-devel] [PATCH v3 6/6] lavc/vaapi_encod

Re: [FFmpeg-devel] FFmpeg release 6.1

2023-09-19 Thread Neal Gompa
On Tue, Sep 19, 2023 at 5:58 PM Lynne wrote: > > Sep 19, 2023, 21:16 by mich...@niedermayer.cc: > > > On Tue, Sep 19, 2023 at 07:18:03PM +0200, Niklas Haas wrote: > > > >> On Tue, 11 Apr 2023 00:14:28 +0200 Michael Niedermayer > >> wrote: > >> > Hi all > >> > > >> > There was the request to make

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

2023-09-19 Thread Neal Gompa
_MODE_SELECT); > > return 0; > } > -- > 2.25.1 > Code looks good to me, I just lack hardware to exercise the functionality. Acked-by: Neal Gompa -- 真実はいつも一つ!/ Always, there's only one truth! ___ ffmpeg-devel mailing list f

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

2023-09-19 Thread Neal Gompa
; > sign = value < 0; > magnitude = sign ? -value : value; > > -if (ctx->trace_enable) { > -char bits[33]; > -int i; > -for (i = 0; i < width; i++) > -bits[i] = magnitude >> (width - i - 1) & 1 ? '1&

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

2023-09-19 Thread Neal Gompa
er_size); > +} > skip_put_bytes(pbc, header_size); > > if (td) { > diff --git a/libavcodec/cbs_av1.h b/libavcodec/cbs_av1.h > index 64dfdce9c4..a9e2d2284f 100644 > --- a/libavcodec/cbs_av1.h > +++ b/libavcodec/cbs_av1.h > @@ -401,6 +401,7 @@ typedef s

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

2023-09-19 Thread Neal Gompa
On Tue, Sep 19, 2023 at 8:40 PM Neal Gompa wrote: > > On Mon, Sep 11, 2023 at 3:52 AM wrote: > > > > From: Fei Wang > > > > Signed-off-by: Fei Wang > > --- > > libavcodec/av1.h | 7 +++ > > libavcodec/cbs_av1_sy

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

2023-09-19 Thread Neal Gompa
av_fifo_read(ctx->encode_fifo, &pic, 1); > ctx->encode_order = pic->encode_order + 1; > } else { > -pic = NULL; > err = vaapi_encode_pick_next(avctx, &pic); > if (err < 0) &g

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

2023-09-19 Thread Neal Gompa
-} else { > -pkt->dts = ctx->ts_ring[(pic->encode_order - ctx->decode_delay) % > -(3 * ctx->output_delay + ctx->async_depth)]; > -} > -av_log(avctx, AV_LOG_DEBUG, "Output packet: pts %"PRId64" dts > %&q

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

2023-09-19 Thread Neal Gompa
case PICTURE_TYPE_P: > -av_assert0(pic->nb_refs == 1); > +av_assert0(!pic->nb_refs[1]); > vpic->ref_flags.bits.no_ref_last = 0; > vpic->ref_flags.bits.no_ref_gf = 1; > vpic->ref_flags.bits.no_ref_arf = 1; > vp

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

2023-09-19 Thread Neal Gompa
On Mon, Sep 11, 2023 at 3:53 AM wrote: > > From: Fei Wang > > Signed-off-by: Fei Wang > --- > Update: > 1. use AV_PROFILE* instead of deprecated FF_PROFILE*. > > Changelog | 1 + > configure | 3 + > doc/encoders.texi | 14 + > libavcodec

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

2023-09-19 Thread Neal Gompa
iles %d, tile cols %d", > + test_tiles[i].tiles, > + test_tiles[i].tile_cols); > +} > + > +return 0; > +} > diff --git a/tests/fate/libavcodec.mak b/tests/fate/libavcodec.mak > index 8f56fae3a8..1a5694fa5f 100644 > -

Re: [FFmpeg-devel] FFmpeg release 6.1 (SDR Plans)

2023-09-22 Thread Neal Gompa
On Fri, Sep 22, 2023 at 12:33 PM Michael Niedermayer wrote: > > On Fri, Sep 22, 2023 at 03:55:57PM +0200, Gijs Peskens wrote: > > > > On 21-09-2023 18:21, Michael Niedermayer wrote: > > > Hi all > > > > > > As the 6.1 release is upcoming and as it was previously stated by me that > > > sdr > > >

Re: [FFmpeg-devel] FFmpeg release 6.1 (SDR Plans)

2023-09-23 Thread Neal Gompa
On Sat, Sep 23, 2023 at 6:55 AM Michael Niedermayer wrote: > > On Sat, Sep 23, 2023 at 02:49:47AM -0400, Neal Gompa wrote: > > On Fri, Sep 22, 2023 at 12:33 PM Michael Niedermayer > > wrote: > > > > > > On Fri, Sep 22, 2023 at 03:55:57PM +0200, Gijs Peskens

[FFmpeg-devel] Pagure for ffmpeg (was Re: VDD 2023, FFmpeg meeting notes, (23-11-2023, 4pm, Dublin))

2023-09-24 Thread Neal Gompa
On Sun, Sep 24, 2023 at 6:09 AM Michael Niedermayer wrote: > > Hi > > Iam a little tired so expect a more tidy mail in a few days but i want to > reply with a few points immedeately as they seem important. > > > On Sun, Sep 24, 2023 at 09:37:03AM +0100, Kyle Swanson wrote: > > > > Gitlab (or somet

Re: [FFmpeg-devel] [RFC] 7.1 Release

2024-08-23 Thread Neal Gompa
On Wed, Aug 14, 2024 at 11:11 AM Michael Niedermayer wrote: > > Hi all > > Are there any upcoming LTS releases that want to/could include FFmpeg 7.1 ? > If so please reply here and list the date before which we would have to > finish the 7.1 release so it can be included with no problems > > Other

Re: [FFmpeg-devel] FFmpeg 5.0

2022-10-29 Thread Neal Gompa
On Fri, Oct 28, 2022 at 2:23 PM Michael Niedermayer wrote: > > Hi > > According to our > https://trac.ffmpeg.org/wiki/Downstreams > > Noone and nothing is using 5.0 > should i make another release of 5.0 ? > should i move 5.0 to olddownloads ? > > does anyone use it ? plan to use it or know of som

Re: [FFmpeg-devel] FFmpeg 5.0

2022-10-30 Thread Neal Gompa
On Sun, Oct 30, 2022 at 4:16 PM Michael Niedermayer wrote: > > On Sat, Oct 29, 2022 at 02:29:56PM -0400, Neal Gompa wrote: > > On Fri, Oct 28, 2022 at 2:23 PM Michael Niedermayer > > wrote: > > > > > > Hi > > > > > > According

Re: [FFmpeg-devel] FFmpeg 5.0

2022-10-30 Thread Neal Gompa
On Sun, Oct 30, 2022 at 4:10 PM Michael Niedermayer wrote: > > On Sat, Oct 29, 2022 at 02:29:56PM -0400, Neal Gompa wrote: > > On Fri, Oct 28, 2022 at 2:23 PM Michael Niedermayer > > wrote: > > > > > > Hi > > > > > > According

Re: [FFmpeg-devel] [PATCH] Add and use cli options for v4l2

2022-03-27 Thread Neal Gompa
On Fri, Mar 25, 2022 at 10:40 PM wrote: > > Oops, accidentally submitted with the wrong title so not in the right thread. > Is submitted with the right one now. > > A re-submit of a re-base of a formerly proposed patch to align with ffmpeg > github > commit 8ae15b565533944d042d3caf25f7262e002e895

Re: [FFmpeg-devel] [PATCH v10 0/6] Support enhanced flv in FFmpeg

2023-05-30 Thread Neal Gompa
On Mon, May 15, 2023 at 10:41 PM Neal Gompa wrote: > > On Mon, May 15, 2023 at 4:32 AM Steven Liu wrote: > > > > Reference file: > > https://github.com/veovera/enhanced-rtmp/blob/main/enhanced-rtmp-v1.pdf > > The Enhanced flv has been supported by OBS, Simple R

Re: [FFmpeg-devel] [PATCH v10 0/6] Support enhanced flv in FFmpeg

2023-06-07 Thread Neal Gompa
On Tue, Jun 6, 2023 at 2:43 AM Steven Liu wrote: > > Neal Gompa 于2023年5月31日周三 13:47写道: > > > > On Mon, May 15, 2023 at 10:41 PM Neal Gompa wrote: > > > > > > On Mon, May 15, 2023 at 4:32 AM Steven Liu wrote: > > > > > > > > Reference

Re: [FFmpeg-devel] [RFC] Release 6.1

2023-07-07 Thread Neal Gompa
On Thu, Jul 6, 2023 at 12:04 PM Lynne wrote: > > It's been a while since we've had a release, and we've had > a lot of new features in. > We did say we would make releases more often, and I think > it's about time we have a new release. > > Anything anyone wants to have merged or should we branch

Re: [FFmpeg-devel] FFmpeg 5.1

2022-06-19 Thread Neal Gompa
On Sun, Jun 19, 2022 at 4:59 PM Marton Balint wrote: > > > > On Thu, 9 Jun 2022, Neal Gompa wrote: > > > On Tue, Jun 7, 2022 at 7:35 AM Michael Niedermayer > > wrote: > >> > >> Hi all > >> > >> As was discussed previously the 5.1 r

Re: [FFmpeg-devel] [PATCH] avcodec/openh264: return (DE|EN)CODER_NOT_FOUND if version check fails

2022-04-12 Thread Neal Gompa
> if ((err = ff_libopenh264_check_version(avctx)) < 0) > -return err; > +return AVERROR_ENCODER_NOT_FOUND; > > if (WelsCreateSVCEncoder(&s->encoder)) { > av_log(avctx, AV_LOG_ERROR, "Unable to create enco

Re: [FFmpeg-devel] FFmpeg 5.0 LTS vs 5.1 LTS

2022-04-23 Thread Neal Gompa
On Sat, Apr 23, 2022 at 12:40 PM James Almer wrote: > > On 4/23/2022 1:36 PM, Michael Niedermayer wrote: > > Hi all > > > > Do people prefer that 5.0 becomes LTS or the next (5.1) ? > > Or something else ? > > > > Thanks > > 5.0 lacks the new channel layout API, and making that an LTS will give >

Re: [FFmpeg-devel] FFmpeg 5.0 LTS vs 5.1 LTS

2022-04-23 Thread Neal Gompa
On Sat, Apr 23, 2022 at 2:15 PM James Almer wrote: > > > > On 4/23/2022 3:08 PM, Neal Gompa wrote: > > On Sat, Apr 23, 2022 at 12:40 PM James Almer wrote: > >> > >> On 4/23/2022 1:36 PM, Michael Niedermayer wrote: > >>> Hi all > >>>

Re: [FFmpeg-devel] PATCH - libmad MP3 decoding support

2022-05-02 Thread Neal Gompa
On Mon, May 2, 2022 at 1:42 PM David Fletcher wrote: > > On 2/5/2022, "Paul B Mahol" wrote: > >Only patches for master are accepted. > > > >No more wrappers. > > > >Thanks. > > Hi Paul, > > Please find attached the libmad MP3 decoding patch against the master > (ffmpeg-master-b67572c). > > I'm no

Re: [FFmpeg-devel] FFmpeg 5.1

2022-06-09 Thread Neal Gompa
On Tue, Jun 7, 2022 at 7:35 AM Michael Niedermayer wrote: > > Hi all > > As was discussed previously the 5.1 release should be in june/july > That means in the next weeks probably! > If you know of any regressions, security issues or other major bugs, > please help fixing them > > Also as was sugg

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 00/72] Implement support for Vulkan multiplane images and video decoding

2023-02-19 Thread Neal Gompa
On Sun, Feb 19, 2023 at 5:00 PM Kieran Kunhya wrote: > > On Sun, 19 Feb 2023 at 18:46, Lynne wrote: > > > Feb 19, 2023, 18:43 by kier...@obe.tv: > > > > > On Sun, 19 Feb 2023 at 17:36, Kieran Kunhya wrote: > > > > > >> Obviously, if we merge it now, and big enough issues are found > > >> > > >>>

Re: [FFmpeg-devel] Chromium 110 and ffmpeg 5.1.2

2023-02-22 Thread Neal Gompa
On Wed, Feb 22, 2023 at 7:28 PM Hendrik Leppkes wrote: > > On Wed, Feb 22, 2023 at 9:42 PM Drew Abbott wrote: > > > > Hello, > > > > I am trying to build Chromium 110 with ffmpeg version 5.1.2. One of > > the errors I get while building has to do with the API for accessing > > first_dts. It looks

Re: [FFmpeg-devel] [PATCH v8 3/6] avformat/flvenc: support mux av1 in enhanced flv

2023-05-08 Thread Neal Gompa
On Thu, Apr 13, 2023 at 5:45 AM Steven Liu wrote: > > Signed-off-by: Steven Liu > --- > libavformat/flvenc.c | 25 - > 1 file changed, 20 insertions(+), 5 deletions(-) > > diff --git a/libavformat/flvenc.c b/libavformat/flvenc.c > index 57a26245ff..7b43ecaefa 100644 > ---

Re: [FFmpeg-devel] [PATCH v8 3/6] avformat/flvenc: support mux av1 in enhanced flv

2023-05-08 Thread Neal Gompa
On Mon, May 8, 2023 at 9:55 PM Steven Liu wrote: > > Neal Gompa 于2023年5月9日周二 07:08写道: > > > > On Thu, Apr 13, 2023 at 5:45 AM Steven Liu wrote: > > > > > > Signed-off-by: Steven Liu > > > --- > > > libavformat/flvenc.c | 25 ++

Re: [FFmpeg-devel] [PATCH v8 3/6] avformat/flvenc: support mux av1 in enhanced flv

2023-05-09 Thread Neal Gompa
On Tue, May 9, 2023 at 12:14 AM Gyan Doshi wrote: > > > > On 2023-05-09 08:11 am, Neal Gompa wrote: > > On Mon, May 8, 2023 at 9:55 PM Steven Liu wrote: > >> Neal Gompa 于2023年5月9日周二 07:08写道: > >>> On Thu, Apr 13, 2023 at 5:45 AM Steven Liu

Re: [FFmpeg-devel] [PATCH v8 3/6] avformat/flvenc: support mux av1 in enhanced flv

2023-05-10 Thread Neal Gompa
On Tue, May 9, 2023 at 6:48 AM Gyan Doshi wrote: > > > > On 2023-05-09 04:05 pm, Neal Gompa wrote: > > On Tue, May 9, 2023 at 12:14 AM Gyan Doshi wrote: > >> > >> > >> On 2023-05-09 08:11 am, Neal Gompa wrote: > >>> On Mon, May 8, 2023 at

Re: [FFmpeg-devel] [PATCH v8 3/6] avformat/flvenc: support mux av1 in enhanced flv

2023-05-10 Thread Neal Gompa
On Wed, May 10, 2023 at 7:13 AM Steven Liu wrote: > > Neal Gompa 于2023年5月10日周三 19:05写道: > > > > On Tue, May 9, 2023 at 6:48 AM Gyan Doshi wrote: > > > > > > > > > > > > On 2023-05-09 04:05 pm, Neal Gompa wrote: >

Re: [FFmpeg-devel] [PATCH v8 3/6] avformat/flvenc: support mux av1 in enhanced flv

2023-05-11 Thread Neal Gompa
On Wed, May 10, 2023 at 9:40 PM Steven Liu wrote: > > Neal Gompa 于2023年5月11日周四 09:31写道: > > > > On Wed, May 10, 2023 at 7:13 AM Steven Liu wrote: > > > > > > Neal Gompa 于2023年5月10日周三 19:05写道: > > > > > >

Re: [FFmpeg-devel] [PATCH v8 3/6] avformat/flvenc: support mux av1 in enhanced flv

2023-05-11 Thread Neal Gompa
On Thu, May 11, 2023 at 12:26 PM Jean-Baptiste Kempf wrote: > > > > On Thu, 11 May 2023, at 18:21, Neal Gompa wrote: > > On Wed, May 10, 2023 at 9:40 PM Steven Liu wrote: > >> > >> Neal Gompa 于2023年5月11日周四 09:31写道: > >> > > >> &g

Re: [FFmpeg-devel] [PATCH v9 0/6] Support enhanced flv in FFmpeg

2023-05-12 Thread Neal Gompa
On Fri, May 12, 2023 at 7:59 AM Steven Liu wrote: > > Vibhoothi 于2023年5月12日周五 18:48写道: > > > > Hi, > > > > On Fri, 12 May 2023 at 04:59, Steven Liu wrote: > > > > > > Reference file: > > > https://github.com/veovera/enhanced-rtmp/blob/main/enhanced-rtmp-v1.pdf > > > The Enhanced flv has been su

Re: [FFmpeg-devel] [PATCH v10 0/6] Support enhanced flv in FFmpeg

2023-05-15 Thread Neal Gompa
iles changed, 130 insertions(+), 18 deletions(-) > This version works for me. Thanks for this work! Tested-by: Neal Gompa Reviewed-by: Neal Gompa -- 真実はいつも一つ!/ Always, there's only one truth! ___ ffmpeg-devel mailing list ffmpeg-devel@ffm

Re: [FFmpeg-devel] [RFC] AVFilter

2024-10-31 Thread Neal Gompa
On Sat, Oct 19, 2024 at 4:39 AM Rémi Denis-Courmont wrote: > > Le perjantaina 18. lokakuuta 2024, 14.42.46 EEST Nicolas George a écrit : > > That might be true if you only consider commercial projects. For > > community projects and hobby projects, that is certainly not true at > > all. > > > > An

Re: [FFmpeg-devel] Hardware purchase request: Ryzen 9 CPU

2025-04-19 Thread Neal Gompa
On Fri, Apr 4, 2025 at 5:22 PM Niklas Haas wrote: > > On Fri, 04 Apr 2025 22:41:39 +0200 Lynne wrote: > > On 04/04/2025 19:20, Niklas Haas wrote: > > > Hi all, > > > > > > My current workstation (first generation Zen) is getting rather old (8 > > > years). > > > On top of being slow and power hu