w32thread: Make avcodec_thread_execute2() static here as well

Originally committed as revision 22325 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Andreas Öman 2010-03-08 12:58:22 +00:00
parent e31fefd448
commit 9b066ecbf0
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ int avcodec_thread_execute(AVCodecContext *s, int (*func)(AVCodecContext *c2, vo
return 0; 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; ThreadContext *c= s->thread_opaque;
int i; int i;
for(i=0; i<s->thread_count; i++) for(i=0; i<s->thread_count; i++)