Lynne:
>To: Tong Wu ; FFmpeg development discussions and
>patches
>Subject: Re: [FFmpeg-devel] [PATCH 02/10] hw_base_encode: move VAAPI
>SPS/PPS constructors to a shared file
>
>On 04/09/2024 16:09, Tong Wu wrote:
>> Lynne:
>>> Subject: [FFmpeg-devel] [PATCH 02/10] hw_base_encode: move VAAPI
>>> S
Lynne:
>To: Tong Wu ; FFmpeg development discussions and
>patches
>Cc: Lynne
>Subject: Re: [FFmpeg-devel] [PATCH 03/10] hw_base_encode: allocate DPB image
>upfront
>
>On 04/09/2024 16:36, Tong Wu wrote:
>> Lynne:
>>> Subject: [FFmpeg-devel] [PATCH 03/10] hw_base_encode: allocate DPB
>>> image upf
Quoting James Almer (2024-08-31 18:31:10)
> +typedef struct AVStreamGroupLCEVC {
> +const AVClass *av_class;
> +
> +/**
> + * Width of the final stream for presentation.
> + */
> +int width;
> +/**
> + * Height of the final image for presentation.
> + */
> +int h
Quoting James Almer (2024-08-31 18:31:11)
> +st->codecpar->codec_type = AVMEDIA_TYPE_DATA;
Why not video?
--
Anton Khirnov
___
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, v
Quoting James Almer (2024-08-31 18:31:14)
> static int demux_send(Demuxer *d, DemuxThreadContext *dt, DemuxStream *ds,
>AVPacket *pkt, unsigned flags)
> {
> InputFile *f = &d->f;
> -int ret;
> +int ret = 0;
>
> // pkt can be NULL only when flushing BSF
On 9/6/2024 8:56 AM, Anton Khirnov wrote:
Quoting James Almer (2024-08-31 18:31:14)
static int demux_send(Demuxer *d, DemuxThreadContext *dt, DemuxStream *ds,
AVPacket *pkt, unsigned flags)
{
InputFile *f = &d->f;
-int ret;
+int ret = 0;
// pkt
On 06/09/2024 11:48, Tong Wu wrote:
Lynne:
To: Tong Wu ; FFmpeg development discussions and
patches
Subject: Re: [FFmpeg-devel] [PATCH 02/10] hw_base_encode: move VAAPI
SPS/PPS constructors to a shared file
On 04/09/2024 16:09, Tong Wu wrote:
Lynne:
Subject: [FFmpeg-devel] [PATCH 02/10] hw_b
Quoting James Almer (2024-09-06 14:15:36)
> On 9/6/2024 8:56 AM, Anton Khirnov wrote:
> > Quoting James Almer (2024-08-31 18:31:14)
> >> static int demux_send(Demuxer *d, DemuxThreadContext *dt, DemuxStream
> >> *ds,
> >> AVPacket *pkt, unsigned flags)
> >> {
> >>
On 9/6/2024 10:33 AM, Anton Khirnov wrote:
Quoting James Almer (2024-09-06 14:15:36)
On 9/6/2024 8:56 AM, Anton Khirnov wrote:
Quoting James Almer (2024-08-31 18:31:14)
static int demux_send(Demuxer *d, DemuxThreadContext *dt, DemuxStream *ds,
AVPacket *pkt, unsigne
On 9/6/2024 8:48 AM, Anton Khirnov wrote:
Quoting James Almer (2024-08-31 18:31:11)
+st->codecpar->codec_type = AVMEDIA_TYPE_DATA;
Why not video?
Because it can not be decoded on its own, so you can't map any decoder
to it.
OpenPGP_signature.asc
Description: OpenPGP digital sign
On Wed, Sep 4, 2024 at 7:20 AM Nuo Mi wrote:
>
>
> On Sun, Aug 25, 2024 at 12:43 PM Nuo Mi wrote:
>
>>
>>
>> On Sat, Aug 24, 2024 at 5:40 AM James Almer wrote:
>>
>>> On 8/23/2024 10:17 AM, Anton Khirnov wrote:
>>> > tsan reports races in the decoder, it would be nice if someone could
>>> > loo
Hi, adding us XPSNR authors to MAINTAINERS, as requested/suggested in
https://ffmpeg.org/pipermail/ffmpeg-devel/2024-September/332940.html
Best,
Christian Helmrich
Fraunhofer HHI
Von: Helmrich, Christian
Gesendet: Montag, 26. August 2024 19:41
An: FFmpeg dev
On Fri, 6 Sep 2024, at 16:18, Frank Plowman wrote:
> ffmpeg | branch: master | Frank Plowman | Fri
> Aug 23 13:36:50 2024 +0100| [6df0c5f9f4c3261acf5b0efe43597b9eb765d6b6]
> | committer: Nuo Mi
>
> lavc/vvc: Remove experimental flag
Congratulations.
--
Jean-Baptiste Kempf - President
+33 6
On Tue, Sep 3, 2024 at 5:40 PM Ramiro Polla wrote:
> On Wed, Aug 28, 2024 at 10:43 PM Ramiro Polla wrote:
> >
> > The current code subsamples by dropping 3/4 pixels to calculate the
> > chroma components. This commit calculates the average of 4 rgb pixels
> > before calculating the chroma compone
On Tue, Sep 3, 2024 at 5:42 PM Ramiro Polla wrote:
> On Sun, Sep 1, 2024 at 3:09 PM Ramiro Polla wrote:
> >
> > ---
> > libswscale/x86/input.asm | 15 +--
> > 1 file changed, 9 insertions(+), 6 deletions(-)
> >
> > diff --git a/libswscale/x86/input.asm b/libswscale/x86/input.asm
> >
Were there any more comments on this patch? Thanks!
- dale
On Mon, Aug 19, 2024 at 12:19 PM Dale Curtis
wrote:
> On Sat, Aug 17, 2024 at 12:25 PM James Almer wrote:
>
>> On 8/17/2024 3:04 PM, Michael Niedermayer wrote:
>> >
>> >
>> 20978/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_H264_f
On Fri, Sep 6, 2024 at 1:57 AM Anton Khirnov wrote:
>
> Quoting Lynne via ffmpeg-devel (2024-09-05 23:27:40)
> > On 05/09/2024 07:16, Cameron Gutman wrote:
> > > Signed-off-by: Cameron Gutman
> > > ---
> > > libavcodec/amfenc.c | 34 +-
> > > 1 file changed, 33
17 matches
Mail list logo