Commit ef1c0b52 authored by Michael Niedermayer's avatar Michael Niedermayer

avfiltergraph: add some debug info about selected pixel formats

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 6a314d59
...@@ -430,6 +430,9 @@ static int pick_format(AVFilterLink *link, AVFilterLink *ref) ...@@ -430,6 +430,9 @@ static int pick_format(AVFilterLink *link, AVFilterLink *ref)
enum PixelFormat p = link->in_formats->formats[i]; enum PixelFormat p = link->in_formats->formats[i];
best= avcodec_find_best_pix_fmt2(best, p, ref->format, has_alpha, NULL); best= avcodec_find_best_pix_fmt2(best, p, ref->format, has_alpha, NULL);
} }
av_log(link->src,AV_LOG_DEBUG, "picking %s out of %d ref:%s alpha:%d\n",
av_get_pix_fmt_name(best), link->in_formats->format_count,
av_get_pix_fmt_name(ref->format), has_alpha);
link->in_formats->formats[0] = best; link->in_formats->formats[0] = best;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment