[FFmpeg-cvslog] r22544 - in trunk/libavcodec: avcodec.h beosthread.c os2thread.c pthread.c w32thread.c
benoit
subversion
Mon Mar 15 15:03:02 CET 2010
Author: benoit
Date: Mon Mar 15 15:03:01 2010
New Revision: 22544
Log:
Remove avcodec_thread_execute from avcodec.h, and make static functions that
need it in *thread.c.
Modified:
trunk/libavcodec/avcodec.h
trunk/libavcodec/beosthread.c
trunk/libavcodec/os2thread.c
trunk/libavcodec/pthread.c
trunk/libavcodec/w32thread.c
Modified: trunk/libavcodec/avcodec.h
==============================================================================
--- trunk/libavcodec/avcodec.h Mon Mar 15 11:37:12 2010 (r22543)
+++ trunk/libavcodec/avcodec.h Mon Mar 15 15:03:01 2010 (r22544)
@@ -3256,7 +3256,6 @@ enum PixelFormat avcodec_default_get_for
int avcodec_thread_init(AVCodecContext *s, int thread_count);
void avcodec_thread_free(AVCodecContext *s);
-int avcodec_thread_execute(AVCodecContext *s, int (*func)(AVCodecContext *c2, void *arg2),void *arg, int *ret, int count, int size);
int avcodec_default_execute(AVCodecContext *c, int (*func)(AVCodecContext *c2, void *arg2),void *arg, int *ret, int count, int size);
int avcodec_default_execute2(AVCodecContext *c, int (*func)(AVCodecContext *c2, void *arg2, int, int),void *arg, int *ret, int count);
//FIXME func typedef
Modified: trunk/libavcodec/beosthread.c
==============================================================================
--- trunk/libavcodec/beosthread.c Mon Mar 15 11:37:12 2010 (r22543)
+++ trunk/libavcodec/beosthread.c Mon Mar 15 15:03:01 2010 (r22544)
@@ -92,7 +92,7 @@ void avcodec_thread_free(AVCodecContext
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;
Modified: trunk/libavcodec/os2thread.c
==============================================================================
--- trunk/libavcodec/os2thread.c Mon Mar 15 11:37:12 2010 (r22543)
+++ trunk/libavcodec/os2thread.c Mon Mar 15 15:03:01 2010 (r22544)
@@ -39,7 +39,7 @@ typedef struct ThreadContext{
}ThreadContext;
-void attribute_align_arg thread_func(void *v){
+static void attribute_align_arg thread_func(void *v){
ThreadContext *c= v;
for(;;){
@@ -81,7 +81,7 @@ void avcodec_thread_free(AVCodecContext
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;
Modified: trunk/libavcodec/pthread.c
==============================================================================
--- trunk/libavcodec/pthread.c Mon Mar 15 11:37:12 2010 (r22543)
+++ trunk/libavcodec/pthread.c Mon Mar 15 15:03:01 2010 (r22544)
@@ -104,7 +104,7 @@ void avcodec_thread_free(AVCodecContext
av_freep(&avctx->thread_opaque);
}
-int avcodec_thread_execute(AVCodecContext *avctx, action_func* func, void *arg, int *ret, int job_count, int job_size)
+static int avcodec_thread_execute(AVCodecContext *avctx, action_func* func, void *arg, int *ret, int job_count, int job_size)
{
ThreadContext *c= avctx->thread_opaque;
int dummy_ret;
Modified: trunk/libavcodec/w32thread.c
==============================================================================
--- trunk/libavcodec/w32thread.c Mon Mar 15 11:37:12 2010 (r22543)
+++ trunk/libavcodec/w32thread.c Mon Mar 15 15:03:01 2010 (r22544)
@@ -93,7 +93,7 @@ void avcodec_thread_free(AVCodecContext
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;
int jobnr = 0;
More information about the ffmpeg-cvslog
mailing list