ffprobe.c
336ce917
 /*
  * Copyright (c) 2007-2010 Stefano Sabatini
  *
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
  * version 2.1 of the License, or (at your option) any later version.
  *
  * FFmpeg is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
  * License along with FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
93613338
 /**
  * @file
  * simple media prober based on the FFmpeg libraries
  */
 
6ce98ea4
 #include "config.h"
82b2e9cb
 #include "libavutil/ffversion.h"
6ce98ea4
 
f70122dd
 #include <string.h>
 
336ce917
 #include "libavformat/avformat.h"
 #include "libavcodec/avcodec.h"
4552e9b5
 #include "libavutil/avassert.h"
cb50ada4
 #include "libavutil/avstring.h"
f0bb1a59
 #include "libavutil/bprint.h"
4f3e2f10
 #include "libavutil/hash.h"
41d0eb1c
 #include "libavutil/opt.h"
336ce917
 #include "libavutil/pixdesc.h"
d2d67e42
 #include "libavutil/dict.h"
7427d1ca
 #include "libavutil/libm.h"
f0606a28
 #include "libavutil/parseutils.h"
dc386a5e
 #include "libavutil/timecode.h"
f0606a28
 #include "libavutil/timestamp.h"
6ce98ea4
 #include "libavdevice/avdevice.h"
5226be0d
 #include "libswscale/swscale.h"
 #include "libswresample/swresample.h"
 #include "libpostproc/postprocess.h"
336ce917
 #include "cmdutils.h"
 
89b503b5
 const char program_name[] = "ffprobe";
336ce917
 const int program_birth_year = 2007;
 
4cd1addc
 static int do_bitexact = 0;
29b9aee4
 static int do_count_frames = 0;
 static int do_count_packets = 0;
 static int do_read_frames  = 0;
 static int do_read_packets = 0;
4da54022
 static int do_show_chapters = 0;
d6da16dc
 static int do_show_error   = 0;
336ce917
 static int do_show_format  = 0;
9997d416
 static int do_show_frames  = 0;
530bbe96
 static int do_show_packets = 0;
2186a7e5
 static int do_show_programs = 0;
336ce917
 static int do_show_streams = 0;
196765a7
 static int do_show_stream_disposition = 0;
9ae3e455
 static int do_show_data    = 0;
5226be0d
 static int do_show_program_version  = 0;
 static int do_show_library_versions = 0;
336ce917
 
66a703ea
 static int do_show_chapter_tags = 0;
 static int do_show_format_tags = 0;
 static int do_show_frame_tags = 0;
 static int do_show_program_tags = 0;
 static int do_show_stream_tags = 0;
 
336ce917
 static int show_value_unit              = 0;
 static int use_value_prefix             = 0;
 static int use_byte_value_binary_prefix = 0;
 static int use_value_sexagesimal_format = 0;
f1a4182e
 static int show_private_data            = 1;
336ce917
 
0629b1ff
 static char *print_format;
3d189d41
 static char *stream_specifier;
4f3e2f10
 static char *show_data_hash;
0629b1ff
 
f0606a28
 typedef struct {
     int id;             ///< identifier
     int64_t start, end; ///< start, end in second/AV_TIME_BASE units
     int has_start, has_end;
     int start_is_offset, end_is_offset;
     int duration_frames;
 } ReadInterval;
 
 static ReadInterval *read_intervals;
 static int read_intervals_nb = 0;
 
4552e9b5
 /* section structure definition */
 
196765a7
 #define SECTION_MAX_NB_CHILDREN 10
 
4552e9b5
 struct section {
64dc383d
     int id;             ///< unique id identifying a section
4552e9b5
     const char *name;
 
 #define SECTION_FLAG_IS_WRAPPER      1 ///< the section only contains other sections, but has no data at its own level
 #define SECTION_FLAG_IS_ARRAY        2 ///< the section contains an array of elements of the same type
50efde6b
 #define SECTION_FLAG_HAS_VARIABLE_FIELDS 4 ///< the section may contain a variable number of fields with variable keys.
                                            ///  For these sections the element_name field is mandatory.
4552e9b5
     int flags;
196765a7
     int children_ids[SECTION_MAX_NB_CHILDREN+1]; ///< list of children section IDS, terminated by -1
44c1cc3f
     const char *element_name; ///< name of the contained element, if provided
196765a7
     const char *unique_name;  ///< unique section name, in case the name is ambiguous
     AVDictionary *entries_to_show;
     int show_all_entries;
4552e9b5
 };
 
 typedef enum {
     SECTION_ID_NONE = -1,
4da54022
     SECTION_ID_CHAPTER,
     SECTION_ID_CHAPTER_TAGS,
     SECTION_ID_CHAPTERS,
4552e9b5
     SECTION_ID_ERROR,
     SECTION_ID_FORMAT,
     SECTION_ID_FORMAT_TAGS,
     SECTION_ID_FRAME,
     SECTION_ID_FRAMES,
     SECTION_ID_FRAME_TAGS,
547d64a4
     SECTION_ID_FRAME_SIDE_DATA_LIST,
     SECTION_ID_FRAME_SIDE_DATA,
4552e9b5
     SECTION_ID_LIBRARY_VERSION,
     SECTION_ID_LIBRARY_VERSIONS,
     SECTION_ID_PACKET,
     SECTION_ID_PACKETS,
     SECTION_ID_PACKETS_AND_FRAMES,
2186a7e5
     SECTION_ID_PROGRAM_STREAM_DISPOSITION,
     SECTION_ID_PROGRAM_STREAM_TAGS,
     SECTION_ID_PROGRAM,
     SECTION_ID_PROGRAM_STREAMS,
     SECTION_ID_PROGRAM_STREAM,
     SECTION_ID_PROGRAM_TAGS,
4552e9b5
     SECTION_ID_PROGRAM_VERSION,
2186a7e5
     SECTION_ID_PROGRAMS,
4552e9b5
     SECTION_ID_ROOT,
     SECTION_ID_STREAM,
301f6da0
     SECTION_ID_STREAM_DISPOSITION,
4552e9b5
     SECTION_ID_STREAMS,
6ca9c74c
     SECTION_ID_STREAM_TAGS,
a0286035
     SECTION_ID_SUBTITLE,
4552e9b5
 } SectionID;
 
196765a7
 static struct section sections[] = {
4da54022
     [SECTION_ID_CHAPTERS] =           { SECTION_ID_CHAPTERS, "chapters", SECTION_FLAG_IS_ARRAY, { SECTION_ID_CHAPTER, -1 } },
     [SECTION_ID_CHAPTER] =            { SECTION_ID_CHAPTER, "chapter", 0, { SECTION_ID_CHAPTER_TAGS, -1 } },
     [SECTION_ID_CHAPTER_TAGS] =       { SECTION_ID_CHAPTER_TAGS, "tags", SECTION_FLAG_HAS_VARIABLE_FIELDS, { -1 }, .element_name = "tag", .unique_name = "chapter_tags" },
196765a7
     [SECTION_ID_ERROR] =              { SECTION_ID_ERROR, "error", 0, { -1 } },
     [SECTION_ID_FORMAT] =             { SECTION_ID_FORMAT, "format", 0, { SECTION_ID_FORMAT_TAGS, -1 } },
     [SECTION_ID_FORMAT_TAGS] =        { SECTION_ID_FORMAT_TAGS, "tags", SECTION_FLAG_HAS_VARIABLE_FIELDS, { -1 }, .element_name = "tag", .unique_name = "format_tags" },
a0286035
     [SECTION_ID_FRAMES] =             { SECTION_ID_FRAMES, "frames", SECTION_FLAG_IS_ARRAY, { SECTION_ID_FRAME, SECTION_ID_SUBTITLE, -1 } },
547d64a4
     [SECTION_ID_FRAME] =              { SECTION_ID_FRAME, "frame", 0, { SECTION_ID_FRAME_TAGS, SECTION_ID_FRAME_SIDE_DATA_LIST, -1 } },
196765a7
     [SECTION_ID_FRAME_TAGS] =         { SECTION_ID_FRAME_TAGS, "tags", SECTION_FLAG_HAS_VARIABLE_FIELDS, { -1 }, .element_name = "tag", .unique_name = "frame_tags" },
547d64a4
     [SECTION_ID_FRAME_SIDE_DATA_LIST] ={ SECTION_ID_FRAME_SIDE_DATA_LIST, "side_data_list", SECTION_FLAG_IS_ARRAY, { SECTION_ID_FRAME_SIDE_DATA, -1 } },
     [SECTION_ID_FRAME_SIDE_DATA] =     { SECTION_ID_FRAME_SIDE_DATA, "side_data", 0, { -1 } },
196765a7
     [SECTION_ID_LIBRARY_VERSIONS] =   { SECTION_ID_LIBRARY_VERSIONS, "library_versions", SECTION_FLAG_IS_ARRAY, { SECTION_ID_LIBRARY_VERSION, -1 } },
     [SECTION_ID_LIBRARY_VERSION] =    { SECTION_ID_LIBRARY_VERSION, "library_version", 0, { -1 } },
     [SECTION_ID_PACKETS] =            { SECTION_ID_PACKETS, "packets", SECTION_FLAG_IS_ARRAY, { SECTION_ID_PACKET, -1} },
     [SECTION_ID_PACKETS_AND_FRAMES] = { SECTION_ID_PACKETS_AND_FRAMES, "packets_and_frames", SECTION_FLAG_IS_ARRAY, { SECTION_ID_PACKET, -1} },
     [SECTION_ID_PACKET] =             { SECTION_ID_PACKET, "packet", 0, { -1 } },
2186a7e5
     [SECTION_ID_PROGRAM_STREAM_DISPOSITION] = { SECTION_ID_PROGRAM_STREAM_DISPOSITION, "disposition", 0, { -1 }, .unique_name = "program_stream_disposition" },
     [SECTION_ID_PROGRAM_STREAM_TAGS] =        { SECTION_ID_PROGRAM_STREAM_TAGS, "tags", SECTION_FLAG_HAS_VARIABLE_FIELDS, { -1 }, .element_name = "tag", .unique_name = "program_stream_tags" },
     [SECTION_ID_PROGRAM] =                    { SECTION_ID_PROGRAM, "program", 0, { SECTION_ID_PROGRAM_TAGS, SECTION_ID_PROGRAM_STREAMS, -1 } },
     [SECTION_ID_PROGRAM_STREAMS] =            { SECTION_ID_PROGRAM_STREAMS, "streams", SECTION_FLAG_IS_ARRAY, { SECTION_ID_PROGRAM_STREAM, -1 }, .unique_name = "program_streams" },
     [SECTION_ID_PROGRAM_STREAM] =             { SECTION_ID_PROGRAM_STREAM, "stream", 0, { SECTION_ID_PROGRAM_STREAM_DISPOSITION, SECTION_ID_PROGRAM_STREAM_TAGS, -1 }, .unique_name = "program_stream" },
     [SECTION_ID_PROGRAM_TAGS] =               { SECTION_ID_PROGRAM_TAGS, "tags", SECTION_FLAG_HAS_VARIABLE_FIELDS, { -1 }, .element_name = "tag", .unique_name = "program_tags" },
196765a7
     [SECTION_ID_PROGRAM_VERSION] =    { SECTION_ID_PROGRAM_VERSION, "program_version", 0, { -1 } },
2186a7e5
     [SECTION_ID_PROGRAMS] =                   { SECTION_ID_PROGRAMS, "programs", SECTION_FLAG_IS_ARRAY, { SECTION_ID_PROGRAM, -1 } },
196765a7
     [SECTION_ID_ROOT] =               { SECTION_ID_ROOT, "root", SECTION_FLAG_IS_WRAPPER,
2186a7e5
                                         { SECTION_ID_CHAPTERS, SECTION_ID_FORMAT, SECTION_ID_FRAMES, SECTION_ID_PROGRAMS, SECTION_ID_STREAMS,
                                           SECTION_ID_PACKETS, SECTION_ID_ERROR, SECTION_ID_PROGRAM_VERSION, SECTION_ID_LIBRARY_VERSIONS, -1} },
196765a7
     [SECTION_ID_STREAMS] =            { SECTION_ID_STREAMS, "streams", SECTION_FLAG_IS_ARRAY, { SECTION_ID_STREAM, -1 } },
     [SECTION_ID_STREAM] =             { SECTION_ID_STREAM, "stream", 0, { SECTION_ID_STREAM_DISPOSITION, SECTION_ID_STREAM_TAGS, -1 } },
     [SECTION_ID_STREAM_DISPOSITION] = { SECTION_ID_STREAM_DISPOSITION, "disposition", 0, { -1 }, .unique_name = "stream_disposition" },
     [SECTION_ID_STREAM_TAGS] =        { SECTION_ID_STREAM_TAGS, "tags", SECTION_FLAG_HAS_VARIABLE_FIELDS, { -1 }, .element_name = "tag", .unique_name = "stream_tags" },
a0286035
     [SECTION_ID_SUBTITLE] =           { SECTION_ID_SUBTITLE, "subtitle", 0, { -1 } },
4552e9b5
 };
 
7c26761b
 static const OptionDef *options;
336ce917
 
 /* FFprobe context */
 static const char *input_filename;
1be784a2
 static AVInputFormat *iformat = NULL;
336ce917
 
4f3e2f10
 static struct AVHashContext *hash;
 
184fc600
 static const char *const binary_unit_prefixes [] = { "", "Ki", "Mi", "Gi", "Ti", "Pi" };
 static const char *const decimal_unit_prefixes[] = { "", "K" , "M" , "G" , "T" , "P"  };
336ce917
 
184fc600
 static const char unit_second_str[]         = "s"    ;
 static const char unit_hertz_str[]          = "Hz"   ;
 static const char unit_byte_str[]           = "byte" ;
 static const char unit_bit_per_second_str[] = "bit/s";
3d189d41
 
73a60633
 static int nb_streams;
29b9aee4
 static uint64_t *nb_streams_packets;
 static uint64_t *nb_streams_frames;
3d189d41
 static int *selected_streams;
336ce917
 
f982d006
 static void ffprobe_cleanup(int ret)
d2084402
 {
196765a7
     int i;
     for (i = 0; i < FF_ARRAY_ELEMS(sections); i++)
         av_dict_free(&(sections[i].entries_to_show));
d2084402
 }
 
13665c87
 struct unit_value {
54661219
     union { double d; long long int i; } val;
13665c87
     const char *unit;
 };
 
 static char *value_string(char *buf, int buf_size, struct unit_value uv)
336ce917
 {
13665c87
     double vald;
5e99a23b
     long long int vali;
13665c87
     int show_float = 0;
 
     if (uv.unit == unit_second_str) {
         vald = uv.val.d;
         show_float = 1;
     } else {
5e99a23b
         vald = vali = uv.val.i;
13665c87
     }
 
     if (uv.unit == unit_second_str && use_value_sexagesimal_format) {
336ce917
         double secs;
         int hours, mins;
13665c87
         secs  = vald;
336ce917
         mins  = (int)secs / 60;
         secs  = secs - mins * 60;
         hours = mins / 60;
         mins %= 60;
         snprintf(buf, buf_size, "%d:%02d:%09.6f", hours, mins, secs);
58b10b4c
     } else {
         const char *prefix_string = "";
336ce917
 
4601ad76
         if (use_value_prefix && vald > 1) {
eef4b704
             long long int index;
 
             if (uv.unit == unit_byte_str && use_byte_value_binary_prefix) {
7427d1ca
                 index = (long long int) (log2(vald)) / 10;
eef4b704
                 index = av_clip(index, 0, FF_ARRAY_ELEMS(binary_unit_prefixes) - 1);
b027156b
                 vald /= exp2(index * 10);
eef4b704
                 prefix_string = binary_unit_prefixes[index];
             } else {
                 index = (long long int) (log10(vald)) / 3;
                 index = av_clip(index, 0, FF_ARRAY_ELEMS(decimal_unit_prefixes) - 1);
                 vald /= pow(10, index * 3);
                 prefix_string = decimal_unit_prefixes[index];
             }
1ba59b1c
             vali = vald;
58b10b4c
         }
336ce917
 
58b10b4c
         if (show_float || (use_value_prefix && vald != (long long int)vald))
79928149
             snprintf(buf, buf_size, "%f", vald);
58b10b4c
         else
5e99a23b
             snprintf(buf, buf_size, "%lld", vali);
79928149
         av_strlcatf(buf, buf_size, "%s%s%s", *prefix_string || show_value_unit ? " " : "",
13665c87
                  prefix_string, show_value_unit ? uv.unit : "");
336ce917
     }
 
     return buf;
 }
 
eff7684b
 /* WRITERS API */
0629b1ff
 
eff7684b
 typedef struct WriterContext WriterContext;
0629b1ff
 
0491a2a0
 #define WRITER_FLAG_DISPLAY_OPTIONAL_FIELDS 1
9997d416
 #define WRITER_FLAG_PUT_PACKETS_AND_FRAMES_IN_SAME_CHAPTER 2
0491a2a0
 
cbba331a
 typedef enum {
     WRITER_STRING_VALIDATION_FAIL,
     WRITER_STRING_VALIDATION_REPLACE,
     WRITER_STRING_VALIDATION_IGNORE,
d20241c9
     WRITER_STRING_VALIDATION_NB
cbba331a
 } StringValidation;
 
eff7684b
 typedef struct Writer {
749ddc14
     const AVClass *priv_class;      ///< private class of the writer, if any
eff7684b
     int priv_size;                  ///< private size for the writer context
     const char *name;
0629b1ff
 
ed2b69a4
     int  (*init)  (WriterContext *wctx);
eff7684b
     void (*uninit)(WriterContext *wctx);
 
4552e9b5
     void (*print_section_header)(WriterContext *wctx);
     void (*print_section_footer)(WriterContext *wctx);
a7e56790
     void (*print_integer)       (WriterContext *wctx, const char *, long long int);
a1411eec
     void (*print_rational)      (WriterContext *wctx, AVRational *q, char *sep);
eff7684b
     void (*print_string)        (WriterContext *wctx, const char *, const char *);
0491a2a0
     int flags;                  ///< a combination or WRITER_FLAG_*
eff7684b
 } Writer;
 
