提交 c4687bf6 编写于 作者: D Diego Biurrun

Avoid invasion of POSIX-reserved _t namespace.

Originally committed as revision 16144 to svn://svn.ffmpeg.org/ffmpeg/trunk
上级 40a19c44
...@@ -25,11 +25,11 @@ ...@@ -25,11 +25,11 @@
#include "avcodec.h" #include "avcodec.h"
typedef int (action_t)(AVCodecContext *c, void *arg); typedef int (action_func)(AVCodecContext *c, void *arg);
typedef struct ThreadContext { typedef struct ThreadContext {
pthread_t *workers; pthread_t *workers;
action_t *func; action_func *func;
void *args; void *args;
int *rets; int *rets;
int rets_count; int rets_count;
...@@ -101,7 +101,7 @@ void avcodec_thread_free(AVCodecContext *avctx) ...@@ -101,7 +101,7 @@ void avcodec_thread_free(AVCodecContext *avctx)
av_freep(&avctx->thread_opaque); av_freep(&avctx->thread_opaque);
} }
int avcodec_thread_execute(AVCodecContext *avctx, action_t* func, void *arg, int *ret, int job_count, int job_size) int avcodec_thread_execute(AVCodecContext *avctx, action_func* func, void *arg, int *ret, int job_count, int job_size)
{ {
ThreadContext *c= avctx->thread_opaque; ThreadContext *c= avctx->thread_opaque;
int dummy_ret; int dummy_ret;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册