Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Öman <andreas@lonelycoder.com>2010-03-08 15:58:22 +0300
committerAndreas Öman <andreas@lonelycoder.com>2010-03-08 15:58:22 +0300
commit9b066ecbf01362fb3e7596604301f3c492c3b893 (patch)
treeb0998285ab4fc9de4bb0a63d12f77852c43743dd /libavcodec
parente31fefd4485eacaea189573fda3610585e0e21bc (diff)
w32thread: Make avcodec_thread_execute2() static here as well
Originally committed as revision 22325 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/w32thread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/w32thread.c b/libavcodec/w32thread.c
index 4b8145729e..e3fb372922 100644
--- a/libavcodec/w32thread.c
+++ b/libavcodec/w32thread.c
@@ -116,7 +116,7 @@ int avcodec_thread_execute(AVCodecContext *s, int (*func)(AVCodecContext *c2, vo
return 0;
}
-int avcodec_thread_execute2(AVCodecContext *s, int (*func)(AVCodecContext *c2, void *arg2, int, int),void *arg, int *ret, int count){
+static int avcodec_thread_execute2(AVCodecContext *s, int (*func)(AVCodecContext *c2, void *arg2, int, int),void *arg, int *ret, int count){
ThreadContext *c= s->thread_opaque;
int i;
for(i=0; i<s->thread_count; i++)