4552e9b5
 #define SECTION_MAX_NB_LEVELS 10
 
eff7684b
 struct WriterContext {
     const AVClass *class;           ///< class of the writer
     const Writer *writer;           ///< the Writer of which this is an instance
     char *name;                     ///< name of this writer instance
     void *priv;                     ///< private data for use by the filter
4552e9b5
 
     const struct section *sections; ///< array containing all sections
     int nb_sections;                ///< number of sections
 
     int level;                      ///< current level, starting from 0
 
     /** number of the item printed in the given section, starting from 0 */
     unsigned int nb_item[SECTION_MAX_NB_LEVELS];
 
     /** section per each level */
     const struct section *section[SECTION_MAX_NB_LEVELS];
a945607a
     AVBPrint section_pbuf[SECTION_MAX_NB_LEVELS]; ///< generic print buffer dedicated to each section,
                                                   ///  used by various writers
4552e9b5
 
2248db94
     unsigned int nb_section_packet; ///< number of the packet section in case we are in "packets_and_frames" section
     unsigned int nb_section_frame;  ///< number of the frame  section in case we are in "packets_and_frames" section
     unsigned int nb_section_packet_frame; ///< nb_section_packet or nb_section_frame according if is_packets_and_frames
cbba331a
 
     StringValidation string_validation;
     char *string_validation_replacement;
     unsigned int string_validation_utf8_flags;
eff7684b
 };
3fdf519e
 
1d0afec8
 static const char *writer_get_name(void *p)
 {
     WriterContext *wctx = p;
     return wctx->writer->name;
 }
 
11cba3ba
 #define OFFSET(x) offsetof(WriterContext, x)
 
cbba331a
 static const AVOption writer_options[] = {
     { "string_validation", "set string validation mode",
       OFFSET(string_validation), AV_OPT_TYPE_INT, {.i64=WRITER_STRING_VALIDATION_REPLACE}, 0, WRITER_STRING_VALIDATION_NB-1, .unit = "sv" },
     { "sv", "set string validation mode",
       OFFSET(string_validation), AV_OPT_TYPE_INT, {.i64=WRITER_STRING_VALIDATION_REPLACE}, 0, WRITER_STRING_VALIDATION_NB-1, .unit = "sv" },
     { "ignore",  NULL, 0, AV_OPT_TYPE_CONST, {.i64 = WRITER_STRING_VALIDATION_IGNORE},  .unit = "sv" },
     { "replace", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = WRITER_STRING_VALIDATION_REPLACE}, .unit = "sv" },
     { "fail",    NULL, 0, AV_OPT_TYPE_CONST, {.i64 = WRITER_STRING_VALIDATION_FAIL},    .unit = "sv" },
     { "string_validation_replacement", "set string validation replacement string", OFFSET(string_validation_replacement), AV_OPT_TYPE_STRING, {.str=""}},
ca6dd53a
     { "svr", "set string validation replacement string", OFFSET(string_validation_replacement), AV_OPT_TYPE_STRING, {.str="\xEF\xBF\xBD"}},
d20241c9
     { NULL }
cbba331a
 };
 
11cba3ba
 static void *writer_child_next(void *obj, void *prev)
 {
     WriterContext *ctx = obj;
     if (!prev && ctx->writer && ctx->writer->priv_class && ctx->priv)
         return ctx->priv;
     return NULL;
 }
 
1d0afec8
 static const AVClass writer_class = {
638d79a9
     .class_name = "Writer",
     .item_name  = writer_get_name,
     .option     = writer_options,
     .version    = LIBAVUTIL_VERSION_INT,
11cba3ba
     .child_next = writer_child_next,
1d0afec8
 };
 
eff7684b
 static void writer_close(WriterContext **wctx)
3fdf519e
 {
a945607a
     int i;
 
49c207b8
     if (!*wctx)
         return;
eff7684b
 
49c207b8
     if ((*wctx)->writer->uninit)
         (*wctx)->writer->uninit(*wctx);
a945607a
     for (i = 0; i < SECTION_MAX_NB_LEVELS; i++)
         av_bprint_finalize(&(*wctx)->section_pbuf[i], NULL);
749ddc14
     if ((*wctx)->writer->priv_class)
         av_opt_free((*wctx)->priv);
eff7684b
     av_freep(&((*wctx)->priv));
704cc5e7
     av_opt_free(*wctx);
eff7684b
     av_freep(wctx);
3fdf519e
 }
 
cbba331a
 static void bprint_bytes(AVBPrint *bp, const uint8_t *ubuf, size_t ubuf_size)
 {
     int i;
     av_bprintf(bp, "0X");
     for (i = 0; i < ubuf_size; i++)
         av_bprintf(bp, "%02X", ubuf[i]);
 }
 
 
4552e9b5
 static int writer_open(WriterContext **wctx, const Writer *writer, const char *args,
                        const struct section *sections, int nb_sections)
3fdf519e
 {
a945607a
     int i, ret = 0;
3fdf519e
 
e292d751
     if (!(*wctx = av_mallocz(sizeof(WriterContext)))) {
eff7684b
         ret = AVERROR(ENOMEM);
         goto fail;
3fdf519e
     }
 
eff7684b
     if (!((*wctx)->priv = av_mallocz(writer->priv_size))) {
         ret = AVERROR(ENOMEM);
         goto fail;
3fdf519e
     }
eff7684b
 
1d0afec8
     (*wctx)->class = &writer_class;
eff7684b
     (*wctx)->writer = writer;
4552e9b5
     (*wctx)->level = -1;
     (*wctx)->sections = sections;
     (*wctx)->nb_sections = nb_sections;
749ddc14
 
11cba3ba
     av_opt_set_defaults(*wctx);
 
749ddc14
     if (writer->priv_class) {
         void *priv_ctx = (*wctx)->priv;
         *((const AVClass **)priv_ctx) = writer->priv_class;
         av_opt_set_defaults(priv_ctx);
11cba3ba
     }
749ddc14
 
11cba3ba
     /* convert options to dictionary */
     if (args) {
         AVDictionary *opts = NULL;
         AVDictionaryEntry *opt = NULL;
 
         if ((ret = av_dict_parse_string(&opts, args, "=", ":", 0)) < 0) {
             av_log(*wctx, AV_LOG_ERROR, "Failed to parse option string '%s' provided to writer context\n", args);
             av_dict_free(&opts);
749ddc14
             goto fail;
11cba3ba
         }
 
         while ((opt = av_dict_get(opts, "", opt, AV_DICT_IGNORE_SUFFIX))) {
             if ((ret = av_opt_set(*wctx, opt->key, opt->value, AV_OPT_SEARCH_CHILDREN)) < 0) {
                 av_log(*wctx, AV_LOG_ERROR, "Failed to set option '%s' with value '%s' provided to writer context\n",
                        opt->key, opt->value);
                 av_dict_free(&opts);
                 goto fail;
             }
         }
 
         av_dict_free(&opts);
749ddc14
     }
a945607a
 
cbba331a
     /* validate replace string */
     {
         const uint8_t *p = (*wctx)->string_validation_replacement;
         const uint8_t *endp = p + strlen(p);
         while (*p) {
             const uint8_t *p0 = p;
             int32_t code;
             ret = av_utf8_decode(&code, &p, endp, (*wctx)->string_validation_utf8_flags);
             if (ret < 0) {
                 AVBPrint bp;
                 av_bprint_init(&bp, 0, AV_BPRINT_SIZE_AUTOMATIC);
                 bprint_bytes(&bp, p0, p-p0),
                     av_log(wctx, AV_LOG_ERROR,
                            "Invalid UTF8 sequence %s found in string validation replace '%s'\n",
                            bp.str, (*wctx)->string_validation_replacement);
                 return ret;
             }
         }
     }
 
a945607a
     for (i = 0; i < SECTION_MAX_NB_LEVELS; i++)
         av_bprint_init(&(*wctx)->section_pbuf[i], 1, AV_BPRINT_SIZE_UNLIMITED);
 
eff7684b
     if ((*wctx)->writer->init)
ed2b69a4
         ret = (*wctx)->writer->init(*wctx);
eff7684b
     if (ret < 0)
         goto fail;
 
     return 0;
 
 fail:
     writer_close(wctx);
3fdf519e
     return ret;
 }
 
eff7684b
 static inline void writer_print_section_header(WriterContext *wctx,
4552e9b5
                                                int section_id)
 {
     int parent_section_id;
     wctx->level++;
     av_assert0(wctx->level < SECTION_MAX_NB_LEVELS);
     parent_section_id = wctx->level ?
         (wctx->section[wctx->level-1])->id : SECTION_ID_NONE;
 
     wctx->nb_item[wctx->level] = 0;
     wctx->section[wctx->level] = &wctx->sections[section_id];
 
     if (section_id == SECTION_ID_PACKETS_AND_FRAMES) {
         wctx->nb_section_packet = wctx->nb_section_frame =
         wctx->nb_section_packet_frame = 0;
     } else if (parent_section_id == SECTION_ID_PACKETS_AND_FRAMES) {
         wctx->nb_section_packet_frame = section_id == SECTION_ID_PACKET ?
             wctx->nb_section_packet : wctx->nb_section_frame;
     }
 
6cd06bd2
     if (wctx->writer->print_section_header)
4552e9b5
         wctx->writer->print_section_header(wctx);
3fdf519e
 }
 
4552e9b5
 static inline void writer_print_section_footer(WriterContext *wctx)
eff7684b
 {
4552e9b5
     int section_id = wctx->section[wctx->level]->id;
     int parent_section_id = wctx->level ?
         wctx->section[wctx->level-1]->id : SECTION_ID_NONE;
 
     if (parent_section_id != SECTION_ID_NONE)
         wctx->nb_item[wctx->level-1]++;
     if (parent_section_id == SECTION_ID_PACKETS_AND_FRAMES) {
         if (section_id == SECTION_ID_PACKET) wctx->nb_section_packet++;
         else                                     wctx->nb_section_frame++;
2248db94
     }
4552e9b5
     if (wctx->writer->print_section_footer)
         wctx->writer->print_section_footer(wctx);
     wctx->level--;
eff7684b
 }
3fdf519e
 
eff7684b
 static inline void writer_print_integer(WriterContext *wctx,
a7e56790
                                         const char *key, long long int val)
0629b1ff
 {
196765a7
     const struct section *section = wctx->section[wctx->level];
 
     if (section->show_all_entries || av_dict_get(section->entries_to_show, key, NULL, 0)) {
653d117c
         wctx->writer->print_integer(wctx, key, val);
4552e9b5
         wctx->nb_item[wctx->level]++;
653d117c
     }
0629b1ff
 }
 
cbba331a
 static inline int validate_string(WriterContext *wctx, char **dstp, const char *src)
 {
     const uint8_t *p, *endp;
     AVBPrint dstbuf;
     int invalid_chars_nb = 0, ret = 0;
 
     av_bprint_init(&dstbuf, 0, AV_BPRINT_SIZE_UNLIMITED);
 
     endp = src + strlen(src);
     for (p = (uint8_t *)src; *p;) {
         uint32_t code;
         int invalid = 0;
         const uint8_t *p0 = p;
 
         if (av_utf8_decode(&code, &p, endp, wctx->string_validation_utf8_flags) < 0) {
             AVBPrint bp;
             av_bprint_init(&bp, 0, AV_BPRINT_SIZE_AUTOMATIC);
             bprint_bytes(&bp, p0, p-p0);
             av_log(wctx, AV_LOG_DEBUG,
                    "Invalid UTF-8 sequence %s found in string '%s'\n", bp.str, src);
             invalid = 1;
         }
 
         if (invalid) {
             invalid_chars_nb++;
 
             switch (wctx->string_validation) {
             case WRITER_STRING_VALIDATION_FAIL:
                 av_log(wctx, AV_LOG_ERROR,
                        "Invalid UTF-8 sequence found in string '%s'\n", src);
                 ret = AVERROR_INVALIDDATA;
                 goto end;
                 break;
 
             case WRITER_STRING_VALIDATION_REPLACE:
                 av_bprintf(&dstbuf, "%s", wctx->string_validation_replacement);
                 break;
             }
         }
 
         if (!invalid || wctx->string_validation == WRITER_STRING_VALIDATION_IGNORE)
             av_bprint_append_data(&dstbuf, p0, p-p0);
     }
 
     if (invalid_chars_nb && wctx->string_validation == WRITER_STRING_VALIDATION_REPLACE) {
         av_log(wctx, AV_LOG_WARNING,
                "%d invalid UTF-8 sequence(s) found in string '%s', replaced with '%s'\n",
                invalid_chars_nb, src, wctx->string_validation_replacement);
     }
 
 end:
     av_bprint_finalize(&dstbuf, dstp);
     return ret;
 }
 
 #define PRINT_STRING_OPT      1
 #define PRINT_STRING_VALIDATE 2
 
e87190f5
 static inline int writer_print_string(WriterContext *wctx,
cbba331a
                                       const char *key, const char *val, int flags)
0629b1ff
 {
196765a7
     const struct section *section = wctx->section[wctx->level];
e87190f5
     int ret = 0;
196765a7
 
cbba331a
     if ((flags & PRINT_STRING_OPT)
         && !(wctx->writer->flags & WRITER_FLAG_DISPLAY_OPTIONAL_FIELDS))
e87190f5
         return 0;
196765a7
 
     if (section->show_all_entries || av_dict_get(section->entries_to_show, key, NULL, 0)) {
cbba331a
         if (flags & PRINT_STRING_VALIDATE) {
             char *key1 = NULL, *val1 = NULL;
             ret = validate_string(wctx, &key1, key);
             if (ret < 0) goto end;
             ret = validate_string(wctx, &val1, val);
             if (ret < 0) goto end;
             wctx->writer->print_string(wctx, key1, val1);
         end:
             if (ret < 0) {
                 av_log(wctx, AV_LOG_ERROR,
                        "Invalid key=value string combination %s=%s in section %s\n",
                        key, val, section->unique_name);
             }
             av_free(key1);
             av_free(val1);
         } else {
             wctx->writer->print_string(wctx, key, val);
         }
 
4552e9b5
         wctx->nb_item[wctx->level]++;
653d117c
     }
e87190f5
 
     return ret;
0629b1ff
 }
 
4b370d61
 static inline void writer_print_rational(WriterContext *wctx,
                                          const char *key, AVRational q, char sep)
 {
     AVBPrint buf;
     av_bprint_init(&buf, 0, AV_BPRINT_SIZE_AUTOMATIC);
     av_bprintf(&buf, "%d%c%d", q.num, sep, q.den);
     writer_print_string(wctx, key, buf.str, 0);
 }
 
0491a2a0
 static void writer_print_time(WriterContext *wctx, const char *key,
9083d09e
                               int64_t ts, const AVRational *time_base, int is_duration)
0491a2a0
 {
     char buf[128];
 
58e90259
     if ((!is_duration && ts == AV_NOPTS_VALUE) || (is_duration && ts == 0)) {
cbba331a
         writer_print_string(wctx, key, "N/A", PRINT_STRING_OPT);
58e90259
     } else {
         double d = ts * av_q2d(*time_base);
         struct unit_value uv;
         uv.val.d = d;
         uv.unit = unit_second_str;
         value_string(buf, sizeof(buf), uv);
         writer_print_string(wctx, key, buf, 0);
     }
0491a2a0
 }
 
9083d09e
 static void writer_print_ts(WriterContext *wctx, const char *key, int64_t ts, int is_duration)
0491a2a0
 {
9083d09e
     if ((!is_duration && ts == AV_NOPTS_VALUE) || (is_duration && ts == 0)) {
cbba331a
         writer_print_string(wctx, key, "N/A", PRINT_STRING_OPT);
0491a2a0
     } else {
a7e56790
         writer_print_integer(wctx, key, ts);
0491a2a0
     }
 }
 
9ae3e455
 static void writer_print_data(WriterContext *wctx, const char *name,
                               uint8_t *data, int size)
 {
     AVBPrint bp;
     int offset = 0, l, i;
 
     av_bprint_init(&bp, 0, AV_BPRINT_SIZE_UNLIMITED);
     av_bprintf(&bp, "\n");
     while (size) {
         av_bprintf(&bp, "%08x: ", offset);
         l = FFMIN(size, 16);
         for (i = 0; i < l; i++) {
             av_bprintf(&bp, "%02x", data[i]);
             if (i & 1)
                 av_bprintf(&bp, " ");
         }
         av_bprint_chars(&bp, ' ', 41 - 2 * i - i / 2);
         for (i = 0; i < l; i++)
             av_bprint_chars(&bp, data[i] - 32U < 95 ? data[i] : '.', 1);
         av_bprintf(&bp, "\n");
         offset += l;
         data   += l;
         size   -= l;
     }
     writer_print_string(wctx, name, bp.str, 0);
     av_bprint_finalize(&bp, NULL);
 }
 
4f3e2f10
 static void writer_print_data_hash(WriterContext *wctx, const char *name,
                                    uint8_t *data, int size)
 {
     char *p, buf[AV_HASH_MAX_SIZE * 2 + 64] = { 0 };
 
     if (!hash)
         return;
     av_hash_init(hash);
     av_hash_update(hash, data, size);
     snprintf(buf, sizeof(buf), "%s:", av_hash_get_name(hash));
     p = buf + strlen(buf);
     av_hash_final_hex(hash, p, buf + sizeof(buf) - p);
     writer_print_string(wctx, name, buf, 0);
 }
 
eff7684b
 #define MAX_REGISTERED_WRITERS_NB 64
 
9813af25
 static const Writer *registered_writers[MAX_REGISTERED_WRITERS_NB + 1];
eff7684b
 
9813af25
 static int writer_register(const Writer *writer)
