fftools/ffmpeg: remove unncessary casts for *_thread() return values

These functions used to be passed directly to pthread_create(), which
required them to return void*. This is no longer the case, so they can
return a plain int.
This commit is contained in:
Anton Khirnov 2024-02-22 16:02:21 +01:00
parent f5d03b972c
commit 2ee9362419
8 changed files with 16 additions and 16 deletions

View File

@ -832,7 +832,7 @@ void update_benchmark(const char *fmt, ...);
const char *opt_match_per_type_str(const SpecifierOptList *sol, const char *opt_match_per_type_str(const SpecifierOptList *sol,
char mediatype); char mediatype);
void *muxer_thread(void *arg); int muxer_thread(void *arg);
void *encoder_thread(void *arg); int encoder_thread(void *arg);
#endif /* FFTOOLS_FFMPEG_H */ #endif /* FFTOOLS_FFMPEG_H */

View File

@ -124,7 +124,7 @@ static const AVClass dec_class = {
.item_name = dec_item_name, .item_name = dec_item_name,
}; };
static void *decoder_thread(void *arg); static int decoder_thread(void *arg);
static int dec_alloc(DecoderPriv **pdec, Scheduler *sch, int send_end_ts) static int dec_alloc(DecoderPriv **pdec, Scheduler *sch, int send_end_ts)
{ {
@ -789,7 +789,7 @@ fail:
return AVERROR(ENOMEM); return AVERROR(ENOMEM);
} }
static void *decoder_thread(void *arg) static int decoder_thread(void *arg)
{ {
DecoderPriv *dp = arg; DecoderPriv *dp = arg;
DecThreadContext dt; DecThreadContext dt;
@ -884,7 +884,7 @@ static void *decoder_thread(void *arg)
finish: finish:
dec_thread_uninit(&dt); dec_thread_uninit(&dt);
return (void*)(intptr_t)ret; return ret;
} }
static enum AVPixelFormat get_format(AVCodecContext *s, const enum AVPixelFormat *pix_fmts) static enum AVPixelFormat get_format(AVCodecContext *s, const enum AVPixelFormat *pix_fmts)

View File

@ -675,7 +675,7 @@ static int demux_thread_init(DemuxThreadContext *dt)
return 0; return 0;
} }
static void *input_thread(void *arg) static int input_thread(void *arg)
{ {
Demuxer *d = arg; Demuxer *d = arg;
InputFile *f = &d->f; InputFile *f = &d->f;
@ -780,7 +780,7 @@ static void *input_thread(void *arg)
finish: finish:
demux_thread_uninit(&dt); demux_thread_uninit(&dt);
return (void*)(intptr_t)ret; return ret;
} }
static void demux_final_stats(Demuxer *d) static void demux_final_stats(Demuxer *d)

View File

@ -870,7 +870,7 @@ fail:
return AVERROR(ENOMEM); return AVERROR(ENOMEM);
} }
void *encoder_thread(void *arg) int encoder_thread(void *arg)
{ {
OutputStream *ost = arg; OutputStream *ost = arg;
Encoder *e = ost->enc; Encoder *e = ost->enc;
@ -948,5 +948,5 @@ void *encoder_thread(void *arg)
finish: finish:
enc_thread_uninit(&et); enc_thread_uninit(&et);
return (void*)(intptr_t)ret; return ret;
} }

View File

@ -626,7 +626,7 @@ static int ifilter_has_all_input_formats(FilterGraph *fg)
return 1; return 1;
} }
static void *filter_thread(void *arg); static int filter_thread(void *arg);
static char *describe_filter_link(FilterGraph *fg, AVFilterInOut *inout, int in) static char *describe_filter_link(FilterGraph *fg, AVFilterInOut *inout, int in)
{ {
@ -2729,7 +2729,7 @@ fail:
return AVERROR(ENOMEM); return AVERROR(ENOMEM);
} }
static void *filter_thread(void *arg) static int filter_thread(void *arg)
{ {
FilterGraphPriv *fgp = arg; FilterGraphPriv *fgp = arg;
FilterGraph *fg = &fgp->fg; FilterGraph *fg = &fgp->fg;
@ -2843,7 +2843,7 @@ finish:
fg_thread_uninit(&fgt); fg_thread_uninit(&fgt);
return (void*)(intptr_t)ret; return ret;
} }
void fg_send_command(FilterGraph *fg, double time, const char *target, void fg_send_command(FilterGraph *fg, double time, const char *target,

View File

@ -404,7 +404,7 @@ fail:
return AVERROR(ENOMEM); return AVERROR(ENOMEM);
} }
void *muxer_thread(void *arg) int muxer_thread(void *arg)
{ {
Muxer *mux = arg; Muxer *mux = arg;
OutputFile *of = &mux->of; OutputFile *of = &mux->of;
@ -453,7 +453,7 @@ void *muxer_thread(void *arg)
finish: finish:
mux_thread_uninit(&mt); mux_thread_uninit(&mt);
return (void*)(intptr_t)ret; return ret;
} }
static int of_streamcopy(OutputFile *of, OutputStream *ost, AVPacket *pkt) static int of_streamcopy(OutputFile *of, OutputStream *ost, AVPacket *pkt)

View File

@ -2226,7 +2226,7 @@ static void *task_wrapper(void *arg)
int ret; int ret;
int err = 0; int err = 0;
ret = (intptr_t)task->func(task->func_arg); ret = task->func(task->func_arg);
if (ret < 0) if (ret < 0)
av_log(task->func_arg, AV_LOG_ERROR, av_log(task->func_arg, AV_LOG_ERROR,
"Task finished with error code: %d (%s)\n", ret, av_err2str(ret)); "Task finished with error code: %d (%s)\n", ret, av_err2str(ret));

View File

@ -102,7 +102,7 @@ typedef struct SchedulerNode {
unsigned idx_stream; unsigned idx_stream;
} SchedulerNode; } SchedulerNode;
typedef void* (*SchThreadFunc)(void *arg); typedef int (*SchThreadFunc)(void *arg);
#define SCH_DSTREAM(file, stream) \ #define SCH_DSTREAM(file, stream) \
(SchedulerNode){ .type = SCH_NODE_TYPE_DEMUX, \ (SchedulerNode){ .type = SCH_NODE_TYPE_DEMUX, \