1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-21 10:55:51 +02:00

lavfi/avfiltergraph: print query_formats errors.

This commit is contained in:
Nicolas George 2012-12-31 14:40:33 +01:00
parent 5f12d5ad78
commit 11ab2c25b6

View File

@ -195,8 +195,11 @@ static int filter_query_formats(AVFilterContext *ctx)
ctx->outputs && ctx->outputs[0] ? ctx->outputs[0]->type :
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;
}
formats = ff_all_formats(type);
if (!formats)