Re: [FFmpeg-devel] [PATCH v2 7/8] lavc/vvc_dec: Add hardware decode API

2024-09-30 Thread Nuo Mi
On Wed, Sep 18, 2024 at 3:19 PM wrote: > From: Fei Wang > > Signed-off-by: Fei Wang > --- > libavcodec/vvc/dec.c | 73 +-- > libavcodec/vvc/dec.h | 4 +++ > libavcodec/vvc/refs.c | 6 > 3 files changed, 73 insertions(+), 10 deletions(-) > > diff

Re: [FFmpeg-devel] [PATCH v2 7/8] lavc/vvc_dec: Add hardware decode API

2024-09-23 Thread Anton Khirnov
Quoting Wang, Fei W (2024-09-23 10:40:14) > On Mon, 2024-09-23 at 06:37 +0200, Anton Khirnov wrote: > > Quoting fei.w.wang-at-intel@ffmpeg.org (2024-09-18 09:10:30) > > >  static void export_frame_params(VVCContext *s, const > > > VVCFrameContext *fc) > > >  { > > > AVCodecContext *c = s->

Re: [FFmpeg-devel] [PATCH v2 7/8] lavc/vvc_dec: Add hardware decode API

2024-09-23 Thread Wang, Fei W
On Mon, 2024-09-23 at 06:37 +0200, Anton Khirnov wrote: > Quoting fei.w.wang-at-intel@ffmpeg.org (2024-09-18 09:10:30) > >  static void export_frame_params(VVCContext *s, const > > VVCFrameContext *fc) > >  { > > AVCodecContext *c = s->avctx; > > const VVCSPS *sps = fc->ps.sps; > >   

Re: [FFmpeg-devel] [PATCH v2 7/8] lavc/vvc_dec: Add hardware decode API

2024-09-22 Thread Anton Khirnov
Quoting fei.w.wang-at-intel@ffmpeg.org (2024-09-18 09:10:30) > static void export_frame_params(VVCContext *s, const VVCFrameContext *fc) > { > AVCodecContext *c = s->avctx; > const VVCSPS *sps = fc->ps.sps; > const VVCPPS *pps = fc->ps.pps; > > -c->pix_fmt = sps->pix

[FFmpeg-devel] [PATCH v2 7/8] lavc/vvc_dec: Add hardware decode API

2024-09-18 Thread fei . w . wang-at-intel . com
From: Fei Wang Signed-off-by: Fei Wang --- libavcodec/vvc/dec.c | 73 +-- libavcodec/vvc/dec.h | 4 +++ libavcodec/vvc/refs.c | 6 3 files changed, 73 insertions(+), 10 deletions(-) diff --git a/libavcodec/vvc/dec.c b/libavcodec/vvc/dec.c index