From e31fefd4485eacaea189573fda3610585e0e21bc Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Andreas=20=C3=96man?= <andreas@lonelycoder.com>
Date: Mon, 8 Mar 2010 12:55:54 +0000
Subject: [PATCH] Make avcodec_thread_execute2() static

Originally committed as revision 22324 to svn://svn.ffmpeg.org/ffmpeg/trunk
---
 libavcodec/pthread.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/pthread.c b/libavcodec/pthread.c
index 60c82cd7150..b642d3e2e3c 100644
--- a/libavcodec/pthread.c
+++ b/libavcodec/pthread.c
@@ -133,7 +133,7 @@ int avcodec_thread_execute(AVCodecContext *avctx, action_func* func, void *arg,
     return 0;
 }
 
-int avcodec_thread_execute2(AVCodecContext *avctx, action_func2* func2, void *arg, int *ret, int job_count)
+static int avcodec_thread_execute2(AVCodecContext *avctx, action_func2* func2, void *arg, int *ret, int job_count)
 {
     ThreadContext *c= avctx->thread_opaque;
     c->func2 = func2;
-- 
GitLab