summaryrefslogtreecommitdiff
path: root/libavcodec/beosthread.c
diff options
context:
space:
mode:
authorBenoit Fouet <benoit.fouet@free.fr>2010-03-15 14:03:01 +0000
committerBenoit Fouet <benoit.fouet@free.fr>2010-03-15 14:03:01 +0000
commit4a287145c2838aaef61c927fd5311fff643845ef (patch)
tree48ac8f2c2fda70a98e45ca9ae1819c057ce5f7e5 /libavcodec/beosthread.c
parentb1d55e5e4f9090a67de552e9829208b500d0b1c3 (diff)
Remove avcodec_thread_execute from avcodec.h, and make static functions that
need it in *thread.c. Originally committed as revision 22544 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/beosthread.c')
-rw-r--r--libavcodec/beosthread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/beosthread.c b/libavcodec/beosthread.c
index 290e48c93f..44fe492c4b 100644
--- a/libavcodec/beosthread.c
+++ b/libavcodec/beosthread.c
@@ -92,7 +92,7 @@ void avcodec_thread_free(AVCodecContext *s){
av_freep(&s->thread_opaque);
}
-int avcodec_thread_execute(AVCodecContext *s, int (*func)(AVCodecContext *c2, void *arg2),void *arg, int *ret, int count, int size){
+static int avcodec_thread_execute(AVCodecContext *s, int (*func)(AVCodecContext *c2, void *arg2),void *arg, int *ret, int count, int size){
ThreadContext *c= s->thread_opaque;
int i;