Re: [FFmpeg-devel] [PATCH v6 14/14] vvcdec: add full vvc decoder

2023-12-10 Thread Nuo Mi
On Sat, Dec 9, 2023 at 1:13 PM Andreas Rheinhardt < andreas.rheinha...@outlook.com> wrote: > Nuo Mi: > > Hi Andreas, > > thank you for the review. > > On Fri, Dec 8, 2023 at 8:17 PM Andreas Rheinhardt < > > andreas.rheinha...@outlook.com> wrote: > > > >> > >>> + > >>> +static int min_pu_arrays_ini

Re: [FFmpeg-devel] [PATCH v6 14/14] vvcdec: add full vvc decoder

2023-12-08 Thread Andreas Rheinhardt
Nuo Mi: > Hi Andreas, > thank you for the review. > On Fri, Dec 8, 2023 at 8:17 PM Andreas Rheinhardt < > andreas.rheinha...@outlook.com> wrote: > >> >>> + >>> +static int min_pu_arrays_init(VVCFrameContext *fc, const int >> pic_size_in_min_pu) >>> +{ >>> +if (fc->tab.pic_size_in_min_pu != pic

Re: [FFmpeg-devel] [PATCH v6 14/14] vvcdec: add full vvc decoder

2023-12-08 Thread Nuo Mi
Hi Andreas, thank you for the review. On Fri, Dec 8, 2023 at 8:17 PM Andreas Rheinhardt < andreas.rheinha...@outlook.com> wrote: > > > + > > +static int min_pu_arrays_init(VVCFrameContext *fc, const int > pic_size_in_min_pu) > > +{ > > +if (fc->tab.pic_size_in_min_pu != pic_size_in_min_pu) { >

Re: [FFmpeg-devel] [PATCH v6 14/14] vvcdec: add full vvc decoder

2023-12-08 Thread Andreas Rheinhardt
Nuo Mi: > vvc decoder plug-in to avcodec. > split frames into slices/tiles and send them to vvc_thread for further > decoding > reorder and wait for the frame decoding to be done and output the frame > > Features: > + Support I, P, B frames > + Support 8/10/12 bits, chroma 400, 420, 422,

Re: [FFmpeg-devel] [PATCH v6 14/14] vvcdec: add full vvc decoder

2023-12-05 Thread Nuo Mi
On Tue, Dec 5, 2023 at 10:46 PM Nuo Mi wrote: > vvc decoder plug-in to avcodec. > split frames into slices/tiles and send them to vvc_thread for further > decoding > reorder and wait for the frame decoding to be done and output the frame > > Features: > + Support I, P, B frames > + Suppor

[FFmpeg-devel] [PATCH v6 14/14] vvcdec: add full vvc decoder

2023-12-05 Thread Nuo Mi
vvc decoder plug-in to avcodec. split frames into slices/tiles and send them to vvc_thread for further decoding reorder and wait for the frame decoding to be done and output the frame Features: + Support I, P, B frames + Support 8/10/12 bits, chroma 400, 420, 422, and 444 and range extensi