libavfilter/pthread.c
129bb238
 /*
8d4e969a
  * This file is part of FFmpeg.
129bb238
  *
8d4e969a
  * FFmpeg is free software; you can redistribute it and/or
129bb238
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
  * version 2.1 of the License, or (at your option) any later version.
  *
8d4e969a
  * FFmpeg is distributed in the hope that it will be useful,
129bb238
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
8d4e969a
  * License along with FFmpeg; if not, write to the Free Software
129bb238
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
 /**
  * @file
  * Libavfilter multithreading support
  */
 
 #include "config.h"
 
 #include "libavutil/common.h"
 #include "libavutil/cpu.h"
 #include "libavutil/mem.h"
a3620156
 #include "libavutil/thread.h"
22b72de0
 #include "libavutil/slicethread.h"
129bb238
 
 #include "avfilter.h"
 #include "internal.h"
 #include "thread.h"
 
 typedef struct ThreadContext {
     AVFilterGraph *graph;
22b72de0
     AVSliceThread *thread;
0767bfd1
     avfilter_action_func *func;
129bb238
 
17d41220
     /* per-execute parameters */
129bb238
     AVFilterContext *ctx;
     void *arg;
     int   *rets;
 } ThreadContext;
 
22b72de0
 static void worker_func(void *priv, int jobnr, int threadnr, int nb_jobs, int nb_threads)
129bb238
 {
22b72de0
     ThreadContext *c = priv;
     int ret = c->func(c->ctx, c->arg, jobnr, nb_jobs);
     if (c->rets)
         c->rets[jobnr] = ret;
129bb238
 }
 
 static void slice_thread_uninit(ThreadContext *c)
 {
22b72de0
     avpriv_slicethread_free(&c->thread);
129bb238
 }
 
0767bfd1
 static int thread_execute(AVFilterContext *ctx, avfilter_action_func *func,
129bb238
                           void *arg, int *ret, int nb_jobs)
 {
     ThreadContext *c = ctx->graph->internal->thread;
 
     if (nb_jobs <= 0)
         return 0;
     c->ctx         = ctx;
     c->arg         = arg;
     c->func        = func;
473f0f75
     c->rets        = ret;
129bb238
 
22b72de0
     avpriv_slicethread_execute(c->thread, nb_jobs, 0);
129bb238
     return 0;
 }
 
50612484
 static int thread_init_internal(ThreadContext *c, int nb_threads)
129bb238
 {
22b72de0
     nb_threads = avpriv_slicethread_create(&c->thread, c, worker_func, NULL, nb_threads);
129bb238
     if (nb_threads <= 1)
22b72de0
         avpriv_slicethread_free(&c->thread);
     return FFMAX(nb_threads, 1);
129bb238
 }
 
 int ff_graph_thread_init(AVFilterGraph *graph)
 {
     int ret;
 
 #if HAVE_W32THREADS
     w32thread_init();
 #endif
 
     if (graph->nb_threads == 1) {
         graph->thread_type = 0;
         return 0;
     }
 
     graph->internal->thread = av_mallocz(sizeof(ThreadContext));
     if (!graph->internal->thread)
         return AVERROR(ENOMEM);
 
50612484
     ret = thread_init_internal(graph->internal->thread, graph->nb_threads);
129bb238
     if (ret <= 1) {
         av_freep(&graph->internal->thread);
         graph->thread_type = 0;
         graph->nb_threads  = 1;
         return (ret < 0) ? ret : 0;
     }
     graph->nb_threads = ret;
 
     graph->internal->thread_execute = thread_execute;
 
     return 0;
 }
 
 void ff_graph_thread_free(AVFilterGraph *graph)
 {
     if (graph->internal->thread)
         slice_thread_uninit(graph->internal->thread);
     av_freep(&graph->internal->thread);
 }