[FFmpeg-cvslog] ffprobe: show probe_score in the format section
Stefano Sabatini
git at videolan.org
Sun Sep 1 11:40:32 CEST 2013
ffmpeg | branch: master | Stefano Sabatini <stefasab at gmail.com> | Thu Aug 29 00:28:26 2013 +0200| [291ad12ea2d1f9297d4ed22d54f4f8fa232e43dc] | committer: Stefano Sabatini
ffprobe: show probe_score in the format section
Should address trac ticket #2621.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=291ad12ea2d1f9297d4ed22d54f4f8fa232e43dc
---
doc/ffprobe.xsd | 1 +
ffprobe.c | 1 +
2 files changed, 2 insertions(+)
diff --git a/doc/ffprobe.xsd b/doc/ffprobe.xsd
index 26fd7d8..dae2b3f 100644
--- a/doc/ffprobe.xsd
+++ b/doc/ffprobe.xsd
@@ -185,6 +185,7 @@
<xsd:attribute name="duration" type="xsd:float"/>
<xsd:attribute name="size" type="xsd:long"/>
<xsd:attribute name="bit_rate" type="xsd:long"/>
+ <xsd:attribute name="probe_score" type="xsd:int"/>
</xsd:complexType>
<xsd:complexType name="tagType">
diff --git a/ffprobe.c b/ffprobe.c
index 8a65e1a..23f8ec1 100644
--- a/ffprobe.c
+++ b/ffprobe.c
@@ -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);
More information about the ffmpeg-cvslog
mailing list