You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
lavfi: print the error message when threading init fails.
This commit is contained in:
@@ -193,7 +193,7 @@ AVFilterContext *avfilter_graph_alloc_filter(AVFilterGraph *graph,
|
||||
} else {
|
||||
int ret = ff_graph_thread_init(graph);
|
||||
if (ret < 0) {
|
||||
av_log(graph, AV_LOG_ERROR, "Error initializing threading.\n");
|
||||
av_log(graph, AV_LOG_ERROR, "Error initializing threading: %s.\n", av_err2str(ret));
|
||||
return NULL;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user