lavfi/avfiltergraph: print query_formats errors.
This commit is contained in:
parent
5f12d5ad78
commit
11ab2c25b6
@ -195,8 +195,11 @@ static int filter_query_formats(AVFilterContext *ctx)
|
|||||||
ctx->outputs && ctx->outputs[0] ? ctx->outputs[0]->type :
|
ctx->outputs && ctx->outputs[0] ? ctx->outputs[0]->type :
|
||||||
AVMEDIA_TYPE_VIDEO;
|
AVMEDIA_TYPE_VIDEO;
|
||||||
|
|
||||||
if ((ret = ctx->filter->query_formats(ctx)) < 0)
|
if ((ret = ctx->filter->query_formats(ctx)) < 0) {
|
||||||
|
av_log(ctx, AV_LOG_ERROR, "Query format failed for '%s': %s\n",
|
||||||
|
ctx->name, av_err2str(ret));
|
||||||
return ret;
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
formats = ff_all_formats(type);
|
formats = ff_all_formats(type);
|
||||||
if (!formats)
|
if (!formats)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user