Commit f5e62ab2 authored by andoma's avatar andoma

w32thread: Make avcodec_thread_execute2() static here as well


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@22325 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 247ce16d
......@@ -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++)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment