Re: [FFmpeg-devel] [PATCH v3 1/3] avcodec: make a local copy of executor

2024-10-04 Thread Nuo Mi
> >> >> Should probably use a different namespace for this header, to ensure it >> doesn't conflict with the lavu one. So just prefix everything with FF >> instead of AV. >> > Sure. It is fixed by v4. > v4 applied. ___ ffmpeg-devel mailing list ffmpeg-dev

Re: [FFmpeg-devel] [PATCH v3 1/3] avcodec: make a local copy of executor

2024-10-01 Thread Nuo Mi
On Wed, Oct 2, 2024 at 12:31 AM James Almer wrote: > On 10/1/2024 10:54 AM, Nuo Mi wrote: > > We still need several refactors to improve the current VVC decoder's > performance, > > which will frequently break the API/ABI. To mitigate this, we've copied > the executor from > > avutil to avcodec.

[FFmpeg-devel] [PATCH v3 1/3] avcodec: make a local copy of executor

2024-10-01 Thread Nuo Mi
We still need several refactors to improve the current VVC decoder's performance, which will frequently break the API/ABI. To mitigate this, we've copied the executor from avutil to avcodec. Once the API/ABI is stable, we will move this class back to avutil --- libavcodec/Makefile | 1 +

Re: [FFmpeg-devel] [PATCH v3 1/3] avcodec: make a local copy of executor

2024-10-01 Thread James Almer
On 10/1/2024 10:54 AM, Nuo Mi wrote: We still need several refactors to improve the current VVC decoder's performance, which will frequently break the API/ABI. To mitigate this, we've copied the executor from avutil to avcodec. Once the API/ABI is stable, we will move this class back to avutil