0629b1ff
 {
eff7684b
     static int next_registered_writer_idx = 0;
 
     if (next_registered_writer_idx == MAX_REGISTERED_WRITERS_NB)
         return AVERROR(ENOMEM);
 
     registered_writers[next_registered_writer_idx++] = writer;
     return 0;
0629b1ff
 }
 
9813af25
 static const Writer *writer_get_by_name(const char *name)
eff7684b
 {
     int i;
 
     for (i = 0; registered_writers[i]; i++)
         if (!strcmp(registered_writers[i]->name, name))
             return registered_writers[i];
 
     return NULL;
 }
0629b1ff
 
afbeb494
 
eff7684b
 /* WRITERS */
0629b1ff
 
f740c1a9
 #define DEFINE_WRITER_CLASS(name)                   \
 static const char *name##_get_name(void *ctx)       \
 {                                                   \
     return #name ;                                  \
 }                                                   \
 static const AVClass name##_class = {               \
638d79a9
     .class_name = #name,                            \
     .item_name  = name##_get_name,                  \
     .option     = name##_options                    \
f740c1a9
 }
 
eff7684b
 /* Default output */
 
f48f03a4
 typedef struct DefaultContext {
     const AVClass *class;
3946187d
     int nokey;
f48f03a4
     int noprint_wrappers;
44c1cc3f
     int nested_section[SECTION_MAX_NB_LEVELS];
f48f03a4
 } DefaultContext;
 
11cba3ba
 #undef OFFSET
f48f03a4
 #define OFFSET(x) offsetof(DefaultContext, x)
 
 static const AVOption default_options[] = {
d46c1c72
     { "noprint_wrappers", "do not print headers and footers", OFFSET(noprint_wrappers), AV_OPT_TYPE_INT, {.i64=0}, 0, 1 },
     { "nw",               "do not print headers and footers", OFFSET(noprint_wrappers), AV_OPT_TYPE_INT, {.i64=0}, 0, 1 },
     { "nokey",          "force no key printing",     OFFSET(nokey),          AV_OPT_TYPE_INT, {.i64=0}, 0, 1 },
     { "nk",             "force no key printing",     OFFSET(nokey),          AV_OPT_TYPE_INT, {.i64=0}, 0, 1 },
f48f03a4
     {NULL},
 };
 
f740c1a9
 DEFINE_WRITER_CLASS(default);
f48f03a4
 
fbb8468f
 /* lame uppercasing routine, assumes the string is lower case ASCII */
 static inline char *upcase_string(char *dst, size_t dst_size, const char *src)
 {
     int i;
     for (i = 0; src[i] && i < dst_size-1; i++)
0cc88646
         dst[i] = av_toupper(src[i]);
fbb8468f
     dst[i] = 0;
     return dst;
 }
 
4552e9b5
 static void default_print_section_header(WriterContext *wctx)
eff7684b
 {
f48f03a4
     DefaultContext *def = wctx->priv;
fbb8468f
     char buf[32];
4552e9b5
     const struct section *section = wctx->section[wctx->level];
     const struct section *parent_section = wctx->level ?
         wctx->section[wctx->level-1] : NULL;
 
a945607a
     av_bprint_clear(&wctx->section_pbuf[wctx->level]);
44c1cc3f
     if (parent_section &&
         !(parent_section->flags & (SECTION_FLAG_IS_WRAPPER|SECTION_FLAG_IS_ARRAY))) {
         def->nested_section[wctx->level] = 1;
a945607a
         av_bprintf(&wctx->section_pbuf[wctx->level], "%s%s:",
                    wctx->section_pbuf[wctx->level-1].str,
44c1cc3f
                    upcase_string(buf, sizeof(buf),
                                  av_x_if_null(section->element_name, section->name)));
     }
 
     if (def->noprint_wrappers || def->nested_section[wctx->level])
4552e9b5
         return;
fbb8468f
 
4552e9b5
     if (!(section->flags & (SECTION_FLAG_IS_WRAPPER|SECTION_FLAG_IS_ARRAY)))
         printf("[%s]\n", upcase_string(buf, sizeof(buf), section->name));
eff7684b
 }
 
4552e9b5
 static void default_print_section_footer(WriterContext *wctx)
eff7684b
 {
f48f03a4
     DefaultContext *def = wctx->priv;
4552e9b5
     const struct section *section = wctx->section[wctx->level];
fbb8468f
     char buf[32];
 
44c1cc3f
     if (def->noprint_wrappers || def->nested_section[wctx->level])
4552e9b5
         return;
 
     if (!(section->flags & (SECTION_FLAG_IS_WRAPPER|SECTION_FLAG_IS_ARRAY)))
         printf("[/%s]\n", upcase_string(buf, sizeof(buf), section->name));
eff7684b
 }
 
 static void default_print_str(WriterContext *wctx, const char *key, const char *value)
 {
3946187d
     DefaultContext *def = wctx->priv;
4552e9b5
 
3946187d
     if (!def->nokey)
a945607a
         printf("%s%s=", wctx->section_pbuf[wctx->level].str, key);
3946187d
     printf("%s\n", value);
eff7684b
 }
 
a7e56790
 static void default_print_int(WriterContext *wctx, const char *key, long long int value)
eff7684b
 {
3946187d
     DefaultContext *def = wctx->priv;
 
     if (!def->nokey)
a945607a
         printf("%s%s=", wctx->section_pbuf[wctx->level].str, key);
3946187d
     printf("%lld\n", value);
eff7684b
 }
 
9813af25
 static const Writer default_writer = {
eff7684b
     .name                  = "default",
c457a29e
     .priv_size             = sizeof(DefaultContext),
eff7684b
     .print_section_header  = default_print_section_header,
     .print_section_footer  = default_print_section_footer,
     .print_integer         = default_print_int,
     .print_string          = default_print_str,
0491a2a0
     .flags = WRITER_FLAG_DISPLAY_OPTIONAL_FIELDS,
749ddc14
     .priv_class            = &default_class,
eff7684b
 };
 
1c43713e
 /* Compact output */
 
 /**
6994b552
  * Apply C-language-like string escaping.
1c43713e
  */
f0bb1a59
 static const char *c_escape_str(AVBPrint *dst, const char *src, const char sep, void *log_ctx)
1c43713e
 {
     const char *p;
 
     for (p = src; *p; p++) {
8619362f
         switch (*p) {
c365cdf2
         case '\b': av_bprintf(dst, "%s", "\\b");  break;
         case '\f': av_bprintf(dst, "%s", "\\f");  break;
f0bb1a59
         case '\n': av_bprintf(dst, "%s", "\\n");  break;
         case '\r': av_bprintf(dst, "%s", "\\r");  break;
         case '\\': av_bprintf(dst, "%s", "\\\\"); break;
1c43713e
         default:
             if (*p == sep)
f0bb1a59
                 av_bprint_chars(dst, '\\', 1);
             av_bprint_chars(dst, *p, 1);
1c43713e
         }
     }
f0bb1a59
     return dst->str;
1c43713e
 }
 
 /**
  * Quote fields containing special characters, check RFC4180.
  */
f0bb1a59
 static const char *csv_escape_str(AVBPrint *dst, const char *src, const char sep, void *log_ctx)
1c43713e
 {
dde80688
     char meta_chars[] = { sep, '"', '\n', '\r', '\0' };
     int needs_quoting = !!src[strcspn(src, meta_chars)];
1c43713e
 
dd830283
     if (needs_quoting)
d079d1d3
         av_bprint_chars(dst, '"', 1);
f0bb1a59
 
f70122dd
     for (; *src; src++) {
         if (*src == '"')
d079d1d3
             av_bprint_chars(dst, '"', 1);
f70122dd
         av_bprint_chars(dst, *src, 1);
1c43713e
     }
dd830283
     if (needs_quoting)
d079d1d3
         av_bprint_chars(dst, '"', 1);
f0bb1a59
     return dst->str;
1c43713e
 }
 
f0bb1a59
 static const char *none_escape_str(AVBPrint *dst, const char *src, const char sep, void *log_ctx)
1c43713e
 {
     return src;
 }
 
 typedef struct CompactContext {
     const AVClass *class;
     char *item_sep_str;
     char item_sep;
     int nokey;
0c71d5a0
     int print_section;
1c43713e
     char *escape_mode_str;
f0bb1a59
     const char * (*escape_str)(AVBPrint *dst, const char *src, const char sep, void *log_ctx);
06fd4c2d
     int nested_section[SECTION_MAX_NB_LEVELS];
2fcd4006
     int has_nested_elems[SECTION_MAX_NB_LEVELS];
     int terminate_line[SECTION_MAX_NB_LEVELS];
1c43713e
 } CompactContext;
 
f48f03a4
 #undef OFFSET
1c43713e
 #define OFFSET(x) offsetof(CompactContext, x)
 
 static const AVOption compact_options[]= {
     {"item_sep", "set item separator",    OFFSET(item_sep_str),    AV_OPT_TYPE_STRING, {.str="|"},  CHAR_MIN, CHAR_MAX },
     {"s",        "set item separator",    OFFSET(item_sep_str),    AV_OPT_TYPE_STRING, {.str="|"},  CHAR_MIN, CHAR_MAX },
d46c1c72
     {"nokey",    "force no key printing", OFFSET(nokey),           AV_OPT_TYPE_INT,    {.i64=0},    0,        1        },
     {"nk",       "force no key printing", OFFSET(nokey),           AV_OPT_TYPE_INT,    {.i64=0},    0,        1        },
1c43713e
     {"escape",   "set escape mode",       OFFSET(escape_mode_str), AV_OPT_TYPE_STRING, {.str="c"},  CHAR_MIN, CHAR_MAX },
     {"e",        "set escape mode",       OFFSET(escape_mode_str), AV_OPT_TYPE_STRING, {.str="c"},  CHAR_MIN, CHAR_MAX },
0c71d5a0
     {"print_section", "print section name", OFFSET(print_section), AV_OPT_TYPE_INT,    {.i64=1},    0,        1        },
     {"p",             "print section name", OFFSET(print_section), AV_OPT_TYPE_INT,    {.i64=1},    0,        1        },
1c43713e
     {NULL},
 };
 
f740c1a9
 DEFINE_WRITER_CLASS(compact);
1c43713e
 
ed2b69a4
 static av_cold int compact_init(WriterContext *wctx)
1c43713e
 {
     CompactContext *compact = wctx->priv;
 
     if (strlen(compact->item_sep_str) != 1) {
         av_log(wctx, AV_LOG_ERROR, "Item separator '%s' specified, but must contain a single character\n",
                compact->item_sep_str);
         return AVERROR(EINVAL);
     }
     compact->item_sep = compact->item_sep_str[0];
 
     if      (!strcmp(compact->escape_mode_str, "none")) compact->escape_str = none_escape_str;
     else if (!strcmp(compact->escape_mode_str, "c"   )) compact->escape_str = c_escape_str;
     else if (!strcmp(compact->escape_mode_str, "csv" )) compact->escape_str = csv_escape_str;
     else {
         av_log(wctx, AV_LOG_ERROR, "Unknown escape mode '%s'\n", compact->escape_mode_str);
         return AVERROR(EINVAL);
     }
 
     return 0;
 }
 
4552e9b5
 static void compact_print_section_header(WriterContext *wctx)
1c43713e
 {
     CompactContext *compact = wctx->priv;
4552e9b5
     const struct section *section = wctx->section[wctx->level];
06fd4c2d
     const struct section *parent_section = wctx->level ?
         wctx->section[wctx->level-1] : NULL;
2fcd4006
     compact->terminate_line[wctx->level] = 1;
     compact->has_nested_elems[wctx->level] = 0;
1c43713e
 
a945607a
     av_bprint_clear(&wctx->section_pbuf[wctx->level]);
2fcd4006
     if (!(section->flags & SECTION_FLAG_IS_ARRAY) && parent_section &&
06fd4c2d
         !(parent_section->flags & (SECTION_FLAG_IS_WRAPPER|SECTION_FLAG_IS_ARRAY))) {
         compact->nested_section[wctx->level] = 1;
2fcd4006
         compact->has_nested_elems[wctx->level-1] = 1;
a945607a
         av_bprintf(&wctx->section_pbuf[wctx->level], "%s%s:",
                    wctx->section_pbuf[wctx->level-1].str,
06fd4c2d
                    (char *)av_x_if_null(section->element_name, section->name));
4552e9b5
         wctx->nb_item[wctx->level] = wctx->nb_item[wctx->level-1];
2fcd4006
     } else {
         if (parent_section && compact->has_nested_elems[wctx->level-1] &&
             (section->flags & SECTION_FLAG_IS_ARRAY)) {
             compact->terminate_line[wctx->level-1] = 0;
             printf("\n");
         }
         if (compact->print_section &&
             !(section->flags & (SECTION_FLAG_IS_WRAPPER|SECTION_FLAG_IS_ARRAY)))
             printf("%s%c", section->name, compact->item_sep);
     }
1c43713e
 }
 
4552e9b5
 static void compact_print_section_footer(WriterContext *wctx)
1c43713e
 {
06fd4c2d
     CompactContext *compact = wctx->priv;
4552e9b5
 
06fd4c2d
     if (!compact->nested_section[wctx->level] &&
2fcd4006
         compact->terminate_line[wctx->level] &&
06fd4c2d
         !(wctx->section[wctx->level]->flags & (SECTION_FLAG_IS_WRAPPER|SECTION_FLAG_IS_ARRAY)))
4552e9b5
         printf("\n");
1c43713e
 }
 
 static void compact_print_str(WriterContext *wctx, const char *key, const char *value)
 {
     CompactContext *compact = wctx->priv;
f0bb1a59
     AVBPrint buf;
1c43713e
 
4552e9b5
     if (wctx->nb_item[wctx->level]) printf("%c", compact->item_sep);
1c43713e
     if (!compact->nokey)
a945607a
         printf("%s%s=", wctx->section_pbuf[wctx->level].str, key);
f0bb1a59
     av_bprint_init(&buf, 1, AV_BPRINT_SIZE_UNLIMITED);
     printf("%s", compact->escape_str(&buf, value, compact->item_sep, wctx));
     av_bprint_finalize(&buf, NULL);
1c43713e
 }
 
a7e56790
 static void compact_print_int(WriterContext *wctx, const char *key, long long int value)
1c43713e
 {
     CompactContext *compact = wctx->priv;
 
4552e9b5
     if (wctx->nb_item[wctx->level]) printf("%c", compact->item_sep);
1c43713e
     if (!compact->nokey)
a945607a
         printf("%s%s=", wctx->section_pbuf[wctx->level].str, key);
a7e56790
     printf("%lld", value);
1c43713e
 }
 
9813af25
 static const Writer compact_writer = {
f0db0500
     .name                 = "compact",
     .priv_size            = sizeof(CompactContext),
     .init                 = compact_init,
     .print_section_header = compact_print_section_header,
     .print_section_footer = compact_print_section_footer,
     .print_integer        = compact_print_int,
     .print_string         = compact_print_str,
     .flags = WRITER_FLAG_DISPLAY_OPTIONAL_FIELDS,
749ddc14
     .priv_class           = &compact_class,
1c43713e
 };
 
1f0d937f
 /* CSV output */
 
f398617b
 #undef OFFSET
 #define OFFSET(x) offsetof(CompactContext, x)
 
 static const AVOption csv_options[] = {
     {"item_sep", "set item separator",    OFFSET(item_sep_str),    AV_OPT_TYPE_STRING, {.str=","},  CHAR_MIN, CHAR_MAX },
     {"s",        "set item separator",    OFFSET(item_sep_str),    AV_OPT_TYPE_STRING, {.str=","},  CHAR_MIN, CHAR_MAX },
     {"nokey",    "force no key printing", OFFSET(nokey),           AV_OPT_TYPE_INT,    {.i64=1},    0,        1        },
     {"nk",       "force no key printing", OFFSET(nokey),           AV_OPT_TYPE_INT,    {.i64=1},    0,        1        },
     {"escape",   "set escape mode",       OFFSET(escape_mode_str), AV_OPT_TYPE_STRING, {.str="csv"}, CHAR_MIN, CHAR_MAX },
     {"e",        "set escape mode",       OFFSET(escape_mode_str), AV_OPT_TYPE_STRING, {.str="csv"}, CHAR_MIN, CHAR_MAX },
     {"print_section", "print section name", OFFSET(print_section), AV_OPT_TYPE_INT,    {.i64=1},    0,        1        },
     {"p",             "print section name", OFFSET(print_section), AV_OPT_TYPE_INT,    {.i64=1},    0,        1        },
     {NULL},
 };
 
 DEFINE_WRITER_CLASS(csv);
1f0d937f
 
9813af25
 static const Writer csv_writer = {
1f0d937f
     .name                 = "csv",
     .priv_size            = sizeof(CompactContext),
f398617b
     .init                 = compact_init,
1f0d937f
     .print_section_header = compact_print_section_header,
     .print_section_footer = compact_print_section_footer,
     .print_integer        = compact_print_int,
     .print_string         = compact_print_str,
     .flags = WRITER_FLAG_DISPLAY_OPTIONAL_FIELDS,
f398617b
     .priv_class           = &csv_class,
1f0d937f
 };
 
fd0c83c6
 /* Flat output */
 
 typedef struct FlatContext {
     const AVClass *class;
     const char *sep_str;
     char sep;
     int hierarchical;
 } FlatContext;
 
 #undef OFFSET
 #define OFFSET(x) offsetof(FlatContext, x)
 
 static const AVOption flat_options[]= {
     {"sep_char", "set separator",    OFFSET(sep_str),    AV_OPT_TYPE_STRING, {.str="."},  CHAR_MIN, CHAR_MAX },
     {"s",        "set separator",    OFFSET(sep_str),    AV_OPT_TYPE_STRING, {.str="."},  CHAR_MIN, CHAR_MAX },
d46c1c72
     {"hierarchical", "specify if the section specification should be hierarchical", OFFSET(hierarchical), AV_OPT_TYPE_INT, {.i64=1}, 0, 1 },
     {"h",           "specify if the section specification should be hierarchical", OFFSET(hierarchical), AV_OPT_TYPE_INT, {.i64=1}, 0, 1 },
fd0c83c6
     {NULL},
 };
 
