diff options
author | Andreas Öman <andreas@lonelycoder.com> | 2010-03-08 12:55:54 +0000 |
---|---|---|
committer | Andreas Öman <andreas@lonelycoder.com> | 2010-03-08 12:55:54 +0000 |
commit | e31fefd4485eacaea189573fda3610585e0e21bc (patch) | |
tree | 680552a3c082efc17d62dedf2ef6e77f9d358dca /libavcodec/pthread.c | |
parent | 002a6d0ea62712f3a076f3108b5d6bf767cdda9a (diff) | |
download | ffmpeg-e31fefd4485eacaea189573fda3610585e0e21bc.tar.gz |
Make avcodec_thread_execute2() static
Originally committed as revision 22324 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/pthread.c')
-rw-r--r-- | libavcodec/pthread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/pthread.c b/libavcodec/pthread.c index 60c82cd715..b642d3e2e3 100644 --- a/libavcodec/pthread.c +++ b/libavcodec/pthread.c @@ -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; |