[FFmpeg-devel] [PATCH] ffprobe: add -bitexact boolean option

Stefano Sabatini stefasab at gmail.com
Sat Sep 22 01:44:35 CEST 2012


The option is mostly useful to make ffprobe output independent from the
build, and in particular to fix FATE --enable-small failures.
---
 doc/ffprobe.texi |    4 ++++
 doc/ffprobe.xsd  |    2 +-
 ffprobe.c        |   19 +++++++++++++++++--
 3 files changed, 22 insertions(+), 3 deletions(-)

diff --git a/doc/ffprobe.texi b/doc/ffprobe.texi
index 6809a99..58ea383 100644
--- a/doc/ffprobe.texi
+++ b/doc/ffprobe.texi
@@ -170,6 +170,10 @@ Show information related to program and library versions. This is the
 equivalent of setting both @option{-show_program_version} and
 @option{-show_library_versions} options.
 
+ at item -bitexact
+Force bitexact output, useful to produce output which is not dependent
+on the specific build.
+
 @item -i @var{input_file}
 Read @var{input_file}.
 
diff --git a/doc/ffprobe.xsd b/doc/ffprobe.xsd
index b4887ae..403d59e 100644
--- a/doc/ffprobe.xsd
+++ b/doc/ffprobe.xsd
@@ -142,7 +142,7 @@
       <xsd:attribute name="filename"         type="xsd:string" use="required"/>
       <xsd:attribute name="nb_streams"       type="xsd:int"    use="required"/>
       <xsd:attribute name="format_name"      type="xsd:string" use="required"/>
-      <xsd:attribute name="format_long_name" type="xsd:string" use="required"/>
+      <xsd:attribute name="format_long_name" type="xsd:string"/>
       <xsd:attribute name="start_time"       type="xsd:float"/>
       <xsd:attribute name="duration"         type="xsd:float"/>
       <xsd:attribute name="size"             type="xsd:long"/>
diff --git a/ffprobe.c b/ffprobe.c
index f6f5b8d..569c355 100644
--- a/ffprobe.c
+++ b/ffprobe.c
@@ -44,6 +44,7 @@
 const char program_name[] = "ffprobe";
 const int program_birth_year = 2007;
 
+static int do_bitexact = 0;
 static int do_count_frames = 0;
 static int do_count_packets = 0;
 static int do_read_frames  = 0;
@@ -1654,14 +1655,17 @@ static void show_stream(WriterContext *w, AVFormatContext *fmt_ctx, int stream_i
 
     if ((dec_ctx = stream->codec)) {
         const char *profile = NULL;
-        if ((dec = dec_ctx->codec)) {
-            print_str("codec_name",      dec->name);
+        dec = dec_ctx->codec;
+        if (!do_bitexact) {
+        if (dec) {
+            print_str("codec_name", dec->name);
             if (dec->long_name) print_str    ("codec_long_name", dec->long_name);
             else                print_str_opt("codec_long_name", "unknown");
         } else {
             print_str_opt("codec_name",      "unknown");
             print_str_opt("codec_long_name", "unknown");
         }
+        }
 
         if (dec && (profile = av_get_profile_name(dec, dec_ctx->profile)))
             print_str("profile", profile);
@@ -1781,8 +1785,10 @@ static void show_format(WriterContext *w, AVFormatContext *fmt_ctx)
     print_str("filename",         fmt_ctx->filename);
     print_int("nb_streams",       fmt_ctx->nb_streams);
     print_str("format_name",      fmt_ctx->iformat->name);
+    if (!do_bitexact) {
     if (fmt_ctx->iformat->long_name) print_str    ("format_long_name", fmt_ctx->iformat->long_name);
     else                             print_str_opt("format_long_name", "unknown");
+    }
     print_time("start_time",      fmt_ctx->start_time, &AV_TIME_BASE_Q);
     print_time("duration",        fmt_ctx->duration,   &AV_TIME_BASE_Q);
     if (size >= 0) print_val    ("size", size, unit_byte_str);
@@ -2061,6 +2067,7 @@ static const OptionDef real_options[] = {
     { "show_versions",         0, {(void*)&opt_show_versions}, "show program and library versions" },
     { "show_private_data", OPT_BOOL, {(void*)&show_private_data}, "show private data" },
     { "private",           OPT_BOOL, {(void*)&show_private_data}, "same as show_private_data" },
+    { "bitexact", OPT_BOOL, {&do_bitexact}, "force bitexact output" },
     { "default", HAS_ARG | OPT_AUDIO | OPT_VIDEO | OPT_EXPERT, {.func_arg = opt_default}, "generic catch all option", "" },
     { "i", HAS_ARG, {.func_arg = opt_input_file_i}, "read specified file", "input_file"},
     { NULL, },
@@ -2087,6 +2094,14 @@ int main(int argc, char **argv)
     show_banner(argc, argv, options);
     parse_options(NULL, argc, argv, options, opt_input_file);
 
+    if (do_bitexact && (do_show_program_version || do_show_library_versions)) {
+        av_log(NULL, AV_LOG_ERROR,
+               "-bitexact and -show_program_version or -show_library_versions "
+               "options are incompatible\n");
+        ret = AVERROR(EINVAL);
+        goto end;
+    }
+
     writer_register_all();
 
     if (!print_format)
-- 
1.7.5.4



More information about the ffmpeg-devel mailing list