diff options
author | Andreas Öman <andreas@lonelycoder.com> | 2010-03-08 12:58:22 +0000 |
---|---|---|
committer | Andreas Öman <andreas@lonelycoder.com> | 2010-03-08 12:58:22 +0000 |
commit | 9b066ecbf01362fb3e7596604301f3c492c3b893 (patch) | |
tree | b0998285ab4fc9de4bb0a63d12f77852c43743dd | |
parent | e31fefd4485eacaea189573fda3610585e0e21bc (diff) | |
download | ffmpeg-9b066ecbf01362fb3e7596604301f3c492c3b893.tar.gz |
w32thread: Make avcodec_thread_execute2() static here as well
Originally committed as revision 22325 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/w32thread.c | 2 |
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++) |