f740c1a9
 DEFINE_WRITER_CLASS(flat);
fd0c83c6
 
ed2b69a4
 static av_cold int flat_init(WriterContext *wctx)
fd0c83c6
 {
     FlatContext *flat = wctx->priv;
 
     if (strlen(flat->sep_str) != 1) {
         av_log(wctx, AV_LOG_ERROR, "Item separator '%s' specified, but must contain a single character\n",
                flat->sep_str);
         return AVERROR(EINVAL);
     }
     flat->sep = flat->sep_str[0];
4552e9b5
 
fd0c83c6
     return 0;
 }
 
 static const char *flat_escape_key_str(AVBPrint *dst, const char *src, const char sep)
 {
     const char *p;
 
     for (p = src; *p; p++) {
         if (!((*p >= '0' && *p <= '9') ||
               (*p >= 'a' && *p <= 'z') ||
               (*p >= 'A' && *p <= 'Z')))
             av_bprint_chars(dst, '_', 1);
         else
             av_bprint_chars(dst, *p, 1);
     }
     return dst->str;
 }
 
 static const char *flat_escape_value_str(AVBPrint *dst, const char *src)
 {
     const char *p;
 
     for (p = src; *p; p++) {
         switch (*p) {
         case '\n': av_bprintf(dst, "%s", "\\n");  break;
         case '\r': av_bprintf(dst, "%s", "\\r");  break;
         case '\\': av_bprintf(dst, "%s", "\\\\"); break;
         case '"':  av_bprintf(dst, "%s", "\\\""); break;
bae99f76
         case '`':  av_bprintf(dst, "%s", "\\`");  break;
         case '$':  av_bprintf(dst, "%s", "\\$");  break;
fd0c83c6
         default:   av_bprint_chars(dst, *p, 1);   break;
         }
     }
     return dst->str;
 }
 
4552e9b5
 static void flat_print_section_header(WriterContext *wctx)
fd0c83c6
 {
     FlatContext *flat = wctx->priv;
a945607a
     AVBPrint *buf = &wctx->section_pbuf[wctx->level];
01e4537f
     const struct section *section = wctx->section[wctx->level];
     const struct section *parent_section = wctx->level ?
         wctx->section[wctx->level-1] : NULL;
fd0c83c6
 
4552e9b5
     /* build section header */
     av_bprint_clear(buf);
01e4537f
     if (!parent_section)
         return;
a945607a
     av_bprintf(buf, "%s", wctx->section_pbuf[wctx->level-1].str);
fd0c83c6
 
01e4537f
     if (flat->hierarchical ||
         !(section->flags & (SECTION_FLAG_IS_ARRAY|SECTION_FLAG_IS_WRAPPER))) {
         av_bprintf(buf, "%s%s", wctx->section[wctx->level]->name, flat->sep_str);
4552e9b5
 
01e4537f
         if (parent_section->flags & SECTION_FLAG_IS_ARRAY) {
             int n = parent_section->id == SECTION_ID_PACKETS_AND_FRAMES ?
                 wctx->nb_section_packet_frame : wctx->nb_item[wctx->level-1];
             av_bprintf(buf, "%d%s", n, flat->sep_str);
         }
4552e9b5
     }
fd0c83c6
 }
 
 static void flat_print_int(WriterContext *wctx, const char *key, long long int value)
 {
a945607a
     printf("%s%s=%lld\n", wctx->section_pbuf[wctx->level].str, key, value);
fd0c83c6
 }
 
 static void flat_print_str(WriterContext *wctx, const char *key, const char *value)
 {
     FlatContext *flat = wctx->priv;
     AVBPrint buf;
 
a945607a
     printf("%s", wctx->section_pbuf[wctx->level].str);
fd0c83c6
     av_bprint_init(&buf, 1, AV_BPRINT_SIZE_UNLIMITED);
     printf("%s=", flat_escape_key_str(&buf, key, flat->sep));
     av_bprint_clear(&buf);
     printf("\"%s\"\n", flat_escape_value_str(&buf, value));
     av_bprint_finalize(&buf, NULL);
 }
 
 static const Writer flat_writer = {
     .name                  = "flat",
     .priv_size             = sizeof(FlatContext),
     .init                  = flat_init,
     .print_section_header  = flat_print_section_header,
     .print_integer         = flat_print_int,
     .print_string          = flat_print_str,
     .flags = WRITER_FLAG_DISPLAY_OPTIONAL_FIELDS|WRITER_FLAG_PUT_PACKETS_AND_FRAMES_IN_SAME_CHAPTER,
749ddc14
     .priv_class            = &flat_class,
fd0c83c6
 };
 
89d49acb
 /* INI format output */
 
 typedef struct {
     const AVClass *class;
     int hierarchical;
 } INIContext;
 
 #undef OFFSET
 #define OFFSET(x) offsetof(INIContext, x)
 
 static const AVOption ini_options[] = {
d46c1c72
     {"hierarchical", "specify if the section specification should be hierarchical", OFFSET(hierarchical), AV_OPT_TYPE_INT, {.i64=1}, 0, 1 },
     {"h",           "specify if the section specification should be hierarchical", OFFSET(hierarchical), AV_OPT_TYPE_INT, {.i64=1}, 0, 1 },
89d49acb
     {NULL},
 };
 
f740c1a9
 DEFINE_WRITER_CLASS(ini);
89d49acb
 
 static char *ini_escape_str(AVBPrint *dst, const char *src)
 {
     int i = 0;
     char c = 0;
 
     while (c = src[i++]) {
         switch (c) {
         case '\b': av_bprintf(dst, "%s", "\\b"); break;
         case '\f': av_bprintf(dst, "%s", "\\f"); break;
         case '\n': av_bprintf(dst, "%s", "\\n"); break;
         case '\r': av_bprintf(dst, "%s", "\\r"); break;
         case '\t': av_bprintf(dst, "%s", "\\t"); break;
         case '\\':
         case '#' :
         case '=' :
         case ':' : av_bprint_chars(dst, '\\', 1);
         default:
             if ((unsigned char)c < 32)
                 av_bprintf(dst, "\\x00%02x", c & 0xff);
             else
                 av_bprint_chars(dst, c, 1);
             break;
         }
     }
     return dst->str;
 }
 
4552e9b5
 static void ini_print_section_header(WriterContext *wctx)
89d49acb
 {
     INIContext *ini = wctx->priv;
a945607a
     AVBPrint *buf = &wctx->section_pbuf[wctx->level];
4552e9b5
     const struct section *section = wctx->section[wctx->level];
     const struct section *parent_section = wctx->level ?
         wctx->section[wctx->level-1] : NULL;
89d49acb
 
74bd0cf4
     av_bprint_clear(buf);
     if (!parent_section) {
4552e9b5
         printf("# ffprobe output\n\n");
         return;
     }
89d49acb
 
4552e9b5
     if (wctx->nb_item[wctx->level-1])
89d49acb
         printf("\n");
 
a945607a
     av_bprintf(buf, "%s", wctx->section_pbuf[wctx->level-1].str);
74bd0cf4
     if (ini->hierarchical ||
         !(section->flags & (SECTION_FLAG_IS_ARRAY|SECTION_FLAG_IS_WRAPPER))) {
         av_bprintf(buf, "%s%s", buf->str[0] ? "." : "", wctx->section[wctx->level]->name);
89d49acb
 
74bd0cf4
         if (parent_section->flags & SECTION_FLAG_IS_ARRAY) {
             int n = parent_section->id == SECTION_ID_PACKETS_AND_FRAMES ?
                 wctx->nb_section_packet_frame : wctx->nb_item[wctx->level-1];
             av_bprintf(buf, ".%d", n);
         }
4552e9b5
     }
89d49acb
 
4552e9b5
     if (!(section->flags & (SECTION_FLAG_IS_ARRAY|SECTION_FLAG_IS_WRAPPER)))
74bd0cf4
         printf("[%s]\n", buf->str);
89d49acb
 }
 
 static void ini_print_str(WriterContext *wctx, const char *key, const char *value)
 {
     AVBPrint buf;
 
     av_bprint_init(&buf, 1, AV_BPRINT_SIZE_UNLIMITED);
     printf("%s=", ini_escape_str(&buf, key));
     av_bprint_clear(&buf);
     printf("%s\n", ini_escape_str(&buf, value));
     av_bprint_finalize(&buf, NULL);
 }
 
 static void ini_print_int(WriterContext *wctx, const char *key, long long int value)
 {
     printf("%s=%lld\n", key, value);
 }
 
 static const Writer ini_writer = {
     .name                  = "ini",
     .priv_size             = sizeof(INIContext),
     .print_section_header  = ini_print_section_header,
     .print_integer         = ini_print_int,
     .print_string          = ini_print_str,
     .flags = WRITER_FLAG_DISPLAY_OPTIONAL_FIELDS|WRITER_FLAG_PUT_PACKETS_AND_FRAMES_IN_SAME_CHAPTER,
749ddc14
     .priv_class            = &ini_class,
89d49acb
 };
 
eff7684b
 /* JSON output */
 
 typedef struct {
93d49cba
     const AVClass *class;
48f37b1d
     int indent_level;
93d49cba
     int compact;
     const char *item_sep, *item_start_end;
eff7684b
 } JSONContext;
 
93d49cba
 #undef OFFSET
 #define OFFSET(x) offsetof(JSONContext, x)
 
 static const AVOption json_options[]= {
d46c1c72
     { "compact", "enable compact output", OFFSET(compact), AV_OPT_TYPE_INT, {.i64=0}, 0, 1 },
     { "c",       "enable compact output", OFFSET(compact), AV_OPT_TYPE_INT, {.i64=0}, 0, 1 },
93d49cba
     { NULL }
 };
 
f740c1a9
 DEFINE_WRITER_CLASS(json);
93d49cba
 
ed2b69a4
 static av_cold int json_init(WriterContext *wctx)
2f3b028c
 {
     JSONContext *json = wctx->priv;
93d49cba
 
     json->item_sep       = json->compact ? ", " : ",\n";
     json->item_start_end = json->compact ? " "  : "\n";
2f3b028c
 
     return 0;
 }
 
f0bb1a59
 static const char *json_escape_str(AVBPrint *dst, const char *src, void *log_ctx)
eff7684b
 {
     static const char json_escape[] = {'"', '\\', '\b', '\f', '\n', '\r', '\t', 0};
     static const char json_subst[]  = {'"', '\\',  'b',  'f',  'n',  'r',  't', 0};
2f3b028c
     const char *p;
 
     for (p = src; *p; p++) {
         char *s = strchr(json_escape, *p);
         if (s) {
f0bb1a59
             av_bprint_chars(dst, '\\', 1);
             av_bprint_chars(dst, json_subst[s - json_escape], 1);
2f3b028c
         } else if ((unsigned char)*p < 32) {
f0bb1a59
             av_bprintf(dst, "\\u00%02x", *p & 0xff);
eff7684b
         } else {
f0bb1a59
             av_bprint_chars(dst, *p, 1);
eff7684b
         }
     }
f0bb1a59
     return dst->str;
eff7684b
 }
 
48f37b1d
 #define JSON_INDENT() printf("%*c", json->indent_level * 4, ' ')
 
4552e9b5
 static void json_print_section_header(WriterContext *wctx)
eff7684b
 {
     JSONContext *json = wctx->priv;
f0bb1a59
     AVBPrint buf;
4552e9b5
     const struct section *section = wctx->section[wctx->level];
     const struct section *parent_section = wctx->level ?
         wctx->section[wctx->level-1] : NULL;
eff7684b
 
4552e9b5
     if (wctx->level && wctx->nb_item[wctx->level-1])
         printf(",\n");
 
     if (section->flags & SECTION_FLAG_IS_WRAPPER) {
         printf("{\n");
         json->indent_level++;
     } else {
f0bb1a59
         av_bprint_init(&buf, 1, AV_BPRINT_SIZE_UNLIMITED);
4552e9b5
         json_escape_str(&buf, section->name, wctx);
         JSON_INDENT();
 
163f7afb
         json->indent_level++;
4552e9b5
         if (section->flags & SECTION_FLAG_IS_ARRAY) {
             printf("\"%s\": [\n", buf.str);
29d46d7b
         } else if (parent_section && !(parent_section->flags & SECTION_FLAG_IS_ARRAY)) {
4552e9b5
             printf("\"%s\": {%s", buf.str, json->item_start_end);
         } else {
             printf("{%s", json->item_start_end);
 
             /* this is required so the parser can distinguish between packets and frames */
29d46d7b
             if (parent_section && parent_section->id == SECTION_ID_PACKETS_AND_FRAMES) {
4552e9b5
                 if (!json->compact)
                     JSON_INDENT();
                 printf("\"type\": \"%s\"%s", section->name, json->item_sep);
             }
         }
         av_bprint_finalize(&buf, NULL);
3b1355bb
     }
eff7684b
 }
 
4552e9b5
 static void json_print_section_footer(WriterContext *wctx)
eff7684b
 {
     JSONContext *json = wctx->priv;
4552e9b5
     const struct section *section = wctx->section[wctx->level];
eff7684b
 
4552e9b5
     if (wctx->level == 0) {
         json->indent_level--;
         printf("\n}\n");
     } else if (section->flags & SECTION_FLAG_IS_ARRAY) {
3b1355bb
         printf("\n");
48f37b1d
         json->indent_level--;
3b1355bb
         JSON_INDENT();
         printf("]");
4552e9b5
     } else {
         printf("%s", json->item_start_end);
         json->indent_level--;
93d49cba
         if (!json->compact)
             JSON_INDENT();
4552e9b5
         printf("}");
48f37b1d
     }
eff7684b
 }
 
 static inline void json_print_item_str(WriterContext *wctx,
48f37b1d
                                        const char *key, const char *value)
eff7684b
 {
f0bb1a59
     AVBPrint buf;
eff7684b
 
f0bb1a59
     av_bprint_init(&buf, 1, AV_BPRINT_SIZE_UNLIMITED);
     printf("\"%s\":", json_escape_str(&buf, key,   wctx));
19c1bf15
     av_bprint_clear(&buf);
f0bb1a59
     printf(" \"%s\"", json_escape_str(&buf, value, wctx));
     av_bprint_finalize(&buf, NULL);
eff7684b
 }
 
 static void json_print_str(WriterContext *wctx, const char *key, const char *value)
 {
93d49cba
     JSONContext *json = wctx->priv;
 
4552e9b5
     if (wctx->nb_item[wctx->level])
         printf("%s", json->item_sep);
93d49cba
     if (!json->compact)
         JSON_INDENT();
48f37b1d
     json_print_item_str(wctx, key, value);
eff7684b
 }
 
a7e56790
 static void json_print_int(WriterContext *wctx, const char *key, long long int value)
eff7684b
 {
2f3b028c
     JSONContext *json = wctx->priv;
f0bb1a59
     AVBPrint buf;
0629b1ff
 
4552e9b5
     if (wctx->nb_item[wctx->level])
         printf("%s", json->item_sep);
93d49cba
     if (!json->compact)
         JSON_INDENT();
f0bb1a59
 
     av_bprint_init(&buf, 1, AV_BPRINT_SIZE_UNLIMITED);
     printf("\"%s\": %lld", json_escape_str(&buf, key, wctx), value);
     av_bprint_finalize(&buf, NULL);
eff7684b
 }
0629b1ff
 
9813af25
 static const Writer json_writer = {
69a501e6
     .name                 = "json",
     .priv_size            = sizeof(JSONContext),
2f3b028c
     .init                 = json_init,
eff7684b
     .print_section_header = json_print_section_header,
     .print_section_footer = json_print_section_footer,
     .print_integer        = json_print_int,
     .print_string         = json_print_str,
9997d416
     .flags = WRITER_FLAG_PUT_PACKETS_AND_FRAMES_IN_SAME_CHAPTER,
749ddc14
     .priv_class           = &json_class,
eff7684b
 };
 
20ac5849
 /* XML output */
 
 typedef struct {
     const AVClass *class;
     int within_tag;
     int indent_level;
     int fully_qualified;
     int xsd_strict;
 } XMLContext;
 
 #undef OFFSET
 #define OFFSET(x) offsetof(XMLContext, x)
 
 static const AVOption xml_options[] = {
d46c1c72
     {"fully_qualified", "specify if the output should be fully qualified", OFFSET(fully_qualified), AV_OPT_TYPE_INT, {.i64=0},  0, 1 },
     {"q",               "specify if the output should be fully qualified", OFFSET(fully_qualified), AV_OPT_TYPE_INT, {.i64=0},  0, 1 },
     {"xsd_strict",      "ensure that the output is XSD compliant",         OFFSET(xsd_strict),      AV_OPT_TYPE_INT, {.i64=0},  0, 1 },
     {"x",               "ensure that the output is XSD compliant",         OFFSET(xsd_strict),      AV_OPT_TYPE_INT, {.i64=0},  0, 1 },
20ac5849
     {NULL},
 };
 
f740c1a9
 DEFINE_WRITER_CLASS(xml);
20ac5849
 
ed2b69a4
 static av_cold int xml_init(WriterContext *wctx)
20ac5849
 {
     XMLContext *xml = wctx->priv;
 
     if (xml->xsd_strict) {
         xml->fully_qualified = 1;
 #define CHECK_COMPLIANCE(opt, opt_name)                                 \
         if (opt) {                                                      \
             av_log(wctx, AV_LOG_ERROR,                                  \
                    "XSD-compliant output selected but option '%s' was selected, XML output may be non-compliant.\n" \
                    "You need to disable such option with '-no%s'\n", opt_name, opt_name); \
c5f4abf6
             return AVERROR(EINVAL);                                     \
20ac5849
         }
         CHECK_COMPLIANCE(show_private_data, "private");
         CHECK_COMPLIANCE(show_value_unit,   "unit");
         CHECK_COMPLIANCE(use_value_prefix,  "prefix");
9997d416
 
         if (do_show_frames && do_show_packets) {
             av_log(wctx, AV_LOG_ERROR,
                    "Interleaved frames and packets are not allowed in XSD. "
                    "Select only one between the -show_frames and the -show_packets options.\n");
             return AVERROR(EINVAL);
         }
20ac5849
     }
 
     return 0;
 }
 
