fftools/ffmpeg_filter: use proper logging contexts

This commit is contained in:
Anton Khirnov 2024-10-14 12:16:31 +02:00
parent ad50254ee1
commit e79ac9312f
1 changed files with 35 additions and 28 deletions

View File

@ -325,7 +325,8 @@ static void sub2video_push_ref(InputFilterPriv *ifp, int64_t pts)
AV_BUFFERSRC_FLAG_KEEP_REF | AV_BUFFERSRC_FLAG_KEEP_REF |
AV_BUFFERSRC_FLAG_PUSH); AV_BUFFERSRC_FLAG_PUSH);
if (ret != AVERROR_EOF && ret < 0) if (ret != AVERROR_EOF && ret < 0)
av_log(NULL, AV_LOG_WARNING, "Error while add the frame to buffer source(%s).\n", av_log(ifp->ifilter.graph, AV_LOG_WARNING,
"Error while add the frame to buffer source(%s).\n",
av_err2str(ret)); av_err2str(ret));
} }
@ -355,7 +356,7 @@ static void sub2video_update(InputFilterPriv *ifp, int64_t heartbeat_pts,
num_rects = 0; num_rects = 0;
} }
if (sub2video_get_blank_frame(ifp) < 0) { if (sub2video_get_blank_frame(ifp) < 0) {
av_log(NULL, AV_LOG_ERROR, av_log(ifp->ifilter.graph, AV_LOG_ERROR,
"Impossible to get a blank canvas.\n"); "Impossible to get a blank canvas.\n");
return; return;
} }
@ -425,7 +426,8 @@ static void choose_channel_layouts(OutputFilterPriv *ofp, AVBPrint *bprint)
av_bprint_chars(bprint, ':', 1); av_bprint_chars(bprint, ':', 1);
} }
static int read_binary(const char *path, uint8_t **data, int *len) static int read_binary(void *logctx, const char *path,
uint8_t **data, int *len)
{ {
AVIOContext *io = NULL; AVIOContext *io = NULL;
int64_t fsize; int64_t fsize;
@ -436,14 +438,14 @@ static int read_binary(const char *path, uint8_t **data, int *len)
ret = avio_open2(&io, path, AVIO_FLAG_READ, &int_cb, NULL); ret = avio_open2(&io, path, AVIO_FLAG_READ, &int_cb, NULL);
if (ret < 0) { if (ret < 0) {
av_log(NULL, AV_LOG_ERROR, "Cannot open file '%s': %s\n", av_log(logctx, AV_LOG_ERROR, "Cannot open file '%s': %s\n",
path, av_err2str(ret)); path, av_err2str(ret));
return ret; return ret;
} }
fsize = avio_size(io); fsize = avio_size(io);
if (fsize < 0 || fsize > INT_MAX) { if (fsize < 0 || fsize > INT_MAX) {
av_log(NULL, AV_LOG_ERROR, "Cannot obtain size of file %s\n", path); av_log(logctx, AV_LOG_ERROR, "Cannot obtain size of file %s\n", path);
ret = AVERROR(EIO); ret = AVERROR(EIO);
goto fail; goto fail;
} }
@ -456,7 +458,7 @@ static int read_binary(const char *path, uint8_t **data, int *len)
ret = avio_read(io, *data, fsize); ret = avio_read(io, *data, fsize);
if (ret != fsize) { if (ret != fsize) {
av_log(NULL, AV_LOG_ERROR, "Error reading file %s\n", path); av_log(logctx, AV_LOG_ERROR, "Error reading file %s\n", path);
ret = ret < 0 ? ret : AVERROR(EIO); ret = ret < 0 ? ret : AVERROR(EIO);
goto fail; goto fail;
} }
@ -473,7 +475,8 @@ fail:
return ret; return ret;
} }
static int filter_opt_apply(AVFilterContext *f, const char *key, const char *val) static int filter_opt_apply(void *logctx, AVFilterContext *f,
const char *key, const char *val)
{ {
const AVOption *o = NULL; const AVOption *o = NULL;
int ret; int ret;
@ -495,7 +498,7 @@ static int filter_opt_apply(AVFilterContext *f, const char *key, const char *val
uint8_t *data; uint8_t *data;
int len; int len;
ret = read_binary(val, &data, &len); ret = read_binary(logctx, val, &data, &len);
if (ret < 0) if (ret < 0)
goto err_load; goto err_load;
@ -517,18 +520,18 @@ static int filter_opt_apply(AVFilterContext *f, const char *key, const char *val
return 0; return 0;
err_apply: err_apply:
av_log(NULL, AV_LOG_ERROR, av_log(logctx, AV_LOG_ERROR,
"Error applying option '%s' to filter '%s': %s\n", "Error applying option '%s' to filter '%s': %s\n",
key, f->filter->name, av_err2str(ret)); key, f->filter->name, av_err2str(ret));
return ret; return ret;
err_load: err_load:
av_log(NULL, AV_LOG_ERROR, av_log(logctx, AV_LOG_ERROR,
"Error loading value for option '%s' from file '%s'\n", "Error loading value for option '%s' from file '%s'\n",
key, val); key, val);
return ret; return ret;
} }
static int graph_opts_apply(AVFilterGraphSegment *seg) static int graph_opts_apply(void *logctx, AVFilterGraphSegment *seg)
{ {
for (size_t i = 0; i < seg->nb_chains; i++) { for (size_t i = 0; i < seg->nb_chains; i++) {
AVFilterChain *ch = seg->chains[i]; AVFilterChain *ch = seg->chains[i];
@ -540,7 +543,7 @@ static int graph_opts_apply(AVFilterGraphSegment *seg)
av_assert0(p->filter); av_assert0(p->filter);
while ((e = av_dict_iterate(p->opts, e))) { while ((e = av_dict_iterate(p->opts, e))) {
int ret = filter_opt_apply(p->filter, e->key, e->value); int ret = filter_opt_apply(logctx, p->filter, e->key, e->value);
if (ret < 0) if (ret < 0)
return ret; return ret;
} }
@ -552,7 +555,8 @@ static int graph_opts_apply(AVFilterGraphSegment *seg)
return 0; return 0;
} }
static int graph_parse(AVFilterGraph *graph, const char *desc, static int graph_parse(void *logctx,
AVFilterGraph *graph, const char *desc,
AVFilterInOut **inputs, AVFilterInOut **outputs, AVFilterInOut **inputs, AVFilterInOut **outputs,
AVBufferRef *hw_device) AVBufferRef *hw_device)
{ {
@ -584,7 +588,7 @@ static int graph_parse(AVFilterGraph *graph, const char *desc,
} }
} }
ret = graph_opts_apply(seg); ret = graph_opts_apply(logctx, seg);
if (ret < 0) if (ret < 0)
goto fail; goto fail;
@ -1097,7 +1101,7 @@ int fg_create(FilterGraph **pfg, char *graph_desc, Scheduler *sch)
return AVERROR(ENOMEM);; return AVERROR(ENOMEM);;
graph->nb_threads = 1; graph->nb_threads = 1;
ret = graph_parse(graph, fgp->graph_desc, &inputs, &outputs, ret = graph_parse(fg, graph, fgp->graph_desc, &inputs, &outputs,
hw_device_for_filter()); hw_device_for_filter());
if (ret < 0) if (ret < 0)
goto fail; goto fail;
@ -1426,7 +1430,7 @@ int fg_finalise_bindings(void)
return 0; return 0;
} }
static int insert_trim(int64_t start_time, int64_t duration, static int insert_trim(void *logctx, int64_t start_time, int64_t duration,
AVFilterContext **last_filter, int *pad_idx, AVFilterContext **last_filter, int *pad_idx,
const char *filter_name) const char *filter_name)
{ {
@ -1442,7 +1446,7 @@ static int insert_trim(int64_t start_time, int64_t duration,
trim = avfilter_get_by_name(name); trim = avfilter_get_by_name(name);
if (!trim) { if (!trim) {
av_log(NULL, AV_LOG_ERROR, "%s filter not present, cannot limit " av_log(logctx, AV_LOG_ERROR, "%s filter not present, cannot limit "
"recording time.\n", name); "recording time.\n", name);
return AVERROR_FILTER_NOT_FOUND; return AVERROR_FILTER_NOT_FOUND;
} }
@ -1570,7 +1574,7 @@ static int configure_output_video_filter(FilterGraphPriv *fgp, AVFilterGraph *gr
} }
snprintf(name, sizeof(name), "trim_out_%s", ofp->name); snprintf(name, sizeof(name), "trim_out_%s", ofp->name);
ret = insert_trim(ofp->trim_start_us, ofp->trim_duration_us, ret = insert_trim(fgp, ofp->trim_start_us, ofp->trim_duration_us,
&last_filter, &pad_idx, name); &last_filter, &pad_idx, name);
if (ret < 0) if (ret < 0)
return ret; return ret;
@ -1651,7 +1655,7 @@ static int configure_output_audio_filter(FilterGraphPriv *fgp, AVFilterGraph *gr
} }
snprintf(name, sizeof(name), "trim for output %s", ofp->name); snprintf(name, sizeof(name), "trim for output %s", ofp->name);
ret = insert_trim(ofp->trim_start_us, ofp->trim_duration_us, ret = insert_trim(fgp, ofp->trim_start_us, ofp->trim_duration_us,
&last_filter, &pad_idx, name); &last_filter, &pad_idx, name);
if (ret < 0) if (ret < 0)
goto fail; goto fail;
@ -1786,7 +1790,7 @@ static int configure_input_video_filter(FilterGraph *fg, AVFilterGraph *graph,
} }
snprintf(name, sizeof(name), "trim_in_%s", ifp->opts.name); snprintf(name, sizeof(name), "trim_in_%s", ifp->opts.name);
ret = insert_trim(ifp->opts.trim_start_us, ifp->opts.trim_end_us, ret = insert_trim(fg, ifp->opts.trim_start_us, ifp->opts.trim_end_us,
&last_filter, &pad_idx, name); &last_filter, &pad_idx, name);
if (ret < 0) if (ret < 0)
return ret; return ret;
@ -1830,7 +1834,7 @@ static int configure_input_audio_filter(FilterGraph *fg, AVFilterGraph *graph,
last_filter = ifp->filter; last_filter = ifp->filter;
snprintf(name, sizeof(name), "trim for input stream %s", ifp->opts.name); snprintf(name, sizeof(name), "trim for input stream %s", ifp->opts.name);
ret = insert_trim(ifp->opts.trim_start_us, ifp->opts.trim_end_us, ret = insert_trim(fg, ifp->opts.trim_start_us, ifp->opts.trim_end_us,
&last_filter, &pad_idx, name); &last_filter, &pad_idx, name);
if (ret < 0) if (ret < 0)
return ret; return ret;
@ -1935,7 +1939,8 @@ static int configure_filtergraph(FilterGraph *fg, FilterGraphThread *fgt)
hw_device = hw_device_for_filter(); hw_device = hw_device_for_filter();
if ((ret = graph_parse(fgt->graph, graph_desc, &inputs, &outputs, hw_device)) < 0) ret = graph_parse(fg, fgt->graph, graph_desc, &inputs, &outputs, hw_device);
if (ret < 0)
goto fail; goto fail;
for (cur = inputs, i = 0; cur; cur = cur->next, i++) for (cur = inputs, i = 0; cur; cur = cur->next, i++)
@ -2201,8 +2206,8 @@ finish:
return 0; return 0;
} }
static double adjust_frame_pts_to_encoder_tb(AVFrame *frame, AVRational tb_dst, static double adjust_frame_pts_to_encoder_tb(void *logctx, AVFrame *frame,
int64_t start_time) AVRational tb_dst, int64_t start_time)
{ {
double float_pts = AV_NOPTS_VALUE; // this is identical to frame.pts but with higher precision double float_pts = AV_NOPTS_VALUE; // this is identical to frame.pts but with higher precision
@ -2230,7 +2235,8 @@ static double adjust_frame_pts_to_encoder_tb(AVFrame *frame, AVRational tb_dst,
early_exit: early_exit:
if (debug_ts) { if (debug_ts) {
av_log(NULL, AV_LOG_INFO, "filter -> pts:%s pts_time:%s exact:%f time_base:%d/%d\n", av_log(logctx, AV_LOG_INFO,
"filter -> pts:%s pts_time:%s exact:%f time_base:%d/%d\n",
frame ? av_ts2str(frame->pts) : "NULL", frame ? av_ts2str(frame->pts) : "NULL",
av_ts2timestr(frame->pts, &tb_dst), av_ts2timestr(frame->pts, &tb_dst),
float_pts, tb_dst.num, tb_dst.den); float_pts, tb_dst.num, tb_dst.den);
@ -2265,7 +2271,8 @@ static void video_sync_process(OutputFilterPriv *ofp, AVFrame *frame,
duration = frame->duration * av_q2d(frame->time_base) / av_q2d(ofp->tb_out); duration = frame->duration * av_q2d(frame->time_base) / av_q2d(ofp->tb_out);
sync_ipts = adjust_frame_pts_to_encoder_tb(frame, ofp->tb_out, ofp->ts_offset); sync_ipts = adjust_frame_pts_to_encoder_tb(ofilter->graph, frame,
ofp->tb_out, ofp->ts_offset);
/* delta0 is the "drift" between the input frame and /* delta0 is the "drift" between the input frame and
* where it would fall in the output. */ * where it would fall in the output. */
delta0 = sync_ipts - ofp->next_pts; delta0 = sync_ipts - ofp->next_pts;
@ -2744,14 +2751,14 @@ static int send_eof(FilterGraphThread *fgt, InputFilter *ifilter,
if (ifilter_has_all_input_formats(ifilter->graph)) { if (ifilter_has_all_input_formats(ifilter->graph)) {
ret = configure_filtergraph(ifilter->graph, fgt); ret = configure_filtergraph(ifilter->graph, fgt);
if (ret < 0) { if (ret < 0) {
av_log(NULL, AV_LOG_ERROR, "Error initializing filters!\n"); av_log(ifilter->graph, AV_LOG_ERROR, "Error initializing filters!\n");
return ret; return ret;
} }
} }
} }
if (ifp->format < 0) { if (ifp->format < 0) {
av_log(NULL, AV_LOG_ERROR, av_log(ifilter->graph, AV_LOG_ERROR,
"Cannot determine format of input %s after EOF\n", "Cannot determine format of input %s after EOF\n",
ifp->opts.name); ifp->opts.name);
return AVERROR_INVALIDDATA; return AVERROR_INVALIDDATA;