Re: [FFmpeg-devel] [PATCH 2/7] sws: add jobs option, distinct from threads

2022-09-21 Thread James Almer
On 9/20/2022 2:50 PM, rcombs wrote: This allows for more efficient use of asymmetric-multiprocessing systems. --- libswscale/options.c | 2 ++ libswscale/swscale_internal.h | 1 + libswscale/utils.c| 9 ++--- libswscale/version.h | 2 +- 4 files changed, 10

Re: [FFmpeg-devel] [PATCH 2/7] sws: add jobs option, distinct from threads

2022-09-21 Thread Michael Niedermayer
On Wed, Sep 21, 2022 at 10:37:04AM +0200, Michael Niedermayer wrote: > On Tue, Sep 20, 2022 at 12:50:16PM -0500, rcombs wrote: > > This allows for more efficient use of asymmetric-multiprocessing systems. > > --- > > libswscale/options.c | 2 ++ > > libswscale/swscale_internal.h | 1 + > >

Re: [FFmpeg-devel] [PATCH 2/7] sws: add jobs option, distinct from threads

2022-09-21 Thread Michael Niedermayer
On Tue, Sep 20, 2022 at 12:50:16PM -0500, rcombs wrote: > This allows for more efficient use of asymmetric-multiprocessing systems. > --- > libswscale/options.c | 2 ++ > libswscale/swscale_internal.h | 1 + > libswscale/utils.c| 9 ++--- > libswscale/version.h |

[FFmpeg-devel] [PATCH 2/7] sws: add jobs option, distinct from threads

2022-09-20 Thread rcombs
This allows for more efficient use of asymmetric-multiprocessing systems. --- libswscale/options.c | 2 ++ libswscale/swscale_internal.h | 1 + libswscale/utils.c| 9 ++--- libswscale/version.h | 2 +- 4 files changed, 10 insertions(+), 4 deletions(-) diff --git