f0bb1a59
 static const char *xml_escape_str(AVBPrint *dst, const char *src, void *log_ctx)
20ac5849
 {
     const char *p;
 
f0bb1a59
     for (p = src; *p; p++) {
20ac5849
         switch (*p) {
f0bb1a59
         case '&' : av_bprintf(dst, "%s", "&amp;");  break;
         case '<' : av_bprintf(dst, "%s", "&lt;");   break;
         case '>' : av_bprintf(dst, "%s", "&gt;");   break;
d079d1d3
         case '"' : av_bprintf(dst, "%s", "&quot;"); break;
f0bb1a59
         case '\'': av_bprintf(dst, "%s", "&apos;"); break;
         default: av_bprint_chars(dst, *p, 1);
20ac5849
         }
     }
 
f0bb1a59
     return dst->str;
20ac5849
 }
 
ec624d7c
 #define XML_INDENT() printf("%*c", xml->indent_level * 4, ' ')
20ac5849
 
4552e9b5
 static void xml_print_section_header(WriterContext *wctx)
20ac5849
 {
     XMLContext *xml = wctx->priv;
4552e9b5
     const struct section *section = wctx->section[wctx->level];
     const struct section *parent_section = wctx->level ?
         wctx->section[wctx->level-1] : NULL;
 
     if (wctx->level == 0) {
         const char *qual = " xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' "
             "xmlns:ffprobe='http://www.ffmpeg.org/schema/ffprobe' "
             "xsi:schemaLocation='http://www.ffmpeg.org/schema/ffprobe ffprobe.xsd'";
 
         printf("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n");
         printf("<%sffprobe%s>\n",
                xml->fully_qualified ? "ffprobe:" : "",
                xml->fully_qualified ? qual : "");
         return;
20ac5849
     }
 
4552e9b5
     if (xml->within_tag) {
         xml->within_tag = 0;
         printf(">\n");
20ac5849
     }
50efde6b
     if (section->flags & SECTION_FLAG_HAS_VARIABLE_FIELDS) {
4552e9b5
         xml->indent_level++;
     } else {
50efde6b
         if (parent_section && (parent_section->flags & SECTION_FLAG_IS_WRAPPER) &&
             wctx->level && wctx->nb_item[wctx->level-1])
             printf("\n");
4552e9b5
         xml->indent_level++;
20ac5849
 
4552e9b5
         if (section->flags & SECTION_FLAG_IS_ARRAY) {
             XML_INDENT(); printf("<%s>\n", section->name);
         } else {
             XML_INDENT(); printf("<%s ", section->name);
             xml->within_tag = 1;
         }
     }
20ac5849
 }
 
4552e9b5
 static void xml_print_section_footer(WriterContext *wctx)
20ac5849
 {
     XMLContext *xml = wctx->priv;
4552e9b5
     const struct section *section = wctx->section[wctx->level];
20ac5849
 
4552e9b5
     if (wctx->level == 0) {
         printf("</%sffprobe>\n", xml->fully_qualified ? "ffprobe:" : "");
     } else if (xml->within_tag) {
         xml->within_tag = 0;
20ac5849
         printf("/>\n");
4552e9b5
         xml->indent_level--;
50efde6b
     } else if (section->flags & SECTION_FLAG_HAS_VARIABLE_FIELDS) {
4552e9b5
         xml->indent_level--;
     } else {
         XML_INDENT(); printf("</%s>\n", section->name);
         xml->indent_level--;
20ac5849
     }
 }
 
 static void xml_print_str(WriterContext *wctx, const char *key, const char *value)
 {
f0bb1a59
     AVBPrint buf;
4552e9b5
     XMLContext *xml = wctx->priv;
     const struct section *section = wctx->section[wctx->level];
20ac5849
 
f0bb1a59
     av_bprint_init(&buf, 1, AV_BPRINT_SIZE_UNLIMITED);
4552e9b5
 
50efde6b
     if (section->flags & SECTION_FLAG_HAS_VARIABLE_FIELDS) {
4552e9b5
         XML_INDENT();
50efde6b
         printf("<%s key=\"%s\"",
                section->element_name, xml_escape_str(&buf, key, wctx));
4552e9b5
         av_bprint_clear(&buf);
         printf(" value=\"%s\"/>\n", xml_escape_str(&buf, value, wctx));
     } else {
         if (wctx->nb_item[wctx->level])
             printf(" ");
         printf("%s=\"%s\"", key, xml_escape_str(&buf, value, wctx));
     }
 
f0bb1a59
     av_bprint_finalize(&buf, NULL);
20ac5849
 }
 
 static void xml_print_int(WriterContext *wctx, const char *key, long long int value)
 {
4552e9b5
     if (wctx->nb_item[wctx->level])
20ac5849
         printf(" ");
     printf("%s=\"%lld\"", key, value);
 }
 
 static Writer xml_writer = {
     .name                 = "xml",
     .priv_size            = sizeof(XMLContext),
     .init                 = xml_init,
     .print_section_header = xml_print_section_header,
     .print_section_footer = xml_print_section_footer,
     .print_integer        = xml_print_int,
     .print_string         = xml_print_str,
9997d416
     .flags = WRITER_FLAG_PUT_PACKETS_AND_FRAMES_IN_SAME_CHAPTER,
749ddc14
     .priv_class           = &xml_class,
20ac5849
 };
 
eff7684b
 static void writer_register_all(void)
 {
     static int initialized;
 
     if (initialized)
         return;
     initialized = 1;
 
     writer_register(&default_writer);
1c43713e
     writer_register(&compact_writer);
1f0d937f
     writer_register(&csv_writer);
fd0c83c6
     writer_register(&flat_writer);
89d49acb
     writer_register(&ini_writer);
eff7684b
     writer_register(&json_writer);
20ac5849
     writer_register(&xml_writer);
eff7684b
 }
 
 #define print_fmt(k, f, ...) do {              \
b545b947
     av_bprint_clear(&pbuf);                    \
     av_bprintf(&pbuf, f, __VA_ARGS__);         \
     writer_print_string(w, k, pbuf.str, 0);    \
eff7684b
 } while (0)
 
 #define print_int(k, v)         writer_print_integer(w, k, v)
a1411eec
 #define print_q(k, v, s)        writer_print_rational(w, k, v, s)
0491a2a0
 #define print_str(k, v)         writer_print_string(w, k, v, 0)
cbba331a
 #define print_str_opt(k, v)     writer_print_string(w, k, v, PRINT_STRING_OPT)
 #define print_str_validate(k, v) writer_print_string(w, k, v, PRINT_STRING_VALIDATE)
9083d09e
 #define print_time(k, v, tb)    writer_print_time(w, k, v, tb, 0)
 #define print_ts(k, v)          writer_print_ts(w, k, v, 0)
 #define print_duration_time(k, v, tb) writer_print_time(w, k, v, tb, 1)
 #define print_duration_ts(k, v)       writer_print_ts(w, k, v, 1)
8d0e871f
 #define print_val(k, v, u) do {                                     \
     struct unit_value uv;                                           \
     uv.val.i = v;                                                   \
     uv.unit = u;                                                    \
     writer_print_string(w, k, value_string(val_str, sizeof(val_str), uv), 0); \
 } while (0)
 
eff7684b
 #define print_section_header(s) writer_print_section_header(w, s)
 #define print_section_footer(s) writer_print_section_footer(w, s)
4552e9b5
 
73a60633
 #define REALLOCZ_ARRAY_STREAM(ptr, cur_n, new_n)                        \
 {                                                                       \
     ret = av_reallocp_array(&(ptr), (new_n), sizeof(*(ptr)));           \
     if (ret < 0)                                                        \
         goto end;                                                       \
     memset( (ptr) + (cur_n), 0, ((new_n) - (cur_n)) * sizeof(*(ptr)) ); \
 }
 
cbba331a
 static inline int show_tags(WriterContext *w, AVDictionary *tags, int section_id)
4552e9b5
 {
     AVDictionaryEntry *tag = NULL;
e87190f5
     int ret = 0;
4552e9b5
 
     if (!tags)
e87190f5
         return 0;
cbba331a
     writer_print_section_header(w, section_id);
e87190f5
 
     while ((tag = av_dict_get(tags, "", tag, AV_DICT_IGNORE_SUFFIX))) {
cbba331a
         if ((ret = print_str_validate(tag->key, tag->value)) < 0)
e87190f5
             break;
     }
cbba331a
     writer_print_section_footer(w);
e87190f5
 
     return ret;
4552e9b5
 }
eff7684b
 
 static void show_packet(WriterContext *w, AVFormatContext *fmt_ctx, AVPacket *pkt, int packet_idx)
530bbe96
 {
     char val_str[128];
     AVStream *st = fmt_ctx->streams[pkt->stream_index];
b545b947
     AVBPrint pbuf;
0491a2a0
     const char *s;
530bbe96
 
b545b947
     av_bprint_init(&pbuf, 1, AV_BPRINT_SIZE_UNLIMITED);
 
4552e9b5
     writer_print_section_header(w, SECTION_ID_PACKET);
 
0491a2a0
     s = av_get_media_type_string(st->codec->codec_type);
     if (s) print_str    ("codec_type", s);
     else   print_str_opt("codec_type", "unknown");
0629b1ff
     print_int("stream_index",     pkt->stream_index);
d2d6bade
     print_ts  ("pts",             pkt->pts);
     print_time("pts_time",        pkt->pts, &st->time_base);
     print_ts  ("dts",             pkt->dts);
     print_time("dts_time",        pkt->dts, &st->time_base);
9083d09e
     print_duration_ts("duration",        pkt->duration);
     print_duration_time("duration_time", pkt->duration, &st->time_base);
c49e960a
     print_duration_ts("convergence_duration", pkt->convergence_duration);
     print_duration_time("convergence_duration_time", pkt->convergence_duration, &st->time_base);
80abfbea
     print_val("size",             pkt->size, unit_byte_str);
0491a2a0
     if (pkt->pos != -1) print_fmt    ("pos", "%"PRId64, pkt->pos);
     else                print_str_opt("pos", "N/A");
0629b1ff
     print_fmt("flags", "%c",      pkt->flags & AV_PKT_FLAG_KEY ? 'K' : '_');
9ae3e455
     if (do_show_data)
         writer_print_data(w, "data", pkt->data, pkt->size);
4f3e2f10
     writer_print_data_hash(w, "data_hash", pkt->data, pkt->size);
4552e9b5
     writer_print_section_footer(w);
eff7684b
 
b545b947
     av_bprint_finalize(&pbuf, NULL);
25119a7f
     fflush(stdout);
530bbe96
 }
 
a0286035
 static void show_subtitle(WriterContext *w, AVSubtitle *sub, AVStream *stream,
                           AVFormatContext *fmt_ctx)
 {
     AVBPrint pbuf;
 
     av_bprint_init(&pbuf, 1, AV_BPRINT_SIZE_UNLIMITED);
 
     writer_print_section_header(w, SECTION_ID_SUBTITLE);
 
     print_str ("media_type",         "subtitle");
     print_ts  ("pts",                 sub->pts);
     print_time("pts_time",            sub->pts, &AV_TIME_BASE_Q);
     print_int ("format",              sub->format);
     print_int ("start_display_time",  sub->start_display_time);
     print_int ("end_display_time",    sub->end_display_time);
     print_int ("num_rects",           sub->num_rects);
 
     writer_print_section_footer(w);
 
     av_bprint_finalize(&pbuf, NULL);
     fflush(stdout);
 }
 
10b44f49
 static void show_frame(WriterContext *w, AVFrame *frame, AVStream *stream,
                        AVFormatContext *fmt_ctx)
9997d416
 {
b545b947
     AVBPrint pbuf;
9997d416
     const char *s;
547d64a4
     int i;
9997d416
 
b545b947
     av_bprint_init(&pbuf, 1, AV_BPRINT_SIZE_UNLIMITED);
 
4552e9b5
     writer_print_section_header(w, SECTION_ID_FRAME);
b25c239c
 
     s = av_get_media_type_string(stream->codec->codec_type);
     if (s) print_str    ("media_type", s);
     else   print_str_opt("media_type", "unknown");
     print_int("key_frame",              frame->key_frame);
     print_ts  ("pkt_pts",               frame->pkt_pts);
     print_time("pkt_pts_time",          frame->pkt_pts, &stream->time_base);
     print_ts  ("pkt_dts",               frame->pkt_dts);
     print_time("pkt_dts_time",          frame->pkt_dts, &stream->time_base);
5f6c2111
     print_ts  ("best_effort_timestamp", av_frame_get_best_effort_timestamp(frame));
     print_time("best_effort_timestamp_time", av_frame_get_best_effort_timestamp(frame), &stream->time_base);
3ded235f
     print_duration_ts  ("pkt_duration",      av_frame_get_pkt_duration(frame));
     print_duration_time("pkt_duration_time", av_frame_get_pkt_duration(frame), &stream->time_base);
     if (av_frame_get_pkt_pos (frame) != -1) print_fmt    ("pkt_pos", "%"PRId64, av_frame_get_pkt_pos(frame));
b25c239c
     else                      print_str_opt("pkt_pos", "N/A");
3ded235f
     if (av_frame_get_pkt_size(frame) != -1) print_fmt    ("pkt_size", "%d", av_frame_get_pkt_size(frame));
1a490df1
     else                       print_str_opt("pkt_size", "N/A");
b25c239c
 
     switch (stream->codec->codec_type) {
10b44f49
         AVRational sar;
 
b25c239c
     case AVMEDIA_TYPE_VIDEO:
bb4c1888
         print_int("width",                  frame->width);
         print_int("height",                 frame->height);
         s = av_get_pix_fmt_name(frame->format);
         if (s) print_str    ("pix_fmt", s);
         else   print_str_opt("pix_fmt", "unknown");
10b44f49
         sar = av_guess_sample_aspect_ratio(fmt_ctx, stream, frame);
         if (sar.num) {
             print_q("sample_aspect_ratio", sar, ':');
bb4c1888
         } else {
             print_str_opt("sample_aspect_ratio", "N/A");
         }
         print_fmt("pict_type",              "%c", av_get_picture_type_char(frame->pict_type));
         print_int("coded_picture_number",   frame->coded_picture_number);
         print_int("display_picture_number", frame->display_picture_number);
         print_int("interlaced_frame",       frame->interlaced_frame);
         print_int("top_field_first",        frame->top_field_first);
         print_int("repeat_pict",            frame->repeat_pict);
         break;
b25c239c
 
     case AVMEDIA_TYPE_AUDIO:
         s = av_get_sample_fmt_name(frame->format);
         if (s) print_str    ("sample_fmt", s);
         else   print_str_opt("sample_fmt", "unknown");
         print_int("nb_samples",         frame->nb_samples);
c809b89a
         print_int("channels", av_frame_get_channels(frame));
         if (av_frame_get_channel_layout(frame)) {
             av_bprint_clear(&pbuf);
             av_bprint_channel_layout(&pbuf, av_frame_get_channels(frame),
                                      av_frame_get_channel_layout(frame));
             print_str    ("channel_layout", pbuf.str);
         } else
             print_str_opt("channel_layout", "unknown");
b25c239c
         break;
     }
66a703ea
     if (do_show_frame_tags)
         show_tags(w, av_frame_get_metadata(frame), SECTION_ID_FRAME_TAGS);
547d64a4
     if (frame->nb_side_data) {
         writer_print_section_header(w, SECTION_ID_FRAME_SIDE_DATA_LIST);
         for (i = 0; i < frame->nb_side_data; i++) {
             AVFrameSideData *sd = frame->side_data[i];
             const char *name;
 
             writer_print_section_header(w, SECTION_ID_FRAME_SIDE_DATA);
             name = av_frame_side_data_name(sd->type);
             print_str("side_data_type", name ? name : "unknown");
             print_int("side_data_size", sd->size);
             writer_print_section_footer(w);
         }
         writer_print_section_footer(w);
     }
b25c239c
 
4552e9b5
     writer_print_section_footer(w);
9997d416
 
b545b947
     av_bprint_finalize(&pbuf, NULL);
9997d416
     fflush(stdout);
 }
 
d74ade7d
 static av_always_inline int process_frame(WriterContext *w,
                                           AVFormatContext *fmt_ctx,
                                           AVFrame *frame, AVPacket *pkt)
9997d416
 {
     AVCodecContext *dec_ctx = fmt_ctx->streams[pkt->stream_index]->codec;
a0286035
     AVSubtitle sub;
d74ade7d
     int ret = 0, got_frame = 0;
9997d416
 
5626e812
     if (dec_ctx->codec) {
9a1963fb
         switch (dec_ctx->codec_type) {
         case AVMEDIA_TYPE_VIDEO:
d74ade7d
             ret = avcodec_decode_video2(dec_ctx, frame, &got_frame, pkt);
9a1963fb
             break;
b25c239c
 
9a1963fb
         case AVMEDIA_TYPE_AUDIO:
d74ade7d
             ret = avcodec_decode_audio4(dec_ctx, frame, &got_frame, pkt);
9a1963fb
             break;
a0286035
 
         case AVMEDIA_TYPE_SUBTITLE:
             ret = avcodec_decode_subtitle2(dec_ctx, &sub, &got_frame, pkt);
             break;
9a1963fb
         }
5626e812
     }
b25c239c
 
d74ade7d
     if (ret < 0)
         return ret;
     ret = FFMIN(ret, pkt->size); /* guard against bogus return values */
     pkt->data += ret;
     pkt->size -= ret;
     if (got_frame) {
a0286035
         int is_sub = (dec_ctx->codec_type == AVMEDIA_TYPE_SUBTITLE);
d74ade7d
         nb_streams_frames[pkt->stream_index]++;
         if (do_show_frames)
a0286035
             if (is_sub)
                 show_subtitle(w, &sub, fmt_ctx->streams[pkt->stream_index], fmt_ctx);
             else
                 show_frame(w, frame, fmt_ctx->streams[pkt->stream_index], fmt_ctx);
         if (is_sub)
             avsubtitle_free(&sub);
d74ade7d
     }
     return got_frame;
9997d416
 }
 
