]> git.sesse.net Git - ffmpeg/blobdiff - libavfilter/internal.h
Merge commit '1cac9accbd1f9b8596122d0735e37b97a844c514'
[ffmpeg] / libavfilter / internal.h
index 1e8cd589fbc6a850f283609f391615a2387a73c9..5ea3cad159022ac765537e171aca91d7271e41fe 100644 (file)
@@ -146,13 +146,11 @@ struct AVFilterPad {
 
 struct AVFilterGraphInternal {
     void *thread;
-    int (*thread_execute)(AVFilterContext *ctx, action_func *func, void *arg,
-                          int *ret, int nb_jobs);
+    avfilter_execute_func *thread_execute;
 };
 
 struct AVFilterInternal {
-    int (*execute)(AVFilterContext *ctx, action_func *func, void *arg,
-                   int *ret, int nb_jobs);
+    avfilter_execute_func *execute;
 };
 
 #if FF_API_AVFILTERBUFFER