diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2013-08-29 00:28:26 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2013-09-01 11:34:18 +0200 |
commit | 291ad12ea2d1f9297d4ed22d54f4f8fa232e43dc (patch) | |
tree | 59e165306b54e4f42e4a0a6d955b2ef1b208e1f3 /ffprobe.c | |
parent | 51b01573e536aedc5fae237b0bea608e195baf91 (diff) | |
download | ffmpeg-291ad12ea2d1f9297d4ed22d54f4f8fa232e43dc.tar.gz |
ffprobe: show probe_score in the format section
Should address trac ticket #2621.
Diffstat (limited to 'ffprobe.c')
-rw-r--r-- | ffprobe.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1867,6 +1867,7 @@ static void show_format(WriterContext *w, AVFormatContext *fmt_ctx) else print_str_opt("size", "N/A"); if (fmt_ctx->bit_rate > 0) print_val ("bit_rate", fmt_ctx->bit_rate, unit_bit_per_second_str); else print_str_opt("bit_rate", "N/A"); + print_int("probe_score", av_format_get_probe_score(fmt_ctx)); show_tags(w, fmt_ctx->metadata, SECTION_ID_FORMAT_TAGS); writer_print_section_footer(w); |