f0606a28
 static void log_read_interval(const ReadInterval *interval, void *log_ctx, int log_level)
 {
     av_log(log_ctx, log_level, "id:%d", interval->id);
 
     if (interval->has_start) {
         av_log(log_ctx, log_level, " start:%s%s", interval->start_is_offset ? "+" : "",
                av_ts2timestr(interval->start, &AV_TIME_BASE_Q));
     } else {
         av_log(log_ctx, log_level, " start:N/A");
     }
 
     if (interval->has_end) {
         av_log(log_ctx, log_level, " end:%s", interval->end_is_offset ? "+" : "");
         if (interval->duration_frames)
             av_log(log_ctx, log_level, "#%"PRId64, interval->end);
         else
             av_log(log_ctx, log_level, "%s", av_ts2timestr(interval->end, &AV_TIME_BASE_Q));
     } else {
         av_log(log_ctx, log_level, " end:N/A");
     }
 
     av_log(log_ctx, log_level, "\n");
 }
 
 static int read_interval_packets(WriterContext *w, AVFormatContext *fmt_ctx,
                                  const ReadInterval *interval, int64_t *cur_ts)
530bbe96
 {
b25c239c
     AVPacket pkt, pkt1;
bf1c87ee
     AVFrame *frame = NULL;
f0606a28
     int ret = 0, i = 0, frame_count = 0;
7bac6e5c
     int64_t start = -INT64_MAX, end = interval->end;
f0606a28
     int has_start = 0, has_end = interval->has_end && !interval->end_is_offset;
530bbe96
 
     av_init_packet(&pkt);
 
f0606a28
     av_log(NULL, AV_LOG_VERBOSE, "Processing read interval ");
     log_read_interval(interval, NULL, AV_LOG_VERBOSE);
 
     if (interval->has_start) {
         int64_t target;
         if (interval->start_is_offset) {
             if (*cur_ts == AV_NOPTS_VALUE) {
                 av_log(NULL, AV_LOG_ERROR,
                        "Could not seek to relative position since current "
                        "timestamp is not defined\n");
                 ret = AVERROR(EINVAL);
                 goto end;
             }
             target = *cur_ts + interval->start;
         } else {
             target = interval->start;
         }
 
         av_log(NULL, AV_LOG_VERBOSE, "Seeking to read interval start point %s\n",
                av_ts2timestr(target, &AV_TIME_BASE_Q));
         if ((ret = avformat_seek_file(fmt_ctx, -1, -INT64_MAX, target, INT64_MAX, 0)) < 0) {
             av_log(NULL, AV_LOG_ERROR, "Could not seek to position %"PRId64": %s\n",
                    interval->start, av_err2str(ret));
             goto end;
         }
     }
 
bf1c87ee
     frame = av_frame_alloc();
a55692a9
     if (!frame) {
         ret = AVERROR(ENOMEM);
         goto end;
     }
9997d416
     while (!av_read_frame(fmt_ctx, &pkt)) {
73a60633
         if (fmt_ctx->nb_streams > nb_streams) {
             REALLOCZ_ARRAY_STREAM(nb_streams_frames,  nb_streams, fmt_ctx->nb_streams);
             REALLOCZ_ARRAY_STREAM(nb_streams_packets, nb_streams, fmt_ctx->nb_streams);
             REALLOCZ_ARRAY_STREAM(selected_streams,   nb_streams, fmt_ctx->nb_streams);
             nb_streams = fmt_ctx->nb_streams;
         }
3d189d41
         if (selected_streams[pkt.stream_index]) {
f0606a28
             AVRational tb = fmt_ctx->streams[pkt.stream_index]->time_base;
 
             if (pkt.pts != AV_NOPTS_VALUE)
                 *cur_ts = av_rescale_q(pkt.pts, tb, AV_TIME_BASE_Q);
 
             if (!has_start && *cur_ts != AV_NOPTS_VALUE) {
                 start = *cur_ts;
                 has_start = 1;
             }
 
             if (has_start && !has_end && interval->end_is_offset) {
                 end = start + interval->end;
                 has_end = 1;
             }
 
             if (interval->end_is_offset && interval->duration_frames) {
                 if (frame_count >= interval->end)
                     break;
             } else if (has_end && *cur_ts != AV_NOPTS_VALUE && *cur_ts >= end) {
                 break;
             }
 
             frame_count++;
531872d7
             if (do_read_packets) {
                 if (do_show_packets)
                     show_packet(w, fmt_ctx, &pkt, i++);
                 nb_streams_packets[pkt.stream_index]++;
             }
             if (do_read_frames) {
                 pkt1 = pkt;
bf1c87ee
                 while (pkt1.size && process_frame(w, fmt_ctx, frame, &pkt1) > 0);
531872d7
             }
3d189d41
         }
4fd1e2e4
         av_free_packet(&pkt);
9997d416
     }
     av_init_packet(&pkt);
     pkt.data = NULL;
     pkt.size = 0;
     //Flush remaining frames that are cached in the decoder
     for (i = 0; i < fmt_ctx->nb_streams; i++) {
         pkt.stream_index = i;
d74ade7d
         if (do_read_frames)
bf1c87ee
             while (process_frame(w, fmt_ctx, frame, &pkt) > 0);
9997d416
     }
f0606a28
 
 end:
bf1c87ee
     av_frame_free(&frame);
f0606a28
     if (ret < 0) {
         av_log(NULL, AV_LOG_ERROR, "Could not read packets in interval ");
         log_read_interval(interval, NULL, AV_LOG_ERROR);
     }
     return ret;
 }
 
e87190f5
 static int read_packets(WriterContext *w, AVFormatContext *fmt_ctx)
f0606a28
 {
     int i, ret = 0;
     int64_t cur_ts = fmt_ctx->start_time;
 
     if (read_intervals_nb == 0) {
         ReadInterval interval = (ReadInterval) { .has_start = 0, .has_end = 0 };
         ret = read_interval_packets(w, fmt_ctx, &interval, &cur_ts);
     } else {
         for (i = 0; i < read_intervals_nb; i++) {
             ret = read_interval_packets(w, fmt_ctx, &read_intervals[i], &cur_ts);
             if (ret < 0)
                 break;
         }
     }
e87190f5
 
     return ret;
530bbe96
 }
 
e87190f5
 static int show_stream(WriterContext *w, AVFormatContext *fmt_ctx, int stream_idx, int in_program)
