Make avcodec_thread_execute2() static
authorAndreas Öman <andreas@lonelycoder.com>
Mon, 8 Mar 2010 12:55:54 +0000 (12:55 +0000)
committerAndreas Öman <andreas@lonelycoder.com>
Mon, 8 Mar 2010 12:55:54 +0000 (12:55 +0000)
Originally committed as revision 22324 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/pthread.c

index 60c82cd..b642d3e 100644 (file)
@@ -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;