Re: [FFmpeg-devel] [PATCH v3] vvcdec: add thread executor

2023-08-15 Thread Nuo Mi
On Tue, Aug 15, 2023 at 12:46 AM Michael Niedermayer wrote: > On Wed, Jul 19, 2023 at 09:13:00PM +0800, Nuo Mi wrote: > > The executor design pattern was inroduced by java > > < > https://docs.oracle.com/en/java/javase/20/docs/api/java.base/java/util/concurrent/Executor.html > > > > it also adapt

Re: [FFmpeg-devel] [PATCH v3] vvcdec: add thread executor

2023-08-14 Thread Michael Niedermayer
On Wed, Jul 19, 2023 at 09:13:00PM +0800, Nuo Mi wrote: > The executor design pattern was inroduced by java > > it also adapted by python > >

[FFmpeg-devel] [PATCH v3] vvcdec: add thread executor

2023-07-19 Thread Nuo Mi
The executor design pattern was inroduced by java it also adapted by python Compared to handcrafted thread pool management, it greatly simpli

Re: [FFmpeg-devel] [PATCH v3] vvcdec: add thread executor

2023-07-19 Thread Nuo Mi
On Wed, Jul 19, 2023 at 9:13 PM Nuo Mi wrote: > The executor design pattern was inroduced by java > < > https://docs.oracle.com/en/java/javase/20/docs/api/java.base/java/util/concurrent/Executor.html > > > it also adapted by python > > C