336ce917
 {
     AVStream *stream = fmt_ctx->streams[stream_idx];
     AVCodecContext *dec_ctx;
c9fe8644
     const AVCodec *dec;
336ce917
     char val_str[128];
0491a2a0
     const char *s;
10b44f49
     AVRational sar, dar;
b545b947
     AVBPrint pbuf;
43ca94a6
     const AVCodecDescriptor *cd;
e87190f5
     int ret = 0;
b545b947
 
     av_bprint_init(&pbuf, 1, AV_BPRINT_SIZE_UNLIMITED);
336ce917
 
2186a7e5
     writer_print_section_header(w, in_program ? SECTION_ID_PROGRAM_STREAM : SECTION_ID_STREAM);
336ce917
 
eff7684b
     print_int("index", stream->index);
336ce917
 
     if ((dec_ctx = stream->codec)) {
f7d52724
         const char *profile = NULL;
4cd1addc
         dec = dec_ctx->codec;
         if (dec) {
             print_str("codec_name", dec->name);
             if (!do_bitexact) {
42047c3e
                 if (dec->long_name) print_str    ("codec_long_name", dec->long_name);
                 else                print_str_opt("codec_long_name", "unknown");
4cd1addc
             }
43ca94a6
         } else if ((cd = avcodec_descriptor_get(stream->codec->codec_id))) {
             print_str_opt("codec_name", cd->name);
             if (!do_bitexact) {
                 print_str_opt("codec_long_name",
                               cd->long_name ? cd->long_name : "unknown");
             }
336ce917
         } else {
42047c3e
             print_str_opt("codec_name", "unknown");
4cd1addc
             if (!do_bitexact) {
42047c3e
                 print_str_opt("codec_long_name", "unknown");
4cd1addc
             }
336ce917
         }
 
f7d52724
         if (dec && (profile = av_get_profile_name(dec, dec_ctx->profile)))
             print_str("profile", profile);
         else
             print_str_opt("profile", "unknown");
 
0491a2a0
         s = av_get_media_type_string(dec_ctx->codec_type);
         if (s) print_str    ("codec_type", s);
         else   print_str_opt("codec_type", "unknown");
a1411eec
         print_q("codec_time_base", dec_ctx->time_base, '/');
336ce917
 
         /* print AVI/FourCC tag */
7e566bbe
         av_get_codec_tag_string(val_str, sizeof(val_str), dec_ctx->codec_tag);
0629b1ff
         print_str("codec_tag_string",    val_str);
         print_fmt("codec_tag", "0x%04x", dec_ctx->codec_tag);
336ce917
 
         switch (dec_ctx->codec_type) {
72415b2a
         case AVMEDIA_TYPE_VIDEO:
0629b1ff
             print_int("width",        dec_ctx->width);
             print_int("height",       dec_ctx->height);
             print_int("has_b_frames", dec_ctx->has_b_frames);
10b44f49
             sar = av_guess_sample_aspect_ratio(fmt_ctx, stream, NULL);
             if (sar.den) {
                 print_q("sample_aspect_ratio", sar, ':');
                 av_reduce(&dar.num, &dar.den,
                           dec_ctx->width  * sar.num,
                           dec_ctx->height * sar.den,
441881b4
                           1024*1024);
10b44f49
                 print_q("display_aspect_ratio", dar, ':');
0491a2a0
             } else {
                 print_str_opt("sample_aspect_ratio", "N/A");
                 print_str_opt("display_aspect_ratio", "N/A");
8280e2bd
             }
0491a2a0
             s = av_get_pix_fmt_name(dec_ctx->pix_fmt);
             if (s) print_str    ("pix_fmt", s);
             else   print_str_opt("pix_fmt", "unknown");
0629b1ff
             print_int("level",   dec_ctx->level);
f6e772f9
             if (dec_ctx->color_range != AVCOL_RANGE_UNSPECIFIED)
                 print_str    ("color_range", dec_ctx->color_range == AVCOL_RANGE_MPEG ? "tv": "pc");
             else
                 print_str_opt("color_range", "N/A");
             s = av_get_colorspace_name(dec_ctx->colorspace);
             if (s) print_str    ("color_space", s);
             else   print_str_opt("color_space", "unknown");
fbe6e296
             if (dec_ctx->timecode_frame_start >= 0) {
dc386a5e
                 char tcbuf[AV_TIMECODE_STR_SIZE];
                 av_timecode_make_mpeg_tc_string(tcbuf, dec_ctx->timecode_frame_start);
                 print_str("timecode", tcbuf);
fbe6e296
             } else {
                 print_str_opt("timecode", "N/A");
             }
336ce917
             break;
 
72415b2a
         case AVMEDIA_TYPE_AUDIO:
0491a2a0
             s = av_get_sample_fmt_name(dec_ctx->sample_fmt);
             if (s) print_str    ("sample_fmt", s);
             else   print_str_opt("sample_fmt", "unknown");
80abfbea
             print_val("sample_rate",     dec_ctx->sample_rate, unit_hertz_str);
0629b1ff
             print_int("channels",        dec_ctx->channels);
f5b27b6d
 
             if (dec_ctx->channel_layout) {
                 av_bprint_clear(&pbuf);
                 av_bprint_channel_layout(&pbuf, dec_ctx->channels, dec_ctx->channel_layout);
                 print_str    ("channel_layout", pbuf.str);
             } else {
                 print_str_opt("channel_layout", "unknown");
             }
 
0629b1ff
             print_int("bits_per_sample", av_get_bits_per_sample(dec_ctx->codec_id));
336ce917
             break;
83635ac6
 
         case AVMEDIA_TYPE_SUBTITLE:
             if (dec_ctx->width)
                 print_int("width",       dec_ctx->width);
             else
                 print_str_opt("width",   "N/A");
             if (dec_ctx->height)
                 print_int("height",      dec_ctx->height);
             else
                 print_str_opt("height",  "N/A");
             break;
336ce917
         }
     } else {
0491a2a0
         print_str_opt("codec_type", "unknown");
336ce917
     }
f1a4182e
     if (dec_ctx->codec && dec_ctx->codec->priv_class && show_private_data) {
1e402774
         const AVOption *opt = NULL;
16f79357
         while (opt = av_opt_next(dec_ctx->priv_data,opt)) {
             uint8_t *str;
             if (opt->flags) continue;
             if (av_opt_get(dec_ctx->priv_data, opt->name, 0, &str) >= 0) {
                 print_str(opt->name, str);
                 av_free(str);
             }
         }
     }
336ce917
 
0491a2a0
     if (fmt_ctx->iformat->flags & AVFMT_SHOW_IDS) print_fmt    ("id", "0x%x", stream->id);
     else                                          print_str_opt("id", "N/A");
a1411eec
     print_q("r_frame_rate",   stream->r_frame_rate,   '/');
     print_q("avg_frame_rate", stream->avg_frame_rate, '/');
     print_q("time_base",      stream->time_base,      '/');
f9dd2e5e
     print_ts  ("start_pts",   stream->start_time);
     print_time("start_time",  stream->start_time, &stream->time_base);
     print_ts  ("duration_ts", stream->duration);
     print_time("duration",    stream->duration, &stream->time_base);
278d6ab9
     if (dec_ctx->bit_rate > 0) print_val    ("bit_rate", dec_ctx->bit_rate, unit_bit_per_second_str);
     else                       print_str_opt("bit_rate", "N/A");
3c2d9f86
     if (dec_ctx->rc_max_rate > 0) print_val ("max_bit_rate", dec_ctx->rc_max_rate, unit_bit_per_second_str);
     else                       print_str_opt("max_bit_rate", "N/A");
42b4da75
     if (dec_ctx->bits_per_raw_sample > 0) print_fmt("bits_per_raw_sample", "%d", dec_ctx->bits_per_raw_sample);
     else                       print_str_opt("bits_per_raw_sample", "N/A");
0491a2a0
     if (stream->nb_frames) print_fmt    ("nb_frames", "%"PRId64, stream->nb_frames);
     else                   print_str_opt("nb_frames", "N/A");
29b9aee4
     if (nb_streams_frames[stream_idx])  print_fmt    ("nb_read_frames", "%"PRIu64, nb_streams_frames[stream_idx]);
     else                                print_str_opt("nb_read_frames", "N/A");
     if (nb_streams_packets[stream_idx]) print_fmt    ("nb_read_packets", "%"PRIu64, nb_streams_packets[stream_idx]);
     else                                print_str_opt("nb_read_packets", "N/A");
9ae3e455
     if (do_show_data)
         writer_print_data(w, "extradata", dec_ctx->extradata,
                                           dec_ctx->extradata_size);
4f3e2f10
     writer_print_data_hash(w, "extradata_hash", dec_ctx->extradata,
                                                 dec_ctx->extradata_size);
301f6da0
 
     /* Print disposition information */
 #define PRINT_DISPOSITION(flagname, name) do {                                \
         print_int(name, !!(stream->disposition & AV_DISPOSITION_##flagname)); \
     } while (0)
 
196765a7
     if (do_show_stream_disposition) {
2186a7e5
     writer_print_section_header(w, in_program ? SECTION_ID_PROGRAM_STREAM_DISPOSITION : SECTION_ID_STREAM_DISPOSITION);
301f6da0
     PRINT_DISPOSITION(DEFAULT,          "default");
     PRINT_DISPOSITION(DUB,              "dub");
     PRINT_DISPOSITION(ORIGINAL,         "original");
     PRINT_DISPOSITION(COMMENT,          "comment");
     PRINT_DISPOSITION(LYRICS,           "lyrics");
     PRINT_DISPOSITION(KARAOKE,          "karaoke");
     PRINT_DISPOSITION(FORCED,           "forced");
     PRINT_DISPOSITION(HEARING_IMPAIRED, "hearing_impaired");
     PRINT_DISPOSITION(VISUAL_IMPAIRED,  "visual_impaired");
     PRINT_DISPOSITION(CLEAN_EFFECTS,    "clean_effects");
     PRINT_DISPOSITION(ATTACHED_PIC,     "attached_pic");
     writer_print_section_footer(w);
196765a7
     }
301f6da0
 
66a703ea
     if (do_show_stream_tags)
         ret = show_tags(w, stream->metadata, in_program ? SECTION_ID_PROGRAM_STREAM_TAGS : SECTION_ID_STREAM_TAGS);
336ce917
 
4552e9b5
     writer_print_section_footer(w);
b545b947
     av_bprint_finalize(&pbuf, NULL);
25119a7f
     fflush(stdout);
e87190f5
 
     return ret;
336ce917
 }
 
e87190f5
 static int show_streams(WriterContext *w, AVFormatContext *fmt_ctx)
0629b1ff
 {
e87190f5
     int i, ret = 0;
 
4552e9b5
     writer_print_section_header(w, SECTION_ID_STREAMS);
0629b1ff
     for (i = 0; i < fmt_ctx->nb_streams; i++)
e87190f5
         if (selected_streams[i]) {
             ret = show_stream(w, fmt_ctx, i, 0);
             if (ret < 0)
                 break;
         }
2186a7e5
     writer_print_section_footer(w);
e87190f5
 
     return ret;
2186a7e5
 }
 
e87190f5
 static int show_program(WriterContext *w, AVFormatContext *fmt_ctx, AVProgram *program)
2186a7e5
 {
e87190f5
     int i, ret = 0;
2186a7e5
 
     writer_print_section_header(w, SECTION_ID_PROGRAM);
     print_int("program_id", program->id);
     print_int("program_num", program->program_num);
     print_int("nb_streams", program->nb_stream_indexes);
     print_int("pmt_pid", program->pmt_pid);
     print_int("pcr_pid", program->pcr_pid);
     print_ts("start_pts", program->start_time);
     print_time("start_time", program->start_time, &AV_TIME_BASE_Q);
     print_ts("end_pts", program->end_time);
     print_time("end_time", program->end_time, &AV_TIME_BASE_Q);
66a703ea
     if (do_show_program_tags)
         ret = show_tags(w, program->metadata, SECTION_ID_PROGRAM_TAGS);
e87190f5
     if (ret < 0)
         goto end;
2186a7e5
 
     writer_print_section_header(w, SECTION_ID_PROGRAM_STREAMS);
     for (i = 0; i < program->nb_stream_indexes; i++) {
e87190f5
         if (selected_streams[program->stream_index[i]]) {
             ret = show_stream(w, fmt_ctx, program->stream_index[i], 1);
             if (ret < 0)
                 break;
         }
2186a7e5
     }
     writer_print_section_footer(w);
 
e87190f5
 end:
2186a7e5
     writer_print_section_footer(w);
e87190f5
     return ret;
2186a7e5
 }
 
e87190f5
 static int show_programs(WriterContext *w, AVFormatContext *fmt_ctx)
2186a7e5
 {
e87190f5
     int i, ret = 0;
2186a7e5
 
     writer_print_section_header(w, SECTION_ID_PROGRAMS);
     for (i = 0; i < fmt_ctx->nb_programs; i++) {
         AVProgram *program = fmt_ctx->programs[i];
         if (!program)
             continue;
e87190f5
         ret = show_program(w, fmt_ctx, program);
         if (ret < 0)
             break;
2186a7e5
     }
4552e9b5
     writer_print_section_footer(w);
e87190f5
     return ret;
0629b1ff
 }
 
e87190f5
 static int show_chapters(WriterContext *w, AVFormatContext *fmt_ctx)
4da54022
 {
e87190f5
     int i, ret = 0;
4da54022
 
     writer_print_section_header(w, SECTION_ID_CHAPTERS);
     for (i = 0; i < fmt_ctx->nb_chapters; i++) {
         AVChapter *chapter = fmt_ctx->chapters[i];
 
         writer_print_section_header(w, SECTION_ID_CHAPTER);
         print_int("id", chapter->id);
         print_q  ("time_base", chapter->time_base, '/');
         print_int("start", chapter->start);
         print_time("start_time", chapter->start, &chapter->time_base);
         print_int("end", chapter->end);
         print_time("end_time", chapter->end, &chapter->time_base);
66a703ea
         if (do_show_chapter_tags)
             ret = show_tags(w, chapter->metadata, SECTION_ID_CHAPTER_TAGS);
4da54022
         writer_print_section_footer(w);
     }
     writer_print_section_footer(w);
e87190f5
 
     return ret;
4da54022
 }
 
e87190f5
 static int show_format(WriterContext *w, AVFormatContext *fmt_ctx)
336ce917
 {
     char val_str[128];
b18e17ea
     int64_t size = fmt_ctx->pb ? avio_size(fmt_ctx->pb) : -1;
e87190f5
     int ret = 0;
336ce917
 
4552e9b5
     writer_print_section_header(w, SECTION_ID_FORMAT);
cbba331a
     print_str_validate("filename", fmt_ctx->filename);
0629b1ff
     print_int("nb_streams",       fmt_ctx->nb_streams);
2186a7e5
     print_int("nb_programs",      fmt_ctx->nb_programs);
0629b1ff
     print_str("format_name",      fmt_ctx->iformat->name);
4cd1addc
     if (!do_bitexact) {
42047c3e
         if (fmt_ctx->iformat->long_name) print_str    ("format_long_name", fmt_ctx->iformat->long_name);
         else                             print_str_opt("format_long_name", "unknown");
4cd1addc
     }
d2d6bade
     print_time("start_time",      fmt_ctx->start_time, &AV_TIME_BASE_Q);
     print_time("duration",        fmt_ctx->duration,   &AV_TIME_BASE_Q);
0491a2a0
     if (size >= 0) print_val    ("size", size, unit_byte_str);
     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");
291ad12e
     print_int("probe_score", av_format_get_probe_score(fmt_ctx));
66a703ea
     if (do_show_format_tags)
         ret = show_tags(w, fmt_ctx->metadata, SECTION_ID_FORMAT_TAGS);
4552e9b5
 
     writer_print_section_footer(w);
25119a7f
     fflush(stdout);
e87190f5
     return ret;
336ce917
 }
 
d6da16dc
 static void show_error(WriterContext *w, int err)
 {
     char errbuf[128];
     const char *errbuf_ptr = errbuf;
 
     if (av_strerror(err, errbuf, sizeof(errbuf)) < 0)
         errbuf_ptr = strerror(AVUNERROR(err));
 
4552e9b5
     writer_print_section_header(w, SECTION_ID_ERROR);
d6da16dc
     print_int("code", err);
     print_str("string", errbuf_ptr);
4552e9b5
     writer_print_section_footer(w);
d6da16dc
 }
 
336ce917
 static int open_input_file(AVFormatContext **fmt_ctx_ptr, const char *filename)
 {
1019cef3
     int err, i, orig_nb_streams;
e0518705
     AVFormatContext *fmt_ctx = NULL;
     AVDictionaryEntry *t;
1019cef3
     AVDictionary **opts;
336ce917
 
c130428a
     if ((err = avformat_open_input(&fmt_ctx, filename,
                                    iformat, &format_opts)) < 0) {
336ce917
         print_error(filename, err);
         return err;
     }
e0518705
     if ((t = av_dict_get(format_opts, "", NULL, AV_DICT_IGNORE_SUFFIX))) {
         av_log(NULL, AV_LOG_ERROR, "Option %s not found.\n", t->key);
         return AVERROR_OPTION_NOT_FOUND;
     }
 
336ce917
     /* fill the streams in the format context */
1019cef3
     opts = setup_find_stream_info_opts(fmt_ctx, codec_opts);
     orig_nb_streams = fmt_ctx->nb_streams;
 
     if ((err = avformat_find_stream_info(fmt_ctx, opts)) < 0) {
336ce917
         print_error(filename, err);
         return err;
     }
1019cef3
     for (i = 0; i < orig_nb_streams; i++)
         av_dict_free(&opts[i]);
     av_freep(&opts);
336ce917
 
0ebf4754
     av_dump_format(fmt_ctx, 0, filename, 0);
336ce917
 
     /* bind a decoder to each input stream */
     for (i = 0; i < fmt_ctx->nb_streams; i++) {
         AVStream *stream = fmt_ctx->streams[i];
         AVCodec *codec;
 
7a72695c
         if (stream->codec->codec_id == AV_CODEC_ID_PROBE) {
5d12ec8f
             av_log(NULL, AV_LOG_WARNING,
ad60b3b1
                    "Failed to probe codec for input stream %d\n",
                     stream->index);
         } else if (!(codec = avcodec_find_decoder(stream->codec->codec_id))) {
5d12ec8f
             av_log(NULL, AV_LOG_WARNING,
c130428a
                     "Unsupported codec with id %d for input stream %d\n",
                     stream->codec->codec_id, stream->index);
1019cef3
         } else {
             AVDictionary *opts = filter_codec_opts(codec_opts, stream->codec->codec_id,
                                                    fmt_ctx, stream, codec);
             if (avcodec_open2(stream->codec, codec, &opts) < 0) {
5d12ec8f
                 av_log(NULL, AV_LOG_WARNING, "Could not open codec for input stream %d\n",
1019cef3
                        stream->index);
             }
             if ((t = av_dict_get(opts, "", NULL, AV_DICT_IGNORE_SUFFIX))) {
                 av_log(NULL, AV_LOG_ERROR, "Option %s for input stream %d not found\n",
                        t->key, stream->index);
                 return AVERROR_OPTION_NOT_FOUND;
             }
336ce917
         }
     }
 
     *fmt_ctx_ptr = fmt_ctx;
     return 0;
 }
 
1cbf7fb4
 static void close_input_file(AVFormatContext **ctx_ptr)
 {
     int i;
     AVFormatContext *fmt_ctx = *ctx_ptr;
 
     /* close decoder for each stream */
     for (i = 0; i < fmt_ctx->nb_streams; i++)
7a72695c
         if (fmt_ctx->streams[i]->codec->codec_id != AV_CODEC_ID_NONE)
1cbf7fb4
             avcodec_close(fmt_ctx->streams[i]->codec);
 
     avformat_close_input(ctx_ptr);
 }
 
fa7d1c39
 static int probe_file(WriterContext *wctx, const char *filename)
336ce917
 {
     AVFormatContext *fmt_ctx;
3d189d41
     int ret, i;
4552e9b5
     int section_id;
336ce917
 
29b9aee4
     do_read_frames = do_show_frames || do_count_frames;
     do_read_packets = do_show_packets || do_count_packets;
 
90347dab
     ret = open_input_file(&fmt_ctx, filename);
205092bf
     if (ret < 0)
         return ret;
 
e87190f5
 #define CHECK_END if (ret < 0) goto end
 
73a60633
     nb_streams = fmt_ctx->nb_streams;
     REALLOCZ_ARRAY_STREAM(nb_streams_frames,0,fmt_ctx->nb_streams);
     REALLOCZ_ARRAY_STREAM(nb_streams_packets,0,fmt_ctx->nb_streams);
     REALLOCZ_ARRAY_STREAM(selected_streams,0,fmt_ctx->nb_streams);
3d189d41
 
1fc626f8
     for (i = 0; i < fmt_ctx->nb_streams; i++) {
         if (stream_specifier) {
             ret = avformat_match_stream_specifier(fmt_ctx,
                                                   fmt_ctx->streams[i],
                                                   stream_specifier);
e87190f5
             CHECK_END;
1fc626f8
             else
                 selected_streams[i] = ret;
             ret = 0;
         } else {
             selected_streams[i] = 1;
9997d416
         }
1fc626f8
     }
 
     if (do_read_frames || do_read_packets) {
         if (do_show_frames && do_show_packets &&
             wctx->writer->flags & WRITER_FLAG_PUT_PACKETS_AND_FRAMES_IN_SAME_CHAPTER)
             section_id = SECTION_ID_PACKETS_AND_FRAMES;
         else if (do_show_packets && !do_show_frames)
             section_id = SECTION_ID_PACKETS;
         else // (!do_show_packets && do_show_frames)
             section_id = SECTION_ID_FRAMES;
         if (do_show_frames || do_show_packets)
             writer_print_section_header(wctx, section_id);
e87190f5
         ret = read_packets(wctx, fmt_ctx);
1fc626f8
         if (do_show_frames || do_show_packets)
             writer_print_section_footer(wctx);
e87190f5
         CHECK_END;
     }
65a3429e
 
e87190f5
     if (do_show_programs) {
         ret = show_programs(wctx, fmt_ctx);
         CHECK_END;
     }
 
     if (do_show_streams) {
         ret = show_streams(wctx, fmt_ctx);
         CHECK_END;
     }
     if (do_show_chapters) {
         ret = show_chapters(wctx, fmt_ctx);
         CHECK_END;
     }
     if (do_show_format) {
         ret = show_format(wctx, fmt_ctx);
         CHECK_END;
1fc626f8
     }
 
 end:
     close_input_file(&fmt_ctx);
     av_freep(&nb_streams_frames);
     av_freep(&nb_streams_packets);
     av_freep(&selected_streams);
205092bf
 
cb50ada4
     return ret;
336ce917
 }
 
 static void show_usage(void)
 {
ceef1ee7
     av_log(NULL, AV_LOG_INFO, "Simple multimedia streams analyzer\n");
     av_log(NULL, AV_LOG_INFO, "usage: %s [OPTIONS] [INPUT_FILE]\n", program_name);
     av_log(NULL, AV_LOG_INFO, "\n");
336ce917
 }
 
5226be0d
 static void ffprobe_show_program_version(WriterContext *w)
 {
b545b947
     AVBPrint pbuf;
     av_bprint_init(&pbuf, 1, AV_BPRINT_SIZE_UNLIMITED);
5226be0d
 
4552e9b5
     writer_print_section_header(w, SECTION_ID_PROGRAM_VERSION);
5226be0d
     print_str("version", FFMPEG_VERSION);
     print_fmt("copyright", "Copyright (c) %d-%d the FFmpeg developers",
8bf7ea8a
               program_birth_year, CONFIG_THIS_YEAR);
5226be0d
     print_str("build_date", __DATE__);
     print_str("build_time", __TIME__);
85044358
     print_str("compiler_ident", CC_IDENT);
5226be0d
     print_str("configuration", FFMPEG_CONFIGURATION);
4552e9b5
     writer_print_section_footer(w);
5226be0d
 
b545b947
     av_bprint_finalize(&pbuf, NULL);
5226be0d
 }
 
 #define SHOW_LIB_VERSION(libname, LIBNAME)                              \
     do {                                                                \
         if (CONFIG_##LIBNAME) {                                         \
             unsigned int version = libname##_version();                 \
4552e9b5
             writer_print_section_header(w, SECTION_ID_LIBRARY_VERSION); \
5226be0d
             print_str("name",    "lib" #libname);                       \
             print_int("major",   LIB##LIBNAME##_VERSION_MAJOR);         \
             print_int("minor",   LIB##LIBNAME##_VERSION_MINOR);         \
             print_int("micro",   LIB##LIBNAME##_VERSION_MICRO);         \
             print_int("version", version);                              \
23564a4a
             print_str("ident",   LIB##LIBNAME##_IDENT);                 \
4552e9b5
             writer_print_section_footer(w);                             \
5226be0d
         }                                                               \
     } while (0)
 
 static void ffprobe_show_library_versions(WriterContext *w)
 {
4552e9b5
     writer_print_section_header(w, SECTION_ID_LIBRARY_VERSIONS);
5226be0d
     SHOW_LIB_VERSION(avutil,     AVUTIL);
     SHOW_LIB_VERSION(avcodec,    AVCODEC);
     SHOW_LIB_VERSION(avformat,   AVFORMAT);
     SHOW_LIB_VERSION(avdevice,   AVDEVICE);
     SHOW_LIB_VERSION(avfilter,   AVFILTER);
     SHOW_LIB_VERSION(swscale,    SWSCALE);
     SHOW_LIB_VERSION(swresample, SWRESAMPLE);
     SHOW_LIB_VERSION(postproc,   POSTPROC);
4552e9b5
     writer_print_section_footer(w);
5226be0d
 }
 
98298eb1
 static int opt_format(void *optctx, const char *opt, const char *arg)
1be784a2
 {
     iformat = av_find_input_format(arg);
     if (!iformat) {
c972f91d
         av_log(NULL, AV_LOG_ERROR, "Unknown input format: %s\n", arg);
eb8bc572
         return AVERROR(EINVAL);
1be784a2
     }
eb8bc572
     return 0;
1be784a2
 }
 
196765a7
 static inline void mark_section_show_entries(SectionID section_id,
                                              int show_all_entries, AVDictionary *entries)
 {
     struct section *section = &sections[section_id];
 
     section->show_all_entries = show_all_entries;
     if (show_all_entries) {
         SectionID *id;
         for (id = section->children_ids; *id != -1; id++)
             mark_section_show_entries(*id, show_all_entries, entries);
     } else {
         av_dict_copy(&section->entries_to_show, entries, 0);
     }
 }
 
 static int match_section(const char *section_name,
                          int show_all_entries, AVDictionary *entries)
 {
     int i, ret = 0;
 
     for (i = 0; i < FF_ARRAY_ELEMS(sections); i++) {
         const struct section *section = &sections[i];
         if (!strcmp(section_name, section->name) ||
             (section->unique_name && !strcmp(section_name, section->unique_name))) {
             av_log(NULL, AV_LOG_DEBUG,
                    "'%s' matches section with unique name '%s'\n", section_name,
                    (char *)av_x_if_null(section->unique_name, section->name));
             ret++;
             mark_section_show_entries(section->id, show_all_entries, entries);
         }
     }
     return ret;
 }
 
 static int opt_show_entries(void *optctx, const char *opt, const char *arg)
 {
     const char *p = arg;
     int ret = 0;
 
     while (*p) {
         AVDictionary *entries = NULL;
         char *section_name = av_get_token(&p, "=:");
         int show_all_entries = 0;
 
         if (!section_name) {
             av_log(NULL, AV_LOG_ERROR,
                    "Missing section name for option '%s'\n", opt);
             return AVERROR(EINVAL);
         }
 
         if (*p == '=') {
             p++;
             while (*p && *p != ':') {
                 char *entry = av_get_token(&p, ",:");
                 if (!entry)
                     break;
                 av_log(NULL, AV_LOG_VERBOSE,
                        "Adding '%s' to the entries to show in section '%s'\n",
                        entry, section_name);
                 av_dict_set(&entries, entry, "", AV_DICT_DONT_STRDUP_KEY);
                 if (*p == ',')
                     p++;
             }
         } else {
             show_all_entries = 1;
         }
 
         ret = match_section(section_name, show_all_entries, entries);
         if (ret == 0) {
             av_log(NULL, AV_LOG_ERROR, "No match for section '%s'\n", section_name);
             ret = AVERROR(EINVAL);
         }
9a7256e8
         av_dict_free(&entries);
196765a7
         av_free(section_name);
 
         if (ret <= 0)
             break;
         if (*p)
             p++;
     }
 
     return ret;
 }
 
98298eb1
 static int opt_show_format_entry(void *optctx, const char *opt, const char *arg)
653d117c
 {
196765a7
     char *buf = av_asprintf("format=%s", arg);
     int ret;
 
     av_log(NULL, AV_LOG_WARNING,
            "Option '%s' is deprecated, use '-show_entries format=%s' instead\n",
            opt, arg);
     ret = opt_show_entries(optctx, opt, buf);
     av_free(buf);
     return ret;
653d117c
 }
 
d2084402
 static void opt_input_file(void *optctx, const char *arg)
336ce917
 {
c8c0ac6b
     if (input_filename) {
c130428a
         av_log(NULL, AV_LOG_ERROR,
                 "Argument '%s' provided as input filename, but '%s' was already specified.\n",
                 arg, input_filename);
f982d006
         exit_program(1);
c8c0ac6b
     }
912dd63e
     if (!strcmp(arg, "-"))
         arg = "pipe:";
     input_filename = arg;
336ce917
 }
 
98298eb1
 static int opt_input_file_i(void *optctx, const char *opt, const char *arg)
 {
     opt_input_file(optctx, arg);
     return 0;
 }
 
aee51039
 void show_help_default(const char *opt, const char *arg)
336ce917
 {
6afd569e
     av_log_set_callback(log_callback_help);
336ce917
     show_usage();
bb3ed3ba
     show_help_options(options, "Main options:", 0, 0, 0);
336ce917
     printf("\n");
f884ef00
 
     show_help_children(avformat_get_class(), AV_OPT_FLAG_DECODING_PARAM);
336ce917
 }
 
f0606a28
 /**
  * Parse interval specification, according to the format:
  * INTERVAL ::= [START|+START_OFFSET][%[END|+END_OFFSET]]
  * INTERVALS ::= INTERVAL[,INTERVALS]
 */
 static int parse_read_interval(const char *interval_spec,
                                ReadInterval *interval)
 {
     int ret = 0;
     char *next, *p, *spec = av_strdup(interval_spec);
     if (!spec)
         return AVERROR(ENOMEM);
 
     if (!*spec) {
         av_log(NULL, AV_LOG_ERROR, "Invalid empty interval specification\n");
         ret = AVERROR(EINVAL);
         goto end;
     }
 
     p = spec;
     next = strchr(spec, '%');
     if (next)
         *next++ = 0;
 
     /* parse first part */
     if (*p) {
         interval->has_start = 1;
 
         if (*p == '+') {
             interval->start_is_offset = 1;
             p++;
         } else {
             interval->start_is_offset = 0;
         }
 
         ret = av_parse_time(&interval->start, p, 1);
         if (ret < 0) {
             av_log(NULL, AV_LOG_ERROR, "Invalid interval start specification '%s'\n", p);
             goto end;
         }
     } else {
         interval->has_start = 0;
     }
 
     /* parse second part */
     p = next;
     if (p && *p) {
         int64_t us;
         interval->has_end = 1;
 
         if (*p == '+') {
             interval->end_is_offset = 1;
             p++;
         } else {
             interval->end_is_offset = 0;
         }
 
         if (interval->end_is_offset && *p == '#') {
             long long int lli;
             char *tail;
             interval->duration_frames = 1;
             p++;
             lli = strtoll(p, &tail, 10);
             if (*tail || lli < 0) {
                 av_log(NULL, AV_LOG_ERROR,
                        "Invalid or negative value '%s' for duration number of frames\n", p);
                 goto end;
             }
             interval->end = lli;
         } else {
             ret = av_parse_time(&us, p, 1);
             if (ret < 0) {
                 av_log(NULL, AV_LOG_ERROR, "Invalid interval end/duration specification '%s'\n", p);
                 goto end;
             }
             interval->end = us;
         }
     } else {
         interval->has_end = 0;
     }
 
 end:
     av_free(spec);
     return ret;
 }
 
 static int parse_read_intervals(const char *intervals_spec)
 {
     int ret, n, i;
     char *p, *spec = av_strdup(intervals_spec);
     if (!spec)
         return AVERROR(ENOMEM);
 
     /* preparse specification, get number of intervals */
     for (n = 0, p = spec; *p; p++)
         if (*p == ',')
             n++;
     n++;
 
f0211f41
     read_intervals = av_malloc_array(n, sizeof(*read_intervals));
f0606a28
     if (!read_intervals) {
         ret = AVERROR(ENOMEM);
         goto end;
     }
     read_intervals_nb = n;
 
     /* parse intervals */
     p = spec;
ddaf33f5
     for (i = 0; p; i++) {
         char *next;
 
         av_assert0(i < read_intervals_nb);
         next = strchr(p, ',');
f0606a28
         if (next)
             *next++ = 0;
 
         read_intervals[i].id = i;
         ret = parse_read_interval(p, &read_intervals[i]);
         if (ret < 0) {
             av_log(NULL, AV_LOG_ERROR, "Error parsing read interval #%d '%s'\n",
                    i, p);
             goto end;
         }
         av_log(NULL, AV_LOG_VERBOSE, "Parsed log interval ");
         log_read_interval(&read_intervals[i], NULL, AV_LOG_VERBOSE);
         p = next;
     }
     av_assert0(i == read_intervals_nb);
 
 end:
     av_free(spec);
     return ret;
 }
 
 static int opt_read_intervals(void *optctx, const char *opt, const char *arg)
 {
     return parse_read_intervals(arg);
 }
 
98298eb1
 static int opt_pretty(void *optctx, const char *opt, const char *arg)
336ce917
 {
     show_value_unit              = 1;
     use_value_prefix             = 1;
     use_byte_value_binary_prefix = 1;
     use_value_sexagesimal_format = 1;
46edd3a0
     return 0;
336ce917
 }
 
c8a5365d
 static void print_section(SectionID id, int level)
 {
     const SectionID *pid;
     const struct section *section = &sections[id];
     printf("%c%c%c",
            section->flags & SECTION_FLAG_IS_WRAPPER           ? 'W' : '.',
            section->flags & SECTION_FLAG_IS_ARRAY             ? 'A' : '.',
            section->flags & SECTION_FLAG_HAS_VARIABLE_FIELDS  ? 'V' : '.');
     printf("%*c  %s", level * 4, ' ', section->name);
     if (section->unique_name)
         printf("/%s", section->unique_name);
     printf("\n");
 
     for (pid = section->children_ids; *pid != -1; pid++)
         print_section(*pid, level+1);
 }
 
 static int opt_sections(void *optctx, const char *opt, const char *arg)
 {
     printf("Sections:\n"
            "W.. = Section is a wrapper (contains other sections, no local entries)\n"
            ".A. = Section contains an array of elements of the same type\n"
            "..V = Section may contain a variable number of fields with variable keys\n"
            "FLAGS NAME/UNIQUE_NAME\n"
            "---\n");
     print_section(SECTION_ID_ROOT, 0);
     return 0;
 }
 
5226be0d
 static int opt_show_versions(const char *opt, const char *arg)
 {
196765a7
     mark_section_show_entries(SECTION_ID_PROGRAM_VERSION, 1, NULL);
     mark_section_show_entries(SECTION_ID_LIBRARY_VERSION, 1, NULL);
5226be0d
     return 0;
 }
 
196765a7
 #define DEFINE_OPT_SHOW_SECTION(section, target_section_id)             \
     static int opt_show_##section(const char *opt, const char *arg)     \
     {                                                                   \
         mark_section_show_entries(SECTION_ID_##target_section_id, 1, NULL); \
         return 0;                                                       \
     }
 
4da54022
 DEFINE_OPT_SHOW_SECTION(chapters,         CHAPTERS);
196765a7
 DEFINE_OPT_SHOW_SECTION(error,            ERROR);
 DEFINE_OPT_SHOW_SECTION(format,           FORMAT);
 DEFINE_OPT_SHOW_SECTION(frames,           FRAMES);
 DEFINE_OPT_SHOW_SECTION(library_versions, LIBRARY_VERSIONS);
 DEFINE_OPT_SHOW_SECTION(packets,          PACKETS);
 DEFINE_OPT_SHOW_SECTION(program_version,  PROGRAM_VERSION);
 DEFINE_OPT_SHOW_SECTION(streams,          STREAMS);
2186a7e5
 DEFINE_OPT_SHOW_SECTION(programs,         PROGRAMS);
196765a7
 
7c26761b
 static const OptionDef real_options[] = {
336ce917
 #include "cmdutils_common_opts.h"
416d2f7a
     { "f", HAS_ARG, {.func_arg = opt_format}, "force format", "format" },
     { "unit", OPT_BOOL, {&show_value_unit}, "show unit of the displayed values" },
     { "prefix", OPT_BOOL, {&use_value_prefix}, "use SI prefixes for the displayed values" },
     { "byte_binary_prefix", OPT_BOOL, {&use_byte_value_binary_prefix},
336ce917
       "use binary prefixes for byte units" },
416d2f7a
     { "sexagesimal", OPT_BOOL,  {&use_value_sexagesimal_format},
336ce917
       "use sexagesimal format HOURS:MM:SS.MICROSECONDS for time units" },
416d2f7a
     { "pretty", 0, {.func_arg = opt_pretty},
336ce917
       "prettify the format of displayed values, make it more human readable" },
1f0d937f
     { "print_format", OPT_STRING | HAS_ARG, {(void*)&print_format},
fd0c83c6
       "set the output printing format (available formats are: default, compact, csv, flat, ini, json, xml)", "format" },
dae85054
     { "of", OPT_STRING | HAS_ARG, {(void*)&print_format}, "alias for -print_format", "format" },
3d189d41
     { "select_streams", OPT_STRING | HAS_ARG, {(void*)&stream_specifier}, "select the specified streams", "stream_specifier" },
c8a5365d
     { "sections", OPT_EXIT, {.func_arg = opt_sections}, "print sections structure and section information, and exit" },
9ae3e455
     { "show_data",    OPT_BOOL, {(void*)&do_show_data}, "show packets data" },
4f3e2f10
     { "show_data_hash", OPT_STRING | HAS_ARG, {(void*)&show_data_hash}, "show packets data hash" },
196765a7
     { "show_error",   0, {(void*)&opt_show_error},  "show probing error" },
     { "show_format",  0, {(void*)&opt_show_format}, "show format/container info" },
     { "show_frames",  0, {(void*)&opt_show_frames}, "show frames info" },
416d2f7a
     { "show_format_entry", HAS_ARG, {.func_arg = opt_show_format_entry},
653d117c
       "show a particular entry from the format/container info", "entry" },
196765a7
     { "show_entries", HAS_ARG, {.func_arg = opt_show_entries},
       "show a set of specified entries", "entry_list" },
     { "show_packets", 0, {(void*)&opt_show_packets}, "show packets info" },
2186a7e5
     { "show_programs", 0, {(void*)&opt_show_programs}, "show programs info" },
196765a7
     { "show_streams", 0, {(void*)&opt_show_streams}, "show streams info" },
4da54022
     { "show_chapters", 0, {(void*)&opt_show_chapters}, "show chapters info" },
29b9aee4
     { "count_frames", OPT_BOOL, {(void*)&do_count_frames}, "count the number of frames per stream" },
     { "count_packets", OPT_BOOL, {(void*)&do_count_packets}, "count the number of packets per stream" },
196765a7
     { "show_program_version",  0, {(void*)&opt_show_program_version},  "show ffprobe version" },
     { "show_library_versions", 0, {(void*)&opt_show_library_versions}, "show library versions" },
5226be0d
     { "show_versions",         0, {(void*)&opt_show_versions}, "show program and library versions" },
f1a4182e
     { "show_private_data", OPT_BOOL, {(void*)&show_private_data}, "show private data" },
     { "private",           OPT_BOOL, {(void*)&show_private_data}, "same as show_private_data" },
4cd1addc
     { "bitexact", OPT_BOOL, {&do_bitexact}, "force bitexact output" },
f0606a28
     { "read_intervals", HAS_ARG, {.func_arg = opt_read_intervals}, "set read intervals", "read_intervals" },
416d2f7a
     { "default", HAS_ARG | OPT_AUDIO | OPT_VIDEO | OPT_EXPERT, {.func_arg = opt_default}, "generic catch all option", "" },
98298eb1
     { "i", HAS_ARG, {.func_arg = opt_input_file_i}, "read specified file", "input_file"},
336ce917
     { NULL, },
 };
 
196765a7
 static inline int check_section_show_entries(int section_id)
 {
     int *id;
     struct section *section = &sections[section_id];
     if (sections[section_id].show_all_entries || sections[section_id].entries_to_show)
         return 1;
     for (id = section->children_ids; *id != -1; id++)
         if (check_section_show_entries(*id))
             return 1;
     return 0;
 }
 
 #define SET_DO_SHOW(id, varname) do {                                   \
         if (check_section_show_entries(SECTION_ID_##id))                \
             do_show_##varname = 1;                                      \
     } while (0)
 
336ce917
 int main(int argc, char **argv)
 {
fa7d1c39
     const Writer *w;
     WriterContext *wctx;
     char *buf;
     char *w_name = NULL, *w_args = NULL;
196765a7
     int ret, i;
6afd569e
 
58e1de72
     av_log_set_flags(AV_LOG_SKIP_REPEATED);
f982d006
     register_exit(ffprobe_cleanup);
032ba74e
 
7c26761b
     options = real_options;
7c1aba4f
     parse_loglevel(argc, argv, options);
336ce917
     av_register_all();
13b7781e
     avformat_network_init();
df1768d0
     init_opts();
6ce98ea4
 #if CONFIG_AVDEVICE
     avdevice_register_all();
 #endif
336ce917
 
452406bd
     show_banner(argc, argv, options);
d2084402
     parse_options(NULL, argc, argv, options, opt_input_file);
336ce917
 
196765a7
     /* mark things to show, based on -show_entries */
4da54022
     SET_DO_SHOW(CHAPTERS, chapters);
196765a7
     SET_DO_SHOW(ERROR, error);
     SET_DO_SHOW(FORMAT, format);
     SET_DO_SHOW(FRAMES, frames);
     SET_DO_SHOW(LIBRARY_VERSIONS, library_versions);
     SET_DO_SHOW(PACKETS, packets);
     SET_DO_SHOW(PROGRAM_VERSION, program_version);
2186a7e5
     SET_DO_SHOW(PROGRAMS, programs);
196765a7
     SET_DO_SHOW(STREAMS, streams);
     SET_DO_SHOW(STREAM_DISPOSITION, stream_disposition);
2186a7e5
     SET_DO_SHOW(PROGRAM_STREAM_DISPOSITION, stream_disposition);
196765a7
 
66a703ea
     SET_DO_SHOW(CHAPTER_TAGS, chapter_tags);
     SET_DO_SHOW(FORMAT_TAGS, format_tags);
     SET_DO_SHOW(FRAME_TAGS, frame_tags);
     SET_DO_SHOW(PROGRAM_TAGS, program_tags);
     SET_DO_SHOW(STREAM_TAGS, stream_tags);
 
4cd1addc
     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;
     }
 
fa7d1c39
     writer_register_all();
 
     if (!print_format)
         print_format = av_strdup("default");
4334ba04
     if (!print_format) {
         ret = AVERROR(ENOMEM);
         goto end;
     }
fa7d1c39
     w_name = av_strtok(print_format, "=", &buf);
     w_args = buf;
 
4f3e2f10
     if (show_data_hash) {
         if ((ret = av_hash_alloc(&hash, show_data_hash)) < 0) {
             if (ret == AVERROR(EINVAL)) {
                 const char *n;
                 av_log(NULL, AV_LOG_ERROR,
                        "Unknown hash algorithm '%s'\nKnown algorithms:",
                        show_data_hash);
                 for (i = 0; (n = av_hash_names(i)); i++)
                     av_log(NULL, AV_LOG_ERROR, " %s", n);
                 av_log(NULL, AV_LOG_ERROR, "\n");
             }
             goto end;
         }
     }
 
fa7d1c39
     w = writer_get_by_name(w_name);
     if (!w) {
         av_log(NULL, AV_LOG_ERROR, "Unknown output format with name '%s'\n", w_name);
         ret = AVERROR(EINVAL);
         goto end;
336ce917
     }
 
4552e9b5
     if ((ret = writer_open(&wctx, w, w_args,
                            sections, FF_ARRAY_ELEMS(sections))) >= 0) {
cbba331a
         if (w == &xml_writer)
             wctx->string_validation_utf8_flags |= AV_UTF8_FLAG_EXCLUDE_XML_INVALID_CONTROL_CODES;
 
4552e9b5
         writer_print_section_header(wctx, SECTION_ID_ROOT);
9ecccd6e
 
5226be0d
         if (do_show_program_version)
             ffprobe_show_program_version(wctx);
         if (do_show_library_versions)
             ffprobe_show_library_versions(wctx);
 
         if (!input_filename &&
2186a7e5
             ((do_show_format || do_show_programs || do_show_streams || do_show_chapters || do_show_packets || do_show_error) ||
5226be0d
              (!do_show_program_version && !do_show_library_versions))) {
fa7d1c39
             show_usage();
             av_log(NULL, AV_LOG_ERROR, "You have to specify one input file.\n");
             av_log(NULL, AV_LOG_ERROR, "Use -h to get full help or, even better, run 'man %s'.\n", program_name);
             ret = AVERROR(EINVAL);
5226be0d
         } else if (input_filename) {
fa7d1c39
             ret = probe_file(wctx, input_filename);
9ecccd6e
             if (ret < 0 && do_show_error)
                 show_error(wctx, ret);
         }
fa7d1c39
 
4552e9b5
         writer_print_section_footer(wctx);
fa7d1c39
         writer_close(&wctx);
     }
6afd569e
 
fa7d1c39
 end:
     av_freep(&print_format);
f0606a28
     av_freep(&read_intervals);
4f3e2f10
     av_hash_freep(&hash);
1cbf7fb4
 
     uninit_opts();
196765a7
     for (i = 0; i < FF_ARRAY_ELEMS(sections); i++)
         av_dict_free(&(sections[i].entries_to_show));
1cbf7fb4
 
13b7781e
     avformat_network_deinit();
 
5c616fe4
     return ret < 0;
336ce917
 }