Commit 247ce16d authored by andoma's avatar andoma

Make avcodec_thread_execute2() static



git-svn-id: file:///var/local/repositories/ffmpeg/trunk@22324 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 71daf320
...@@ -133,7 +133,7 @@ int avcodec_thread_execute(AVCodecContext *avctx, action_func* func, void *arg, ...@@ -133,7 +133,7 @@ int avcodec_thread_execute(AVCodecContext *avctx, action_func* func, void *arg,
return 0; 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; ThreadContext *c= avctx->thread_opaque;
c->func2 = func2; c->func2 = func2;
......
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