OSDN Git Service

avcodec/scpr: improve motion vectors checking for out of buffer write
[android-x86/external-ffmpeg.git] / ffprobe.c
1 /*
2  * Copyright (c) 2007-2010 Stefano Sabatini
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20
21 /**
22  * @file
23  * simple media prober based on the FFmpeg libraries
24  */
25
26 #include "config.h"
27 #include "libavutil/ffversion.h"
28
29 #include <string.h>
30
31 #include "libavformat/avformat.h"
32 #include "libavcodec/avcodec.h"
33 #include "libavutil/avassert.h"
34 #include "libavutil/avstring.h"
35 #include "libavutil/bprint.h"
36 #include "libavutil/display.h"
37 #include "libavutil/hash.h"
38 #include "libavutil/opt.h"
39 #include "libavutil/pixdesc.h"
40 #include "libavutil/spherical.h"
41 #include "libavutil/stereo3d.h"
42 #include "libavutil/dict.h"
43 #include "libavutil/intreadwrite.h"
44 #include "libavutil/libm.h"
45 #include "libavutil/parseutils.h"
46 #include "libavutil/timecode.h"
47 #include "libavutil/timestamp.h"
48 #include "libavdevice/avdevice.h"
49 #include "libswscale/swscale.h"
50 #include "libswresample/swresample.h"
51 #include "libpostproc/postprocess.h"
52 #include "cmdutils.h"
53
54 typedef struct InputStream {
55     AVStream *st;
56
57     AVCodecContext *dec_ctx;
58 } InputStream;
59
60 typedef struct InputFile {
61     AVFormatContext *fmt_ctx;
62
63     InputStream *streams;
64     int       nb_streams;
65 } InputFile;
66
67 const char program_name[] = "ffprobe";
68 const int program_birth_year = 2007;
69
70 static int do_bitexact = 0;
71 static int do_count_frames = 0;
72 static int do_count_packets = 0;
73 static int do_read_frames  = 0;
74 static int do_read_packets = 0;
75 static int do_show_chapters = 0;
76 static int do_show_error   = 0;
77 static int do_show_format  = 0;
78 static int do_show_frames  = 0;
79 static int do_show_packets = 0;
80 static int do_show_programs = 0;
81 static int do_show_streams = 0;
82 static int do_show_stream_disposition = 0;
83 static int do_show_data    = 0;
84 static int do_show_program_version  = 0;
85 static int do_show_library_versions = 0;
86 static int do_show_pixel_formats = 0;
87 static int do_show_pixel_format_flags = 0;
88 static int do_show_pixel_format_components = 0;
89
90 static int do_show_chapter_tags = 0;
91 static int do_show_format_tags = 0;
92 static int do_show_frame_tags = 0;
93 static int do_show_program_tags = 0;
94 static int do_show_stream_tags = 0;
95 static int do_show_packet_tags = 0;
96
97 static int show_value_unit              = 0;
98 static int use_value_prefix             = 0;
99 static int use_byte_value_binary_prefix = 0;
100 static int use_value_sexagesimal_format = 0;
101 static int show_private_data            = 1;
102
103 static char *print_format;
104 static char *stream_specifier;
105 static char *show_data_hash;
106
107 typedef struct ReadInterval {
108     int id;             ///< identifier
109     int64_t start, end; ///< start, end in second/AV_TIME_BASE units
110     int has_start, has_end;
111     int start_is_offset, end_is_offset;
112     int duration_frames;
113 } ReadInterval;
114
115 static ReadInterval *read_intervals;
116 static int read_intervals_nb = 0;
117
118 /* section structure definition */
119
120 #define SECTION_MAX_NB_CHILDREN 10
121
122 struct section {
123     int id;             ///< unique id identifying a section
124     const char *name;
125
126 #define SECTION_FLAG_IS_WRAPPER      1 ///< the section only contains other sections, but has no data at its own level
127 #define SECTION_FLAG_IS_ARRAY        2 ///< the section contains an array of elements of the same type
128 #define SECTION_FLAG_HAS_VARIABLE_FIELDS 4 ///< the section may contain a variable number of fields with variable keys.
129                                            ///  For these sections the element_name field is mandatory.
130     int flags;
131     int children_ids[SECTION_MAX_NB_CHILDREN+1]; ///< list of children section IDS, terminated by -1
132     const char *element_name; ///< name of the contained element, if provided
133     const char *unique_name;  ///< unique section name, in case the name is ambiguous
134     AVDictionary *entries_to_show;
135     int show_all_entries;
136 };
137
138 typedef enum {
139     SECTION_ID_NONE = -1,
140     SECTION_ID_CHAPTER,
141     SECTION_ID_CHAPTER_TAGS,
142     SECTION_ID_CHAPTERS,
143     SECTION_ID_ERROR,
144     SECTION_ID_FORMAT,
145     SECTION_ID_FORMAT_TAGS,
146     SECTION_ID_FRAME,
147     SECTION_ID_FRAMES,
148     SECTION_ID_FRAME_TAGS,
149     SECTION_ID_FRAME_SIDE_DATA_LIST,
150     SECTION_ID_FRAME_SIDE_DATA,
151     SECTION_ID_LIBRARY_VERSION,
152     SECTION_ID_LIBRARY_VERSIONS,
153     SECTION_ID_PACKET,
154     SECTION_ID_PACKET_TAGS,
155     SECTION_ID_PACKETS,
156     SECTION_ID_PACKETS_AND_FRAMES,
157     SECTION_ID_PACKET_SIDE_DATA_LIST,
158     SECTION_ID_PACKET_SIDE_DATA,
159     SECTION_ID_PIXEL_FORMAT,
160     SECTION_ID_PIXEL_FORMAT_FLAGS,
161     SECTION_ID_PIXEL_FORMAT_COMPONENT,
162     SECTION_ID_PIXEL_FORMAT_COMPONENTS,
163     SECTION_ID_PIXEL_FORMATS,
164     SECTION_ID_PROGRAM_STREAM_DISPOSITION,
165     SECTION_ID_PROGRAM_STREAM_TAGS,
166     SECTION_ID_PROGRAM,
167     SECTION_ID_PROGRAM_STREAMS,
168     SECTION_ID_PROGRAM_STREAM,
169     SECTION_ID_PROGRAM_TAGS,
170     SECTION_ID_PROGRAM_VERSION,
171     SECTION_ID_PROGRAMS,
172     SECTION_ID_ROOT,
173     SECTION_ID_STREAM,
174     SECTION_ID_STREAM_DISPOSITION,
175     SECTION_ID_STREAMS,
176     SECTION_ID_STREAM_TAGS,
177     SECTION_ID_STREAM_SIDE_DATA_LIST,
178     SECTION_ID_STREAM_SIDE_DATA,
179     SECTION_ID_SUBTITLE,
180 } SectionID;
181
182 static struct section sections[] = {
183     [SECTION_ID_CHAPTERS] =           { SECTION_ID_CHAPTERS, "chapters", SECTION_FLAG_IS_ARRAY, { SECTION_ID_CHAPTER, -1 } },
184     [SECTION_ID_CHAPTER] =            { SECTION_ID_CHAPTER, "chapter", 0, { SECTION_ID_CHAPTER_TAGS, -1 } },
185     [SECTION_ID_CHAPTER_TAGS] =       { SECTION_ID_CHAPTER_TAGS, "tags", SECTION_FLAG_HAS_VARIABLE_FIELDS, { -1 }, .element_name = "tag", .unique_name = "chapter_tags" },
186     [SECTION_ID_ERROR] =              { SECTION_ID_ERROR, "error", 0, { -1 } },
187     [SECTION_ID_FORMAT] =             { SECTION_ID_FORMAT, "format", 0, { SECTION_ID_FORMAT_TAGS, -1 } },
188     [SECTION_ID_FORMAT_TAGS] =        { SECTION_ID_FORMAT_TAGS, "tags", SECTION_FLAG_HAS_VARIABLE_FIELDS, { -1 }, .element_name = "tag", .unique_name = "format_tags" },
189     [SECTION_ID_FRAMES] =             { SECTION_ID_FRAMES, "frames", SECTION_FLAG_IS_ARRAY, { SECTION_ID_FRAME, SECTION_ID_SUBTITLE, -1 } },
190     [SECTION_ID_FRAME] =              { SECTION_ID_FRAME, "frame", 0, { SECTION_ID_FRAME_TAGS, SECTION_ID_FRAME_SIDE_DATA_LIST, -1 } },
191     [SECTION_ID_FRAME_TAGS] =         { SECTION_ID_FRAME_TAGS, "tags", SECTION_FLAG_HAS_VARIABLE_FIELDS, { -1 }, .element_name = "tag", .unique_name = "frame_tags" },
192     [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 }, .element_name = "side_data", .unique_name = "frame_side_data_list" },
193     [SECTION_ID_FRAME_SIDE_DATA] =     { SECTION_ID_FRAME_SIDE_DATA, "side_data", 0, { -1 } },
194     [SECTION_ID_LIBRARY_VERSIONS] =   { SECTION_ID_LIBRARY_VERSIONS, "library_versions", SECTION_FLAG_IS_ARRAY, { SECTION_ID_LIBRARY_VERSION, -1 } },
195     [SECTION_ID_LIBRARY_VERSION] =    { SECTION_ID_LIBRARY_VERSION, "library_version", 0, { -1 } },
196     [SECTION_ID_PACKETS] =            { SECTION_ID_PACKETS, "packets", SECTION_FLAG_IS_ARRAY, { SECTION_ID_PACKET, -1} },
197     [SECTION_ID_PACKETS_AND_FRAMES] = { SECTION_ID_PACKETS_AND_FRAMES, "packets_and_frames", SECTION_FLAG_IS_ARRAY, { SECTION_ID_PACKET, -1} },
198     [SECTION_ID_PACKET] =             { SECTION_ID_PACKET, "packet", 0, { SECTION_ID_PACKET_TAGS, SECTION_ID_PACKET_SIDE_DATA_LIST, -1 } },
199     [SECTION_ID_PACKET_TAGS] =        { SECTION_ID_PACKET_TAGS, "tags", SECTION_FLAG_HAS_VARIABLE_FIELDS, { -1 }, .element_name = "tag", .unique_name = "packet_tags" },
200     [SECTION_ID_PACKET_SIDE_DATA_LIST] ={ SECTION_ID_PACKET_SIDE_DATA_LIST, "side_data_list", SECTION_FLAG_IS_ARRAY, { SECTION_ID_PACKET_SIDE_DATA, -1 }, .element_name = "side_data", .unique_name = "packet_side_data_list" },
201     [SECTION_ID_PACKET_SIDE_DATA] =     { SECTION_ID_PACKET_SIDE_DATA, "side_data", 0, { -1 } },
202     [SECTION_ID_PIXEL_FORMATS] =      { SECTION_ID_PIXEL_FORMATS, "pixel_formats", SECTION_FLAG_IS_ARRAY, { SECTION_ID_PIXEL_FORMAT, -1 } },
203     [SECTION_ID_PIXEL_FORMAT] =       { SECTION_ID_PIXEL_FORMAT, "pixel_format", 0, { SECTION_ID_PIXEL_FORMAT_FLAGS, SECTION_ID_PIXEL_FORMAT_COMPONENTS, -1 } },
204     [SECTION_ID_PIXEL_FORMAT_FLAGS] = { SECTION_ID_PIXEL_FORMAT_FLAGS, "flags", 0, { -1 }, .unique_name = "pixel_format_flags" },
205     [SECTION_ID_PIXEL_FORMAT_COMPONENTS] = { SECTION_ID_PIXEL_FORMAT_COMPONENTS, "components", SECTION_FLAG_IS_ARRAY, {SECTION_ID_PIXEL_FORMAT_COMPONENT, -1 }, .unique_name = "pixel_format_components" },
206     [SECTION_ID_PIXEL_FORMAT_COMPONENT]  = { SECTION_ID_PIXEL_FORMAT_COMPONENT, "component", 0, { -1 } },
207     [SECTION_ID_PROGRAM_STREAM_DISPOSITION] = { SECTION_ID_PROGRAM_STREAM_DISPOSITION, "disposition", 0, { -1 }, .unique_name = "program_stream_disposition" },
208     [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" },
209     [SECTION_ID_PROGRAM] =                    { SECTION_ID_PROGRAM, "program", 0, { SECTION_ID_PROGRAM_TAGS, SECTION_ID_PROGRAM_STREAMS, -1 } },
210     [SECTION_ID_PROGRAM_STREAMS] =            { SECTION_ID_PROGRAM_STREAMS, "streams", SECTION_FLAG_IS_ARRAY, { SECTION_ID_PROGRAM_STREAM, -1 }, .unique_name = "program_streams" },
211     [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" },
212     [SECTION_ID_PROGRAM_TAGS] =               { SECTION_ID_PROGRAM_TAGS, "tags", SECTION_FLAG_HAS_VARIABLE_FIELDS, { -1 }, .element_name = "tag", .unique_name = "program_tags" },
213     [SECTION_ID_PROGRAM_VERSION] =    { SECTION_ID_PROGRAM_VERSION, "program_version", 0, { -1 } },
214     [SECTION_ID_PROGRAMS] =                   { SECTION_ID_PROGRAMS, "programs", SECTION_FLAG_IS_ARRAY, { SECTION_ID_PROGRAM, -1 } },
215     [SECTION_ID_ROOT] =               { SECTION_ID_ROOT, "root", SECTION_FLAG_IS_WRAPPER,
216                                         { SECTION_ID_CHAPTERS, SECTION_ID_FORMAT, SECTION_ID_FRAMES, SECTION_ID_PROGRAMS, SECTION_ID_STREAMS,
217                                           SECTION_ID_PACKETS, SECTION_ID_ERROR, SECTION_ID_PROGRAM_VERSION, SECTION_ID_LIBRARY_VERSIONS,
218                                           SECTION_ID_PIXEL_FORMATS, -1} },
219     [SECTION_ID_STREAMS] =            { SECTION_ID_STREAMS, "streams", SECTION_FLAG_IS_ARRAY, { SECTION_ID_STREAM, -1 } },
220     [SECTION_ID_STREAM] =             { SECTION_ID_STREAM, "stream", 0, { SECTION_ID_STREAM_DISPOSITION, SECTION_ID_STREAM_TAGS, SECTION_ID_STREAM_SIDE_DATA_LIST, -1 } },
221     [SECTION_ID_STREAM_DISPOSITION] = { SECTION_ID_STREAM_DISPOSITION, "disposition", 0, { -1 }, .unique_name = "stream_disposition" },
222     [SECTION_ID_STREAM_TAGS] =        { SECTION_ID_STREAM_TAGS, "tags", SECTION_FLAG_HAS_VARIABLE_FIELDS, { -1 }, .element_name = "tag", .unique_name = "stream_tags" },
223     [SECTION_ID_STREAM_SIDE_DATA_LIST] ={ SECTION_ID_STREAM_SIDE_DATA_LIST, "side_data_list", SECTION_FLAG_IS_ARRAY, { SECTION_ID_STREAM_SIDE_DATA, -1 }, .element_name = "side_data", .unique_name = "stream_side_data_list" },
224     [SECTION_ID_STREAM_SIDE_DATA] =     { SECTION_ID_STREAM_SIDE_DATA, "side_data", 0, { -1 } },
225     [SECTION_ID_SUBTITLE] =           { SECTION_ID_SUBTITLE, "subtitle", 0, { -1 } },
226 };
227
228 static const OptionDef *options;
229
230 /* FFprobe context */
231 static const char *input_filename;
232 static AVInputFormat *iformat = NULL;
233
234 static struct AVHashContext *hash;
235
236 static const struct {
237     double bin_val;
238     double dec_val;
239     const char *bin_str;
240     const char *dec_str;
241 } si_prefixes[] = {
242     { 1.0, 1.0, "", "" },
243     { 1.024e3, 1e3, "Ki", "K" },
244     { 1.048576e6, 1e6, "Mi", "M" },
245     { 1.073741824e9, 1e9, "Gi", "G" },
246     { 1.099511627776e12, 1e12, "Ti", "T" },
247     { 1.125899906842624e15, 1e15, "Pi", "P" },
248 };
249
250 static const char unit_second_str[]         = "s"    ;
251 static const char unit_hertz_str[]          = "Hz"   ;
252 static const char unit_byte_str[]           = "byte" ;
253 static const char unit_bit_per_second_str[] = "bit/s";
254
255 static int nb_streams;
256 static uint64_t *nb_streams_packets;
257 static uint64_t *nb_streams_frames;
258 static int *selected_streams;
259
260 static void ffprobe_cleanup(int ret)
261 {
262     int i;
263     for (i = 0; i < FF_ARRAY_ELEMS(sections); i++)
264         av_dict_free(&(sections[i].entries_to_show));
265 }
266
267 struct unit_value {
268     union { double d; long long int i; } val;
269     const char *unit;
270 };
271
272 static char *value_string(char *buf, int buf_size, struct unit_value uv)
273 {
274     double vald;
275     long long int vali;
276     int show_float = 0;
277
278     if (uv.unit == unit_second_str) {
279         vald = uv.val.d;
280         show_float = 1;
281     } else {
282         vald = vali = uv.val.i;
283     }
284
285     if (uv.unit == unit_second_str && use_value_sexagesimal_format) {
286         double secs;
287         int hours, mins;
288         secs  = vald;
289         mins  = (int)secs / 60;
290         secs  = secs - mins * 60;
291         hours = mins / 60;
292         mins %= 60;
293         snprintf(buf, buf_size, "%d:%02d:%09.6f", hours, mins, secs);
294     } else {
295         const char *prefix_string = "";
296
297         if (use_value_prefix && vald > 1) {
298             long long int index;
299
300             if (uv.unit == unit_byte_str && use_byte_value_binary_prefix) {
301                 index = (long long int) (log2(vald)) / 10;
302                 index = av_clip(index, 0, FF_ARRAY_ELEMS(si_prefixes) - 1);
303                 vald /= si_prefixes[index].bin_val;
304                 prefix_string = si_prefixes[index].bin_str;
305             } else {
306                 index = (long long int) (log10(vald)) / 3;
307                 index = av_clip(index, 0, FF_ARRAY_ELEMS(si_prefixes) - 1);
308                 vald /= si_prefixes[index].dec_val;
309                 prefix_string = si_prefixes[index].dec_str;
310             }
311             vali = vald;
312         }
313
314         if (show_float || (use_value_prefix && vald != (long long int)vald))
315             snprintf(buf, buf_size, "%f", vald);
316         else
317             snprintf(buf, buf_size, "%lld", vali);
318         av_strlcatf(buf, buf_size, "%s%s%s", *prefix_string || show_value_unit ? " " : "",
319                  prefix_string, show_value_unit ? uv.unit : "");
320     }
321
322     return buf;
323 }
324
325 /* WRITERS API */
326
327 typedef struct WriterContext WriterContext;
328
329 #define WRITER_FLAG_DISPLAY_OPTIONAL_FIELDS 1
330 #define WRITER_FLAG_PUT_PACKETS_AND_FRAMES_IN_SAME_CHAPTER 2
331
332 typedef enum {
333     WRITER_STRING_VALIDATION_FAIL,
334     WRITER_STRING_VALIDATION_REPLACE,
335     WRITER_STRING_VALIDATION_IGNORE,
336     WRITER_STRING_VALIDATION_NB
337 } StringValidation;
338
339 typedef struct Writer {
340     const AVClass *priv_class;      ///< private class of the writer, if any
341     int priv_size;                  ///< private size for the writer context
342     const char *name;
343
344     int  (*init)  (WriterContext *wctx);
345     void (*uninit)(WriterContext *wctx);
346
347     void (*print_section_header)(WriterContext *wctx);
348     void (*print_section_footer)(WriterContext *wctx);
349     void (*print_integer)       (WriterContext *wctx, const char *, long long int);
350     void (*print_rational)      (WriterContext *wctx, AVRational *q, char *sep);
351     void (*print_string)        (WriterContext *wctx, const char *, const char *);
352     int flags;                  ///< a combination or WRITER_FLAG_*
353 } Writer;
354
355 #define SECTION_MAX_NB_LEVELS 10
356
357 struct WriterContext {
358     const AVClass *class;           ///< class of the writer
359     const Writer *writer;           ///< the Writer of which this is an instance
360     char *name;                     ///< name of this writer instance
361     void *priv;                     ///< private data for use by the filter
362
363     const struct section *sections; ///< array containing all sections
364     int nb_sections;                ///< number of sections
365
366     int level;                      ///< current level, starting from 0
367
368     /** number of the item printed in the given section, starting from 0 */
369     unsigned int nb_item[SECTION_MAX_NB_LEVELS];
370
371     /** section per each level */
372     const struct section *section[SECTION_MAX_NB_LEVELS];
373     AVBPrint section_pbuf[SECTION_MAX_NB_LEVELS]; ///< generic print buffer dedicated to each section,
374                                                   ///  used by various writers
375
376     unsigned int nb_section_packet; ///< number of the packet section in case we are in "packets_and_frames" section
377     unsigned int nb_section_frame;  ///< number of the frame  section in case we are in "packets_and_frames" section
378     unsigned int nb_section_packet_frame; ///< nb_section_packet or nb_section_frame according if is_packets_and_frames
379
380     int string_validation;
381     char *string_validation_replacement;
382     unsigned int string_validation_utf8_flags;
383 };
384
385 static const char *writer_get_name(void *p)
386 {
387     WriterContext *wctx = p;
388     return wctx->writer->name;
389 }
390
391 #define OFFSET(x) offsetof(WriterContext, x)
392
393 static const AVOption writer_options[] = {
394     { "string_validation", "set string validation mode",
395       OFFSET(string_validation), AV_OPT_TYPE_INT, {.i64=WRITER_STRING_VALIDATION_REPLACE}, 0, WRITER_STRING_VALIDATION_NB-1, .unit = "sv" },
396     { "sv", "set string validation mode",
397       OFFSET(string_validation), AV_OPT_TYPE_INT, {.i64=WRITER_STRING_VALIDATION_REPLACE}, 0, WRITER_STRING_VALIDATION_NB-1, .unit = "sv" },
398     { "ignore",  NULL, 0, AV_OPT_TYPE_CONST, {.i64 = WRITER_STRING_VALIDATION_IGNORE},  .unit = "sv" },
399     { "replace", NULL, 0, AV_OPT_TYPE_CONST, {.i64 = WRITER_STRING_VALIDATION_REPLACE}, .unit = "sv" },
400     { "fail",    NULL, 0, AV_OPT_TYPE_CONST, {.i64 = WRITER_STRING_VALIDATION_FAIL},    .unit = "sv" },
401     { "string_validation_replacement", "set string validation replacement string", OFFSET(string_validation_replacement), AV_OPT_TYPE_STRING, {.str=""}},
402     { "svr", "set string validation replacement string", OFFSET(string_validation_replacement), AV_OPT_TYPE_STRING, {.str="\xEF\xBF\xBD"}},
403     { NULL }
404 };
405
406 static void *writer_child_next(void *obj, void *prev)
407 {
408     WriterContext *ctx = obj;
409     if (!prev && ctx->writer && ctx->writer->priv_class && ctx->priv)
410         return ctx->priv;
411     return NULL;
412 }
413
414 static const AVClass writer_class = {
415     .class_name = "Writer",
416     .item_name  = writer_get_name,
417     .option     = writer_options,
418     .version    = LIBAVUTIL_VERSION_INT,
419     .child_next = writer_child_next,
420 };
421
422 static void writer_close(WriterContext **wctx)
423 {
424     int i;
425
426     if (!*wctx)
427         return;
428
429     if ((*wctx)->writer->uninit)
430         (*wctx)->writer->uninit(*wctx);
431     for (i = 0; i < SECTION_MAX_NB_LEVELS; i++)
432         av_bprint_finalize(&(*wctx)->section_pbuf[i], NULL);
433     if ((*wctx)->writer->priv_class)
434         av_opt_free((*wctx)->priv);
435     av_freep(&((*wctx)->priv));
436     av_opt_free(*wctx);
437     av_freep(wctx);
438 }
439
440 static void bprint_bytes(AVBPrint *bp, const uint8_t *ubuf, size_t ubuf_size)
441 {
442     int i;
443     av_bprintf(bp, "0X");
444     for (i = 0; i < ubuf_size; i++)
445         av_bprintf(bp, "%02X", ubuf[i]);
446 }
447
448
449 static int writer_open(WriterContext **wctx, const Writer *writer, const char *args,
450                        const struct section *sections, int nb_sections)
451 {
452     int i, ret = 0;
453
454     if (!(*wctx = av_mallocz(sizeof(WriterContext)))) {
455         ret = AVERROR(ENOMEM);
456         goto fail;
457     }
458
459     if (!((*wctx)->priv = av_mallocz(writer->priv_size))) {
460         ret = AVERROR(ENOMEM);
461         goto fail;
462     }
463
464     (*wctx)->class = &writer_class;
465     (*wctx)->writer = writer;
466     (*wctx)->level = -1;
467     (*wctx)->sections = sections;
468     (*wctx)->nb_sections = nb_sections;
469
470     av_opt_set_defaults(*wctx);
471
472     if (writer->priv_class) {
473         void *priv_ctx = (*wctx)->priv;
474         *((const AVClass **)priv_ctx) = writer->priv_class;
475         av_opt_set_defaults(priv_ctx);
476     }
477
478     /* convert options to dictionary */
479     if (args) {
480         AVDictionary *opts = NULL;
481         AVDictionaryEntry *opt = NULL;
482
483         if ((ret = av_dict_parse_string(&opts, args, "=", ":", 0)) < 0) {
484             av_log(*wctx, AV_LOG_ERROR, "Failed to parse option string '%s' provided to writer context\n", args);
485             av_dict_free(&opts);
486             goto fail;
487         }
488
489         while ((opt = av_dict_get(opts, "", opt, AV_DICT_IGNORE_SUFFIX))) {
490             if ((ret = av_opt_set(*wctx, opt->key, opt->value, AV_OPT_SEARCH_CHILDREN)) < 0) {
491                 av_log(*wctx, AV_LOG_ERROR, "Failed to set option '%s' with value '%s' provided to writer context\n",
492                        opt->key, opt->value);
493                 av_dict_free(&opts);
494                 goto fail;
495             }
496         }
497
498         av_dict_free(&opts);
499     }
500
501     /* validate replace string */
502     {
503         const uint8_t *p = (*wctx)->string_validation_replacement;
504         const uint8_t *endp = p + strlen(p);
505         while (*p) {
506             const uint8_t *p0 = p;
507             int32_t code;
508             ret = av_utf8_decode(&code, &p, endp, (*wctx)->string_validation_utf8_flags);
509             if (ret < 0) {
510                 AVBPrint bp;
511                 av_bprint_init(&bp, 0, AV_BPRINT_SIZE_AUTOMATIC);
512                 bprint_bytes(&bp, p0, p-p0),
513                     av_log(wctx, AV_LOG_ERROR,
514                            "Invalid UTF8 sequence %s found in string validation replace '%s'\n",
515                            bp.str, (*wctx)->string_validation_replacement);
516                 return ret;
517             }
518         }
519     }
520
521     for (i = 0; i < SECTION_MAX_NB_LEVELS; i++)
522         av_bprint_init(&(*wctx)->section_pbuf[i], 1, AV_BPRINT_SIZE_UNLIMITED);
523
524     if ((*wctx)->writer->init)
525         ret = (*wctx)->writer->init(*wctx);
526     if (ret < 0)
527         goto fail;
528
529     return 0;
530
531 fail:
532     writer_close(wctx);
533     return ret;
534 }
535
536 static inline void writer_print_section_header(WriterContext *wctx,
537                                                int section_id)
538 {
539     int parent_section_id;
540     wctx->level++;
541     av_assert0(wctx->level < SECTION_MAX_NB_LEVELS);
542     parent_section_id = wctx->level ?
543         (wctx->section[wctx->level-1])->id : SECTION_ID_NONE;
544
545     wctx->nb_item[wctx->level] = 0;
546     wctx->section[wctx->level] = &wctx->sections[section_id];
547
548     if (section_id == SECTION_ID_PACKETS_AND_FRAMES) {
549         wctx->nb_section_packet = wctx->nb_section_frame =
550         wctx->nb_section_packet_frame = 0;
551     } else if (parent_section_id == SECTION_ID_PACKETS_AND_FRAMES) {
552         wctx->nb_section_packet_frame = section_id == SECTION_ID_PACKET ?
553             wctx->nb_section_packet : wctx->nb_section_frame;
554     }
555
556     if (wctx->writer->print_section_header)
557         wctx->writer->print_section_header(wctx);
558 }
559
560 static inline void writer_print_section_footer(WriterContext *wctx)
561 {
562     int section_id = wctx->section[wctx->level]->id;
563     int parent_section_id = wctx->level ?
564         wctx->section[wctx->level-1]->id : SECTION_ID_NONE;
565
566     if (parent_section_id != SECTION_ID_NONE)
567         wctx->nb_item[wctx->level-1]++;
568     if (parent_section_id == SECTION_ID_PACKETS_AND_FRAMES) {
569         if (section_id == SECTION_ID_PACKET) wctx->nb_section_packet++;
570         else                                     wctx->nb_section_frame++;
571     }
572     if (wctx->writer->print_section_footer)
573         wctx->writer->print_section_footer(wctx);
574     wctx->level--;
575 }
576
577 static inline void writer_print_integer(WriterContext *wctx,
578                                         const char *key, long long int val)
579 {
580     const struct section *section = wctx->section[wctx->level];
581
582     if (section->show_all_entries || av_dict_get(section->entries_to_show, key, NULL, 0)) {
583         wctx->writer->print_integer(wctx, key, val);
584         wctx->nb_item[wctx->level]++;
585     }
586 }
587
588 static inline int validate_string(WriterContext *wctx, char **dstp, const char *src)
589 {
590     const uint8_t *p, *endp;
591     AVBPrint dstbuf;
592     int invalid_chars_nb = 0, ret = 0;
593
594     av_bprint_init(&dstbuf, 0, AV_BPRINT_SIZE_UNLIMITED);
595
596     endp = src + strlen(src);
597     for (p = (uint8_t *)src; *p;) {
598         uint32_t code;
599         int invalid = 0;
600         const uint8_t *p0 = p;
601
602         if (av_utf8_decode(&code, &p, endp, wctx->string_validation_utf8_flags) < 0) {
603             AVBPrint bp;
604             av_bprint_init(&bp, 0, AV_BPRINT_SIZE_AUTOMATIC);
605             bprint_bytes(&bp, p0, p-p0);
606             av_log(wctx, AV_LOG_DEBUG,
607                    "Invalid UTF-8 sequence %s found in string '%s'\n", bp.str, src);
608             invalid = 1;
609         }
610
611         if (invalid) {
612             invalid_chars_nb++;
613
614             switch (wctx->string_validation) {
615             case WRITER_STRING_VALIDATION_FAIL:
616                 av_log(wctx, AV_LOG_ERROR,
617                        "Invalid UTF-8 sequence found in string '%s'\n", src);
618                 ret = AVERROR_INVALIDDATA;
619                 goto end;
620                 break;
621
622             case WRITER_STRING_VALIDATION_REPLACE:
623                 av_bprintf(&dstbuf, "%s", wctx->string_validation_replacement);
624                 break;
625             }
626         }
627
628         if (!invalid || wctx->string_validation == WRITER_STRING_VALIDATION_IGNORE)
629             av_bprint_append_data(&dstbuf, p0, p-p0);
630     }
631
632     if (invalid_chars_nb && wctx->string_validation == WRITER_STRING_VALIDATION_REPLACE) {
633         av_log(wctx, AV_LOG_WARNING,
634                "%d invalid UTF-8 sequence(s) found in string '%s', replaced with '%s'\n",
635                invalid_chars_nb, src, wctx->string_validation_replacement);
636     }
637
638 end:
639     av_bprint_finalize(&dstbuf, dstp);
640     return ret;
641 }
642
643 #define PRINT_STRING_OPT      1
644 #define PRINT_STRING_VALIDATE 2
645
646 static inline int writer_print_string(WriterContext *wctx,
647                                       const char *key, const char *val, int flags)
648 {
649     const struct section *section = wctx->section[wctx->level];
650     int ret = 0;
651
652     if ((flags & PRINT_STRING_OPT)
653         && !(wctx->writer->flags & WRITER_FLAG_DISPLAY_OPTIONAL_FIELDS))
654         return 0;
655
656     if (section->show_all_entries || av_dict_get(section->entries_to_show, key, NULL, 0)) {
657         if (flags & PRINT_STRING_VALIDATE) {
658             char *key1 = NULL, *val1 = NULL;
659             ret = validate_string(wctx, &key1, key);
660             if (ret < 0) goto end;
661             ret = validate_string(wctx, &val1, val);
662             if (ret < 0) goto end;
663             wctx->writer->print_string(wctx, key1, val1);
664         end:
665             if (ret < 0) {
666                 av_log(wctx, AV_LOG_ERROR,
667                        "Invalid key=value string combination %s=%s in section %s\n",
668                        key, val, section->unique_name);
669             }
670             av_free(key1);
671             av_free(val1);
672         } else {
673             wctx->writer->print_string(wctx, key, val);
674         }
675
676         wctx->nb_item[wctx->level]++;
677     }
678
679     return ret;
680 }
681
682 static inline void writer_print_rational(WriterContext *wctx,
683                                          const char *key, AVRational q, char sep)
684 {
685     AVBPrint buf;
686     av_bprint_init(&buf, 0, AV_BPRINT_SIZE_AUTOMATIC);
687     av_bprintf(&buf, "%d%c%d", q.num, sep, q.den);
688     writer_print_string(wctx, key, buf.str, 0);
689 }
690
691 static void writer_print_time(WriterContext *wctx, const char *key,
692                               int64_t ts, const AVRational *time_base, int is_duration)
693 {
694     char buf[128];
695
696     if ((!is_duration && ts == AV_NOPTS_VALUE) || (is_duration && ts == 0)) {
697         writer_print_string(wctx, key, "N/A", PRINT_STRING_OPT);
698     } else {
699         double d = ts * av_q2d(*time_base);
700         struct unit_value uv;
701         uv.val.d = d;
702         uv.unit = unit_second_str;
703         value_string(buf, sizeof(buf), uv);
704         writer_print_string(wctx, key, buf, 0);
705     }
706 }
707
708 static void writer_print_ts(WriterContext *wctx, const char *key, int64_t ts, int is_duration)
709 {
710     if ((!is_duration && ts == AV_NOPTS_VALUE) || (is_duration && ts == 0)) {
711         writer_print_string(wctx, key, "N/A", PRINT_STRING_OPT);
712     } else {
713         writer_print_integer(wctx, key, ts);
714     }
715 }
716
717 static void writer_print_data(WriterContext *wctx, const char *name,
718                               uint8_t *data, int size)
719 {
720     AVBPrint bp;
721     int offset = 0, l, i;
722
723     av_bprint_init(&bp, 0, AV_BPRINT_SIZE_UNLIMITED);
724     av_bprintf(&bp, "\n");
725     while (size) {
726         av_bprintf(&bp, "%08x: ", offset);
727         l = FFMIN(size, 16);
728         for (i = 0; i < l; i++) {
729             av_bprintf(&bp, "%02x", data[i]);
730             if (i & 1)
731                 av_bprintf(&bp, " ");
732         }
733         av_bprint_chars(&bp, ' ', 41 - 2 * i - i / 2);
734         for (i = 0; i < l; i++)
735             av_bprint_chars(&bp, data[i] - 32U < 95 ? data[i] : '.', 1);
736         av_bprintf(&bp, "\n");
737         offset += l;
738         data   += l;
739         size   -= l;
740     }
741     writer_print_string(wctx, name, bp.str, 0);
742     av_bprint_finalize(&bp, NULL);
743 }
744
745 static void writer_print_data_hash(WriterContext *wctx, const char *name,
746                                    uint8_t *data, int size)
747 {
748     char *p, buf[AV_HASH_MAX_SIZE * 2 + 64] = { 0 };
749
750     if (!hash)
751         return;
752     av_hash_init(hash);
753     av_hash_update(hash, data, size);
754     snprintf(buf, sizeof(buf), "%s:", av_hash_get_name(hash));
755     p = buf + strlen(buf);
756     av_hash_final_hex(hash, p, buf + sizeof(buf) - p);
757     writer_print_string(wctx, name, buf, 0);
758 }
759
760 static void writer_print_integers(WriterContext *wctx, const char *name,
761                                   uint8_t *data, int size, const char *format,
762                                   int columns, int bytes, int offset_add)
763 {
764     AVBPrint bp;
765     int offset = 0, l, i;
766
767     av_bprint_init(&bp, 0, AV_BPRINT_SIZE_UNLIMITED);
768     av_bprintf(&bp, "\n");
769     while (size) {
770         av_bprintf(&bp, "%08x: ", offset);
771         l = FFMIN(size, columns);
772         for (i = 0; i < l; i++) {
773             if      (bytes == 1) av_bprintf(&bp, format, *data);
774             else if (bytes == 2) av_bprintf(&bp, format, AV_RN16(data));
775             else if (bytes == 4) av_bprintf(&bp, format, AV_RN32(data));
776             data += bytes;
777             size --;
778         }
779         av_bprintf(&bp, "\n");
780         offset += offset_add;
781     }
782     writer_print_string(wctx, name, bp.str, 0);
783     av_bprint_finalize(&bp, NULL);
784 }
785
786 #define MAX_REGISTERED_WRITERS_NB 64
787
788 static const Writer *registered_writers[MAX_REGISTERED_WRITERS_NB + 1];
789
790 static int writer_register(const Writer *writer)
791 {
792     static int next_registered_writer_idx = 0;
793
794     if (next_registered_writer_idx == MAX_REGISTERED_WRITERS_NB)
795         return AVERROR(ENOMEM);
796
797     registered_writers[next_registered_writer_idx++] = writer;
798     return 0;
799 }
800
801 static const Writer *writer_get_by_name(const char *name)
802 {
803     int i;
804
805     for (i = 0; registered_writers[i]; i++)
806         if (!strcmp(registered_writers[i]->name, name))
807             return registered_writers[i];
808
809     return NULL;
810 }
811
812
813 /* WRITERS */
814
815 #define DEFINE_WRITER_CLASS(name)                   \
816 static const char *name##_get_name(void *ctx)       \
817 {                                                   \
818     return #name ;                                  \
819 }                                                   \
820 static const AVClass name##_class = {               \
821     .class_name = #name,                            \
822     .item_name  = name##_get_name,                  \
823     .option     = name##_options                    \
824 }
825
826 /* Default output */
827
828 typedef struct DefaultContext {
829     const AVClass *class;
830     int nokey;
831     int noprint_wrappers;
832     int nested_section[SECTION_MAX_NB_LEVELS];
833 } DefaultContext;
834
835 #undef OFFSET
836 #define OFFSET(x) offsetof(DefaultContext, x)
837
838 static const AVOption default_options[] = {
839     { "noprint_wrappers", "do not print headers and footers", OFFSET(noprint_wrappers), AV_OPT_TYPE_BOOL, {.i64=0}, 0, 1 },
840     { "nw",               "do not print headers and footers", OFFSET(noprint_wrappers), AV_OPT_TYPE_BOOL, {.i64=0}, 0, 1 },
841     { "nokey",          "force no key printing",     OFFSET(nokey),          AV_OPT_TYPE_BOOL, {.i64=0}, 0, 1 },
842     { "nk",             "force no key printing",     OFFSET(nokey),          AV_OPT_TYPE_BOOL, {.i64=0}, 0, 1 },
843     {NULL},
844 };
845
846 DEFINE_WRITER_CLASS(default);
847
848 /* lame uppercasing routine, assumes the string is lower case ASCII */
849 static inline char *upcase_string(char *dst, size_t dst_size, const char *src)
850 {
851     int i;
852     for (i = 0; src[i] && i < dst_size-1; i++)
853         dst[i] = av_toupper(src[i]);
854     dst[i] = 0;
855     return dst;
856 }
857
858 static void default_print_section_header(WriterContext *wctx)
859 {
860     DefaultContext *def = wctx->priv;
861     char buf[32];
862     const struct section *section = wctx->section[wctx->level];
863     const struct section *parent_section = wctx->level ?
864         wctx->section[wctx->level-1] : NULL;
865
866     av_bprint_clear(&wctx->section_pbuf[wctx->level]);
867     if (parent_section &&
868         !(parent_section->flags & (SECTION_FLAG_IS_WRAPPER|SECTION_FLAG_IS_ARRAY))) {
869         def->nested_section[wctx->level] = 1;
870         av_bprintf(&wctx->section_pbuf[wctx->level], "%s%s:",
871                    wctx->section_pbuf[wctx->level-1].str,
872                    upcase_string(buf, sizeof(buf),
873                                  av_x_if_null(section->element_name, section->name)));
874     }
875
876     if (def->noprint_wrappers || def->nested_section[wctx->level])
877         return;
878
879     if (!(section->flags & (SECTION_FLAG_IS_WRAPPER|SECTION_FLAG_IS_ARRAY)))
880         printf("[%s]\n", upcase_string(buf, sizeof(buf), section->name));
881 }
882
883 static void default_print_section_footer(WriterContext *wctx)
884 {
885     DefaultContext *def = wctx->priv;
886     const struct section *section = wctx->section[wctx->level];
887     char buf[32];
888
889     if (def->noprint_wrappers || def->nested_section[wctx->level])
890         return;
891
892     if (!(section->flags & (SECTION_FLAG_IS_WRAPPER|SECTION_FLAG_IS_ARRAY)))
893         printf("[/%s]\n", upcase_string(buf, sizeof(buf), section->name));
894 }
895
896 static void default_print_str(WriterContext *wctx, const char *key, const char *value)
897 {
898     DefaultContext *def = wctx->priv;
899
900     if (!def->nokey)
901         printf("%s%s=", wctx->section_pbuf[wctx->level].str, key);
902     printf("%s\n", value);
903 }
904
905 static void default_print_int(WriterContext *wctx, const char *key, long long int value)
906 {
907     DefaultContext *def = wctx->priv;
908
909     if (!def->nokey)
910         printf("%s%s=", wctx->section_pbuf[wctx->level].str, key);
911     printf("%lld\n", value);
912 }
913
914 static const Writer default_writer = {
915     .name                  = "default",
916     .priv_size             = sizeof(DefaultContext),
917     .print_section_header  = default_print_section_header,
918     .print_section_footer  = default_print_section_footer,
919     .print_integer         = default_print_int,
920     .print_string          = default_print_str,
921     .flags = WRITER_FLAG_DISPLAY_OPTIONAL_FIELDS,
922     .priv_class            = &default_class,
923 };
924
925 /* Compact output */
926
927 /**
928  * Apply C-language-like string escaping.
929  */
930 static const char *c_escape_str(AVBPrint *dst, const char *src, const char sep, void *log_ctx)
931 {
932     const char *p;
933
934     for (p = src; *p; p++) {
935         switch (*p) {
936         case '\b': av_bprintf(dst, "%s", "\\b");  break;
937         case '\f': av_bprintf(dst, "%s", "\\f");  break;
938         case '\n': av_bprintf(dst, "%s", "\\n");  break;
939         case '\r': av_bprintf(dst, "%s", "\\r");  break;
940         case '\\': av_bprintf(dst, "%s", "\\\\"); break;
941         default:
942             if (*p == sep)
943                 av_bprint_chars(dst, '\\', 1);
944             av_bprint_chars(dst, *p, 1);
945         }
946     }
947     return dst->str;
948 }
949
950 /**
951  * Quote fields containing special characters, check RFC4180.
952  */
953 static const char *csv_escape_str(AVBPrint *dst, const char *src, const char sep, void *log_ctx)
954 {
955     char meta_chars[] = { sep, '"', '\n', '\r', '\0' };
956     int needs_quoting = !!src[strcspn(src, meta_chars)];
957
958     if (needs_quoting)
959         av_bprint_chars(dst, '"', 1);
960
961     for (; *src; src++) {
962         if (*src == '"')
963             av_bprint_chars(dst, '"', 1);
964         av_bprint_chars(dst, *src, 1);
965     }
966     if (needs_quoting)
967         av_bprint_chars(dst, '"', 1);
968     return dst->str;
969 }
970
971 static const char *none_escape_str(AVBPrint *dst, const char *src, const char sep, void *log_ctx)
972 {
973     return src;
974 }
975
976 typedef struct CompactContext {
977     const AVClass *class;
978     char *item_sep_str;
979     char item_sep;
980     int nokey;
981     int print_section;
982     char *escape_mode_str;
983     const char * (*escape_str)(AVBPrint *dst, const char *src, const char sep, void *log_ctx);
984     int nested_section[SECTION_MAX_NB_LEVELS];
985     int has_nested_elems[SECTION_MAX_NB_LEVELS];
986     int terminate_line[SECTION_MAX_NB_LEVELS];
987 } CompactContext;
988
989 #undef OFFSET
990 #define OFFSET(x) offsetof(CompactContext, x)
991
992 static const AVOption compact_options[]= {
993     {"item_sep", "set item separator",    OFFSET(item_sep_str),    AV_OPT_TYPE_STRING, {.str="|"},  CHAR_MIN, CHAR_MAX },
994     {"s",        "set item separator",    OFFSET(item_sep_str),    AV_OPT_TYPE_STRING, {.str="|"},  CHAR_MIN, CHAR_MAX },
995     {"nokey",    "force no key printing", OFFSET(nokey),           AV_OPT_TYPE_BOOL,   {.i64=0},    0,        1        },
996     {"nk",       "force no key printing", OFFSET(nokey),           AV_OPT_TYPE_BOOL,   {.i64=0},    0,        1        },
997     {"escape",   "set escape mode",       OFFSET(escape_mode_str), AV_OPT_TYPE_STRING, {.str="c"},  CHAR_MIN, CHAR_MAX },
998     {"e",        "set escape mode",       OFFSET(escape_mode_str), AV_OPT_TYPE_STRING, {.str="c"},  CHAR_MIN, CHAR_MAX },
999     {"print_section", "print section name", OFFSET(print_section), AV_OPT_TYPE_BOOL,   {.i64=1},    0,        1        },
1000     {"p",             "print section name", OFFSET(print_section), AV_OPT_TYPE_BOOL,   {.i64=1},    0,        1        },
1001     {NULL},
1002 };
1003
1004 DEFINE_WRITER_CLASS(compact);
1005
1006 static av_cold int compact_init(WriterContext *wctx)
1007 {
1008     CompactContext *compact = wctx->priv;
1009
1010     if (strlen(compact->item_sep_str) != 1) {
1011         av_log(wctx, AV_LOG_ERROR, "Item separator '%s' specified, but must contain a single character\n",
1012                compact->item_sep_str);
1013         return AVERROR(EINVAL);
1014     }
1015     compact->item_sep = compact->item_sep_str[0];
1016
1017     if      (!strcmp(compact->escape_mode_str, "none")) compact->escape_str = none_escape_str;
1018     else if (!strcmp(compact->escape_mode_str, "c"   )) compact->escape_str = c_escape_str;
1019     else if (!strcmp(compact->escape_mode_str, "csv" )) compact->escape_str = csv_escape_str;
1020     else {
1021         av_log(wctx, AV_LOG_ERROR, "Unknown escape mode '%s'\n", compact->escape_mode_str);
1022         return AVERROR(EINVAL);
1023     }
1024
1025     return 0;
1026 }
1027
1028 static void compact_print_section_header(WriterContext *wctx)
1029 {
1030     CompactContext *compact = wctx->priv;
1031     const struct section *section = wctx->section[wctx->level];
1032     const struct section *parent_section = wctx->level ?
1033         wctx->section[wctx->level-1] : NULL;
1034     compact->terminate_line[wctx->level] = 1;
1035     compact->has_nested_elems[wctx->level] = 0;
1036
1037     av_bprint_clear(&wctx->section_pbuf[wctx->level]);
1038     if (!(section->flags & SECTION_FLAG_IS_ARRAY) && parent_section &&
1039         !(parent_section->flags & (SECTION_FLAG_IS_WRAPPER|SECTION_FLAG_IS_ARRAY))) {
1040         compact->nested_section[wctx->level] = 1;
1041         compact->has_nested_elems[wctx->level-1] = 1;
1042         av_bprintf(&wctx->section_pbuf[wctx->level], "%s%s:",
1043                    wctx->section_pbuf[wctx->level-1].str,
1044                    (char *)av_x_if_null(section->element_name, section->name));
1045         wctx->nb_item[wctx->level] = wctx->nb_item[wctx->level-1];
1046     } else {
1047         if (parent_section && compact->has_nested_elems[wctx->level-1] &&
1048             (section->flags & SECTION_FLAG_IS_ARRAY)) {
1049             compact->terminate_line[wctx->level-1] = 0;
1050             printf("\n");
1051         }
1052         if (compact->print_section &&
1053             !(section->flags & (SECTION_FLAG_IS_WRAPPER|SECTION_FLAG_IS_ARRAY)))
1054             printf("%s%c", section->name, compact->item_sep);
1055     }
1056 }
1057
1058 static void compact_print_section_footer(WriterContext *wctx)
1059 {
1060     CompactContext *compact = wctx->priv;
1061
1062     if (!compact->nested_section[wctx->level] &&
1063         compact->terminate_line[wctx->level] &&
1064         !(wctx->section[wctx->level]->flags & (SECTION_FLAG_IS_WRAPPER|SECTION_FLAG_IS_ARRAY)))
1065         printf("\n");
1066 }
1067
1068 static void compact_print_str(WriterContext *wctx, const char *key, const char *value)
1069 {
1070     CompactContext *compact = wctx->priv;
1071     AVBPrint buf;
1072
1073     if (wctx->nb_item[wctx->level]) printf("%c", compact->item_sep);
1074     if (!compact->nokey)
1075         printf("%s%s=", wctx->section_pbuf[wctx->level].str, key);
1076     av_bprint_init(&buf, 1, AV_BPRINT_SIZE_UNLIMITED);
1077     printf("%s", compact->escape_str(&buf, value, compact->item_sep, wctx));
1078     av_bprint_finalize(&buf, NULL);
1079 }
1080
1081 static void compact_print_int(WriterContext *wctx, const char *key, long long int value)
1082 {
1083     CompactContext *compact = wctx->priv;
1084
1085     if (wctx->nb_item[wctx->level]) printf("%c", compact->item_sep);
1086     if (!compact->nokey)
1087         printf("%s%s=", wctx->section_pbuf[wctx->level].str, key);
1088     printf("%lld", value);
1089 }
1090
1091 static const Writer compact_writer = {
1092     .name                 = "compact",
1093     .priv_size            = sizeof(CompactContext),
1094     .init                 = compact_init,
1095     .print_section_header = compact_print_section_header,
1096     .print_section_footer = compact_print_section_footer,
1097     .print_integer        = compact_print_int,
1098     .print_string         = compact_print_str,
1099     .flags = WRITER_FLAG_DISPLAY_OPTIONAL_FIELDS,
1100     .priv_class           = &compact_class,
1101 };
1102
1103 /* CSV output */
1104
1105 #undef OFFSET
1106 #define OFFSET(x) offsetof(CompactContext, x)
1107
1108 static const AVOption csv_options[] = {
1109     {"item_sep", "set item separator",    OFFSET(item_sep_str),    AV_OPT_TYPE_STRING, {.str=","},  CHAR_MIN, CHAR_MAX },
1110     {"s",        "set item separator",    OFFSET(item_sep_str),    AV_OPT_TYPE_STRING, {.str=","},  CHAR_MIN, CHAR_MAX },
1111     {"nokey",    "force no key printing", OFFSET(nokey),           AV_OPT_TYPE_BOOL,   {.i64=1},    0,        1        },
1112     {"nk",       "force no key printing", OFFSET(nokey),           AV_OPT_TYPE_BOOL,   {.i64=1},    0,        1        },
1113     {"escape",   "set escape mode",       OFFSET(escape_mode_str), AV_OPT_TYPE_STRING, {.str="csv"}, CHAR_MIN, CHAR_MAX },
1114     {"e",        "set escape mode",       OFFSET(escape_mode_str), AV_OPT_TYPE_STRING, {.str="csv"}, CHAR_MIN, CHAR_MAX },
1115     {"print_section", "print section name", OFFSET(print_section), AV_OPT_TYPE_BOOL,   {.i64=1},    0,        1        },
1116     {"p",             "print section name", OFFSET(print_section), AV_OPT_TYPE_BOOL,   {.i64=1},    0,        1        },
1117     {NULL},
1118 };
1119
1120 DEFINE_WRITER_CLASS(csv);
1121
1122 static const Writer csv_writer = {
1123     .name                 = "csv",
1124     .priv_size            = sizeof(CompactContext),
1125     .init                 = compact_init,
1126     .print_section_header = compact_print_section_header,
1127     .print_section_footer = compact_print_section_footer,
1128     .print_integer        = compact_print_int,
1129     .print_string         = compact_print_str,
1130     .flags = WRITER_FLAG_DISPLAY_OPTIONAL_FIELDS,
1131     .priv_class           = &csv_class,
1132 };
1133
1134 /* Flat output */
1135
1136 typedef struct FlatContext {
1137     const AVClass *class;
1138     const char *sep_str;
1139     char sep;
1140     int hierarchical;
1141 } FlatContext;
1142
1143 #undef OFFSET
1144 #define OFFSET(x) offsetof(FlatContext, x)
1145
1146 static const AVOption flat_options[]= {
1147     {"sep_char", "set separator",    OFFSET(sep_str),    AV_OPT_TYPE_STRING, {.str="."},  CHAR_MIN, CHAR_MAX },
1148     {"s",        "set separator",    OFFSET(sep_str),    AV_OPT_TYPE_STRING, {.str="."},  CHAR_MIN, CHAR_MAX },
1149     {"hierarchical", "specify if the section specification should be hierarchical", OFFSET(hierarchical), AV_OPT_TYPE_BOOL, {.i64=1}, 0, 1 },
1150     {"h",            "specify if the section specification should be hierarchical", OFFSET(hierarchical), AV_OPT_TYPE_BOOL, {.i64=1}, 0, 1 },
1151     {NULL},
1152 };
1153
1154 DEFINE_WRITER_CLASS(flat);
1155
1156 static av_cold int flat_init(WriterContext *wctx)
1157 {
1158     FlatContext *flat = wctx->priv;
1159
1160     if (strlen(flat->sep_str) != 1) {
1161         av_log(wctx, AV_LOG_ERROR, "Item separator '%s' specified, but must contain a single character\n",
1162                flat->sep_str);
1163         return AVERROR(EINVAL);
1164     }
1165     flat->sep = flat->sep_str[0];
1166
1167     return 0;
1168 }
1169
1170 static const char *flat_escape_key_str(AVBPrint *dst, const char *src, const char sep)
1171 {
1172     const char *p;
1173
1174     for (p = src; *p; p++) {
1175         if (!((*p >= '0' && *p <= '9') ||
1176               (*p >= 'a' && *p <= 'z') ||
1177               (*p >= 'A' && *p <= 'Z')))
1178             av_bprint_chars(dst, '_', 1);
1179         else
1180             av_bprint_chars(dst, *p, 1);
1181     }
1182     return dst->str;
1183 }
1184
1185 static const char *flat_escape_value_str(AVBPrint *dst, const char *src)
1186 {
1187     const char *p;
1188
1189     for (p = src; *p; p++) {
1190         switch (*p) {
1191         case '\n': av_bprintf(dst, "%s", "\\n");  break;
1192         case '\r': av_bprintf(dst, "%s", "\\r");  break;
1193         case '\\': av_bprintf(dst, "%s", "\\\\"); break;
1194         case '"':  av_bprintf(dst, "%s", "\\\""); break;
1195         case '`':  av_bprintf(dst, "%s", "\\`");  break;
1196         case '$':  av_bprintf(dst, "%s", "\\$");  break;
1197         default:   av_bprint_chars(dst, *p, 1);   break;
1198         }
1199     }
1200     return dst->str;
1201 }
1202
1203 static void flat_print_section_header(WriterContext *wctx)
1204 {
1205     FlatContext *flat = wctx->priv;
1206     AVBPrint *buf = &wctx->section_pbuf[wctx->level];
1207     const struct section *section = wctx->section[wctx->level];
1208     const struct section *parent_section = wctx->level ?
1209         wctx->section[wctx->level-1] : NULL;
1210
1211     /* build section header */
1212     av_bprint_clear(buf);
1213     if (!parent_section)
1214         return;
1215     av_bprintf(buf, "%s", wctx->section_pbuf[wctx->level-1].str);
1216
1217     if (flat->hierarchical ||
1218         !(section->flags & (SECTION_FLAG_IS_ARRAY|SECTION_FLAG_IS_WRAPPER))) {
1219         av_bprintf(buf, "%s%s", wctx->section[wctx->level]->name, flat->sep_str);
1220
1221         if (parent_section->flags & SECTION_FLAG_IS_ARRAY) {
1222             int n = parent_section->id == SECTION_ID_PACKETS_AND_FRAMES ?
1223                 wctx->nb_section_packet_frame : wctx->nb_item[wctx->level-1];
1224             av_bprintf(buf, "%d%s", n, flat->sep_str);
1225         }
1226     }
1227 }
1228
1229 static void flat_print_int(WriterContext *wctx, const char *key, long long int value)
1230 {
1231     printf("%s%s=%lld\n", wctx->section_pbuf[wctx->level].str, key, value);
1232 }
1233
1234 static void flat_print_str(WriterContext *wctx, const char *key, const char *value)
1235 {
1236     FlatContext *flat = wctx->priv;
1237     AVBPrint buf;
1238
1239     printf("%s", wctx->section_pbuf[wctx->level].str);
1240     av_bprint_init(&buf, 1, AV_BPRINT_SIZE_UNLIMITED);
1241     printf("%s=", flat_escape_key_str(&buf, key, flat->sep));
1242     av_bprint_clear(&buf);
1243     printf("\"%s\"\n", flat_escape_value_str(&buf, value));
1244     av_bprint_finalize(&buf, NULL);
1245 }
1246
1247 static const Writer flat_writer = {
1248     .name                  = "flat",
1249     .priv_size             = sizeof(FlatContext),
1250     .init                  = flat_init,
1251     .print_section_header  = flat_print_section_header,
1252     .print_integer         = flat_print_int,
1253     .print_string          = flat_print_str,
1254     .flags = WRITER_FLAG_DISPLAY_OPTIONAL_FIELDS|WRITER_FLAG_PUT_PACKETS_AND_FRAMES_IN_SAME_CHAPTER,
1255     .priv_class            = &flat_class,
1256 };
1257
1258 /* INI format output */
1259
1260 typedef struct INIContext {
1261     const AVClass *class;
1262     int hierarchical;
1263 } INIContext;
1264
1265 #undef OFFSET
1266 #define OFFSET(x) offsetof(INIContext, x)
1267
1268 static const AVOption ini_options[] = {
1269     {"hierarchical", "specify if the section specification should be hierarchical", OFFSET(hierarchical), AV_OPT_TYPE_BOOL, {.i64=1}, 0, 1 },
1270     {"h",            "specify if the section specification should be hierarchical", OFFSET(hierarchical), AV_OPT_TYPE_BOOL, {.i64=1}, 0, 1 },
1271     {NULL},
1272 };
1273
1274 DEFINE_WRITER_CLASS(ini);
1275
1276 static char *ini_escape_str(AVBPrint *dst, const char *src)
1277 {
1278     int i = 0;
1279     char c = 0;
1280
1281     while (c = src[i++]) {
1282         switch (c) {
1283         case '\b': av_bprintf(dst, "%s", "\\b"); break;
1284         case '\f': av_bprintf(dst, "%s", "\\f"); break;
1285         case '\n': av_bprintf(dst, "%s", "\\n"); break;
1286         case '\r': av_bprintf(dst, "%s", "\\r"); break;
1287         case '\t': av_bprintf(dst, "%s", "\\t"); break;
1288         case '\\':
1289         case '#' :
1290         case '=' :
1291         case ':' : av_bprint_chars(dst, '\\', 1);
1292         default:
1293             if ((unsigned char)c < 32)
1294                 av_bprintf(dst, "\\x00%02x", c & 0xff);
1295             else
1296                 av_bprint_chars(dst, c, 1);
1297             break;
1298         }
1299     }
1300     return dst->str;
1301 }
1302
1303 static void ini_print_section_header(WriterContext *wctx)
1304 {
1305     INIContext *ini = wctx->priv;
1306     AVBPrint *buf = &wctx->section_pbuf[wctx->level];
1307     const struct section *section = wctx->section[wctx->level];
1308     const struct section *parent_section = wctx->level ?
1309         wctx->section[wctx->level-1] : NULL;
1310
1311     av_bprint_clear(buf);
1312     if (!parent_section) {
1313         printf("# ffprobe output\n\n");
1314         return;
1315     }
1316
1317     if (wctx->nb_item[wctx->level-1])
1318         printf("\n");
1319
1320     av_bprintf(buf, "%s", wctx->section_pbuf[wctx->level-1].str);
1321     if (ini->hierarchical ||
1322         !(section->flags & (SECTION_FLAG_IS_ARRAY|SECTION_FLAG_IS_WRAPPER))) {
1323         av_bprintf(buf, "%s%s", buf->str[0] ? "." : "", wctx->section[wctx->level]->name);
1324
1325         if (parent_section->flags & SECTION_FLAG_IS_ARRAY) {
1326             int n = parent_section->id == SECTION_ID_PACKETS_AND_FRAMES ?
1327                 wctx->nb_section_packet_frame : wctx->nb_item[wctx->level-1];
1328             av_bprintf(buf, ".%d", n);
1329         }
1330     }
1331
1332     if (!(section->flags & (SECTION_FLAG_IS_ARRAY|SECTION_FLAG_IS_WRAPPER)))
1333         printf("[%s]\n", buf->str);
1334 }
1335
1336 static void ini_print_str(WriterContext *wctx, const char *key, const char *value)
1337 {
1338     AVBPrint buf;
1339
1340     av_bprint_init(&buf, 1, AV_BPRINT_SIZE_UNLIMITED);
1341     printf("%s=", ini_escape_str(&buf, key));
1342     av_bprint_clear(&buf);
1343     printf("%s\n", ini_escape_str(&buf, value));
1344     av_bprint_finalize(&buf, NULL);
1345 }
1346
1347 static void ini_print_int(WriterContext *wctx, const char *key, long long int value)
1348 {
1349     printf("%s=%lld\n", key, value);
1350 }
1351
1352 static const Writer ini_writer = {
1353     .name                  = "ini",
1354     .priv_size             = sizeof(INIContext),
1355     .print_section_header  = ini_print_section_header,
1356     .print_integer         = ini_print_int,
1357     .print_string          = ini_print_str,
1358     .flags = WRITER_FLAG_DISPLAY_OPTIONAL_FIELDS|WRITER_FLAG_PUT_PACKETS_AND_FRAMES_IN_SAME_CHAPTER,
1359     .priv_class            = &ini_class,
1360 };
1361
1362 /* JSON output */
1363
1364 typedef struct JSONContext {
1365     const AVClass *class;
1366     int indent_level;
1367     int compact;
1368     const char *item_sep, *item_start_end;
1369 } JSONContext;
1370
1371 #undef OFFSET
1372 #define OFFSET(x) offsetof(JSONContext, x)
1373
1374 static const AVOption json_options[]= {
1375     { "compact", "enable compact output", OFFSET(compact), AV_OPT_TYPE_BOOL, {.i64=0}, 0, 1 },
1376     { "c",       "enable compact output", OFFSET(compact), AV_OPT_TYPE_BOOL, {.i64=0}, 0, 1 },
1377     { NULL }
1378 };
1379
1380 DEFINE_WRITER_CLASS(json);
1381
1382 static av_cold int json_init(WriterContext *wctx)
1383 {
1384     JSONContext *json = wctx->priv;
1385
1386     json->item_sep       = json->compact ? ", " : ",\n";
1387     json->item_start_end = json->compact ? " "  : "\n";
1388
1389     return 0;
1390 }
1391
1392 static const char *json_escape_str(AVBPrint *dst, const char *src, void *log_ctx)
1393 {
1394     static const char json_escape[] = {'"', '\\', '\b', '\f', '\n', '\r', '\t', 0};
1395     static const char json_subst[]  = {'"', '\\',  'b',  'f',  'n',  'r',  't', 0};
1396     const char *p;
1397
1398     for (p = src; *p; p++) {
1399         char *s = strchr(json_escape, *p);
1400         if (s) {
1401             av_bprint_chars(dst, '\\', 1);
1402             av_bprint_chars(dst, json_subst[s - json_escape], 1);
1403         } else if ((unsigned char)*p < 32) {
1404             av_bprintf(dst, "\\u00%02x", *p & 0xff);
1405         } else {
1406             av_bprint_chars(dst, *p, 1);
1407         }
1408     }
1409     return dst->str;
1410 }
1411
1412 #define JSON_INDENT() printf("%*c", json->indent_level * 4, ' ')
1413
1414 static void json_print_section_header(WriterContext *wctx)
1415 {
1416     JSONContext *json = wctx->priv;
1417     AVBPrint buf;
1418     const struct section *section = wctx->section[wctx->level];
1419     const struct section *parent_section = wctx->level ?
1420         wctx->section[wctx->level-1] : NULL;
1421
1422     if (wctx->level && wctx->nb_item[wctx->level-1])
1423         printf(",\n");
1424
1425     if (section->flags & SECTION_FLAG_IS_WRAPPER) {
1426         printf("{\n");
1427         json->indent_level++;
1428     } else {
1429         av_bprint_init(&buf, 1, AV_BPRINT_SIZE_UNLIMITED);
1430         json_escape_str(&buf, section->name, wctx);
1431         JSON_INDENT();
1432
1433         json->indent_level++;
1434         if (section->flags & SECTION_FLAG_IS_ARRAY) {
1435             printf("\"%s\": [\n", buf.str);
1436         } else if (parent_section && !(parent_section->flags & SECTION_FLAG_IS_ARRAY)) {
1437             printf("\"%s\": {%s", buf.str, json->item_start_end);
1438         } else {
1439             printf("{%s", json->item_start_end);
1440
1441             /* this is required so the parser can distinguish between packets and frames */
1442             if (parent_section && parent_section->id == SECTION_ID_PACKETS_AND_FRAMES) {
1443                 if (!json->compact)
1444                     JSON_INDENT();
1445                 printf("\"type\": \"%s\"%s", section->name, json->item_sep);
1446             }
1447         }
1448         av_bprint_finalize(&buf, NULL);
1449     }
1450 }
1451
1452 static void json_print_section_footer(WriterContext *wctx)
1453 {
1454     JSONContext *json = wctx->priv;
1455     const struct section *section = wctx->section[wctx->level];
1456
1457     if (wctx->level == 0) {
1458         json->indent_level--;
1459         printf("\n}\n");
1460     } else if (section->flags & SECTION_FLAG_IS_ARRAY) {
1461         printf("\n");
1462         json->indent_level--;
1463         JSON_INDENT();
1464         printf("]");
1465     } else {
1466         printf("%s", json->item_start_end);
1467         json->indent_level--;
1468         if (!json->compact)
1469             JSON_INDENT();
1470         printf("}");
1471     }
1472 }
1473
1474 static inline void json_print_item_str(WriterContext *wctx,
1475                                        const char *key, const char *value)
1476 {
1477     AVBPrint buf;
1478
1479     av_bprint_init(&buf, 1, AV_BPRINT_SIZE_UNLIMITED);
1480     printf("\"%s\":", json_escape_str(&buf, key,   wctx));
1481     av_bprint_clear(&buf);
1482     printf(" \"%s\"", json_escape_str(&buf, value, wctx));
1483     av_bprint_finalize(&buf, NULL);
1484 }
1485
1486 static void json_print_str(WriterContext *wctx, const char *key, const char *value)
1487 {
1488     JSONContext *json = wctx->priv;
1489
1490     if (wctx->nb_item[wctx->level])
1491         printf("%s", json->item_sep);
1492     if (!json->compact)
1493         JSON_INDENT();
1494     json_print_item_str(wctx, key, value);
1495 }
1496
1497 static void json_print_int(WriterContext *wctx, const char *key, long long int value)
1498 {
1499     JSONContext *json = wctx->priv;
1500     AVBPrint buf;
1501
1502     if (wctx->nb_item[wctx->level])
1503         printf("%s", json->item_sep);
1504     if (!json->compact)
1505         JSON_INDENT();
1506
1507     av_bprint_init(&buf, 1, AV_BPRINT_SIZE_UNLIMITED);
1508     printf("\"%s\": %lld", json_escape_str(&buf, key, wctx), value);
1509     av_bprint_finalize(&buf, NULL);
1510 }
1511
1512 static const Writer json_writer = {
1513     .name                 = "json",
1514     .priv_size            = sizeof(JSONContext),
1515     .init                 = json_init,
1516     .print_section_header = json_print_section_header,
1517     .print_section_footer = json_print_section_footer,
1518     .print_integer        = json_print_int,
1519     .print_string         = json_print_str,
1520     .flags = WRITER_FLAG_PUT_PACKETS_AND_FRAMES_IN_SAME_CHAPTER,
1521     .priv_class           = &json_class,
1522 };
1523
1524 /* XML output */
1525
1526 typedef struct XMLContext {
1527     const AVClass *class;
1528     int within_tag;
1529     int indent_level;
1530     int fully_qualified;
1531     int xsd_strict;
1532 } XMLContext;
1533
1534 #undef OFFSET
1535 #define OFFSET(x) offsetof(XMLContext, x)
1536
1537 static const AVOption xml_options[] = {
1538     {"fully_qualified", "specify if the output should be fully qualified", OFFSET(fully_qualified), AV_OPT_TYPE_BOOL, {.i64=0},  0, 1 },
1539     {"q",               "specify if the output should be fully qualified", OFFSET(fully_qualified), AV_OPT_TYPE_BOOL, {.i64=0},  0, 1 },
1540     {"xsd_strict",      "ensure that the output is XSD compliant",         OFFSET(xsd_strict),      AV_OPT_TYPE_BOOL, {.i64=0},  0, 1 },
1541     {"x",               "ensure that the output is XSD compliant",         OFFSET(xsd_strict),      AV_OPT_TYPE_BOOL, {.i64=0},  0, 1 },
1542     {NULL},
1543 };
1544
1545 DEFINE_WRITER_CLASS(xml);
1546
1547 static av_cold int xml_init(WriterContext *wctx)
1548 {
1549     XMLContext *xml = wctx->priv;
1550
1551     if (xml->xsd_strict) {
1552         xml->fully_qualified = 1;
1553 #define CHECK_COMPLIANCE(opt, opt_name)                                 \
1554         if (opt) {                                                      \
1555             av_log(wctx, AV_LOG_ERROR,                                  \
1556                    "XSD-compliant output selected but option '%s' was selected, XML output may be non-compliant.\n" \
1557                    "You need to disable such option with '-no%s'\n", opt_name, opt_name); \
1558             return AVERROR(EINVAL);                                     \
1559         }
1560         CHECK_COMPLIANCE(show_private_data, "private");
1561         CHECK_COMPLIANCE(show_value_unit,   "unit");
1562         CHECK_COMPLIANCE(use_value_prefix,  "prefix");
1563
1564         if (do_show_frames && do_show_packets) {
1565             av_log(wctx, AV_LOG_ERROR,
1566                    "Interleaved frames and packets are not allowed in XSD. "
1567                    "Select only one between the -show_frames and the -show_packets options.\n");
1568             return AVERROR(EINVAL);
1569         }
1570     }
1571
1572     return 0;
1573 }
1574
1575 static const char *xml_escape_str(AVBPrint *dst, const char *src, void *log_ctx)
1576 {
1577     const char *p;
1578
1579     for (p = src; *p; p++) {
1580         switch (*p) {
1581         case '&' : av_bprintf(dst, "%s", "&amp;");  break;
1582         case '<' : av_bprintf(dst, "%s", "&lt;");   break;
1583         case '>' : av_bprintf(dst, "%s", "&gt;");   break;
1584         case '"' : av_bprintf(dst, "%s", "&quot;"); break;
1585         case '\'': av_bprintf(dst, "%s", "&apos;"); break;
1586         default: av_bprint_chars(dst, *p, 1);
1587         }
1588     }
1589
1590     return dst->str;
1591 }
1592
1593 #define XML_INDENT() printf("%*c", xml->indent_level * 4, ' ')
1594
1595 static void xml_print_section_header(WriterContext *wctx)
1596 {
1597     XMLContext *xml = wctx->priv;
1598     const struct section *section = wctx->section[wctx->level];
1599     const struct section *parent_section = wctx->level ?
1600         wctx->section[wctx->level-1] : NULL;
1601
1602     if (wctx->level == 0) {
1603         const char *qual = " xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' "
1604             "xmlns:ffprobe='http://www.ffmpeg.org/schema/ffprobe' "
1605             "xsi:schemaLocation='http://www.ffmpeg.org/schema/ffprobe ffprobe.xsd'";
1606
1607         printf("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n");
1608         printf("<%sffprobe%s>\n",
1609                xml->fully_qualified ? "ffprobe:" : "",
1610                xml->fully_qualified ? qual : "");
1611         return;
1612     }
1613
1614     if (xml->within_tag) {
1615         xml->within_tag = 0;
1616         printf(">\n");
1617     }
1618     if (section->flags & SECTION_FLAG_HAS_VARIABLE_FIELDS) {
1619         xml->indent_level++;
1620     } else {
1621         if (parent_section && (parent_section->flags & SECTION_FLAG_IS_WRAPPER) &&
1622             wctx->level && wctx->nb_item[wctx->level-1])
1623             printf("\n");
1624         xml->indent_level++;
1625
1626         if (section->flags & SECTION_FLAG_IS_ARRAY) {
1627             XML_INDENT(); printf("<%s>\n", section->name);
1628         } else {
1629             XML_INDENT(); printf("<%s ", section->name);
1630             xml->within_tag = 1;
1631         }
1632     }
1633 }
1634
1635 static void xml_print_section_footer(WriterContext *wctx)
1636 {
1637     XMLContext *xml = wctx->priv;
1638     const struct section *section = wctx->section[wctx->level];
1639
1640     if (wctx->level == 0) {
1641         printf("</%sffprobe>\n", xml->fully_qualified ? "ffprobe:" : "");
1642     } else if (xml->within_tag) {
1643         xml->within_tag = 0;
1644         printf("/>\n");
1645         xml->indent_level--;
1646     } else if (section->flags & SECTION_FLAG_HAS_VARIABLE_FIELDS) {
1647         xml->indent_level--;
1648     } else {
1649         XML_INDENT(); printf("</%s>\n", section->name);
1650         xml->indent_level--;
1651     }
1652 }
1653
1654 static void xml_print_str(WriterContext *wctx, const char *key, const char *value)
1655 {
1656     AVBPrint buf;
1657     XMLContext *xml = wctx->priv;
1658     const struct section *section = wctx->section[wctx->level];
1659
1660     av_bprint_init(&buf, 1, AV_BPRINT_SIZE_UNLIMITED);
1661
1662     if (section->flags & SECTION_FLAG_HAS_VARIABLE_FIELDS) {
1663         XML_INDENT();
1664         printf("<%s key=\"%s\"",
1665                section->element_name, xml_escape_str(&buf, key, wctx));
1666         av_bprint_clear(&buf);
1667         printf(" value=\"%s\"/>\n", xml_escape_str(&buf, value, wctx));
1668     } else {
1669         if (wctx->nb_item[wctx->level])
1670             printf(" ");
1671         printf("%s=\"%s\"", key, xml_escape_str(&buf, value, wctx));
1672     }
1673
1674     av_bprint_finalize(&buf, NULL);
1675 }
1676
1677 static void xml_print_int(WriterContext *wctx, const char *key, long long int value)
1678 {
1679     if (wctx->nb_item[wctx->level])
1680         printf(" ");
1681     printf("%s=\"%lld\"", key, value);
1682 }
1683
1684 static Writer xml_writer = {
1685     .name                 = "xml",
1686     .priv_size            = sizeof(XMLContext),
1687     .init                 = xml_init,
1688     .print_section_header = xml_print_section_header,
1689     .print_section_footer = xml_print_section_footer,
1690     .print_integer        = xml_print_int,
1691     .print_string         = xml_print_str,
1692     .flags = WRITER_FLAG_PUT_PACKETS_AND_FRAMES_IN_SAME_CHAPTER,
1693     .priv_class           = &xml_class,
1694 };
1695
1696 static void writer_register_all(void)
1697 {
1698     static int initialized;
1699
1700     if (initialized)
1701         return;
1702     initialized = 1;
1703
1704     writer_register(&default_writer);
1705     writer_register(&compact_writer);
1706     writer_register(&csv_writer);
1707     writer_register(&flat_writer);
1708     writer_register(&ini_writer);
1709     writer_register(&json_writer);
1710     writer_register(&xml_writer);
1711 }
1712
1713 #define print_fmt(k, f, ...) do {              \
1714     av_bprint_clear(&pbuf);                    \
1715     av_bprintf(&pbuf, f, __VA_ARGS__);         \
1716     writer_print_string(w, k, pbuf.str, 0);    \
1717 } while (0)
1718
1719 #define print_int(k, v)         writer_print_integer(w, k, v)
1720 #define print_q(k, v, s)        writer_print_rational(w, k, v, s)
1721 #define print_str(k, v)         writer_print_string(w, k, v, 0)
1722 #define print_str_opt(k, v)     writer_print_string(w, k, v, PRINT_STRING_OPT)
1723 #define print_str_validate(k, v) writer_print_string(w, k, v, PRINT_STRING_VALIDATE)
1724 #define print_time(k, v, tb)    writer_print_time(w, k, v, tb, 0)
1725 #define print_ts(k, v)          writer_print_ts(w, k, v, 0)
1726 #define print_duration_time(k, v, tb) writer_print_time(w, k, v, tb, 1)
1727 #define print_duration_ts(k, v)       writer_print_ts(w, k, v, 1)
1728 #define print_val(k, v, u) do {                                     \
1729     struct unit_value uv;                                           \
1730     uv.val.i = v;                                                   \
1731     uv.unit = u;                                                    \
1732     writer_print_string(w, k, value_string(val_str, sizeof(val_str), uv), 0); \
1733 } while (0)
1734
1735 #define print_section_header(s) writer_print_section_header(w, s)
1736 #define print_section_footer(s) writer_print_section_footer(w, s)
1737
1738 #define REALLOCZ_ARRAY_STREAM(ptr, cur_n, new_n)                        \
1739 {                                                                       \
1740     ret = av_reallocp_array(&(ptr), (new_n), sizeof(*(ptr)));           \
1741     if (ret < 0)                                                        \
1742         goto end;                                                       \
1743     memset( (ptr) + (cur_n), 0, ((new_n) - (cur_n)) * sizeof(*(ptr)) ); \
1744 }
1745
1746 static inline int show_tags(WriterContext *w, AVDictionary *tags, int section_id)
1747 {
1748     AVDictionaryEntry *tag = NULL;
1749     int ret = 0;
1750
1751     if (!tags)
1752         return 0;
1753     writer_print_section_header(w, section_id);
1754
1755     while ((tag = av_dict_get(tags, "", tag, AV_DICT_IGNORE_SUFFIX))) {
1756         if ((ret = print_str_validate(tag->key, tag->value)) < 0)
1757             break;
1758     }
1759     writer_print_section_footer(w);
1760
1761     return ret;
1762 }
1763
1764 static void print_pkt_side_data(WriterContext *w,
1765                                 const AVPacketSideData *side_data,
1766                                 int nb_side_data,
1767                                 SectionID id_data_list,
1768                                 SectionID id_data)
1769 {
1770     int i;
1771
1772     writer_print_section_header(w, SECTION_ID_STREAM_SIDE_DATA_LIST);
1773     for (i = 0; i < nb_side_data; i++) {
1774         const AVPacketSideData *sd = &side_data[i];
1775         const char *name = av_packet_side_data_name(sd->type);
1776
1777         writer_print_section_header(w, SECTION_ID_STREAM_SIDE_DATA);
1778         print_str("side_data_type", name ? name : "unknown");
1779         print_int("side_data_size", sd->size);
1780         if (sd->type == AV_PKT_DATA_DISPLAYMATRIX && sd->size >= 9*4) {
1781             writer_print_integers(w, "displaymatrix", sd->data, 9, " %11d", 3, 4, 1);
1782             print_int("rotation", av_display_rotation_get((int32_t *)sd->data));
1783         } else if (sd->type == AV_PKT_DATA_STEREO3D) {
1784             const AVStereo3D *stereo = (AVStereo3D *)sd->data;
1785             print_str("type", av_stereo3d_type_name(stereo->type));
1786             print_int("inverted", !!(stereo->flags & AV_STEREO3D_FLAG_INVERT));
1787         } else if (sd->type == AV_PKT_DATA_SPHERICAL) {
1788             const AVSphericalMapping *spherical = (AVSphericalMapping *)sd->data;
1789             if (spherical->projection == AV_SPHERICAL_EQUIRECTANGULAR)
1790                 print_str("projection", "equirectangular");
1791             else if (spherical->projection == AV_SPHERICAL_CUBEMAP)
1792                 print_str("projection", "cubemap");
1793             else
1794                 print_str("projection", "unknown");
1795
1796             print_int("yaw", (double) spherical->yaw / (1 << 16));
1797             print_int("pitch", (double) spherical->pitch / (1 << 16));
1798             print_int("roll", (double) spherical->roll / (1 << 16));
1799         }
1800         writer_print_section_footer(w);
1801     }
1802     writer_print_section_footer(w);
1803 }
1804
1805 static void show_packet(WriterContext *w, InputFile *ifile, AVPacket *pkt, int packet_idx)
1806 {
1807     char val_str[128];
1808     AVStream *st = ifile->streams[pkt->stream_index].st;
1809     AVBPrint pbuf;
1810     const char *s;
1811
1812     av_bprint_init(&pbuf, 1, AV_BPRINT_SIZE_UNLIMITED);
1813
1814     writer_print_section_header(w, SECTION_ID_PACKET);
1815
1816     s = av_get_media_type_string(st->codecpar->codec_type);
1817     if (s) print_str    ("codec_type", s);
1818     else   print_str_opt("codec_type", "unknown");
1819     print_int("stream_index",     pkt->stream_index);
1820     print_ts  ("pts",             pkt->pts);
1821     print_time("pts_time",        pkt->pts, &st->time_base);
1822     print_ts  ("dts",             pkt->dts);
1823     print_time("dts_time",        pkt->dts, &st->time_base);
1824     print_duration_ts("duration",        pkt->duration);
1825     print_duration_time("duration_time", pkt->duration, &st->time_base);
1826     print_duration_ts("convergence_duration", pkt->convergence_duration);
1827     print_duration_time("convergence_duration_time", pkt->convergence_duration, &st->time_base);
1828     print_val("size",             pkt->size, unit_byte_str);
1829     if (pkt->pos != -1) print_fmt    ("pos", "%"PRId64, pkt->pos);
1830     else                print_str_opt("pos", "N/A");
1831     print_fmt("flags", "%c%c",      pkt->flags & AV_PKT_FLAG_KEY ? 'K' : '_',
1832               pkt->flags & AV_PKT_FLAG_DISCARD ? 'D' : '_');
1833
1834     if (pkt->side_data_elems) {
1835         int size;
1836         const uint8_t *side_metadata;
1837
1838         side_metadata = av_packet_get_side_data(pkt, AV_PKT_DATA_STRINGS_METADATA, &size);
1839         if (side_metadata && size && do_show_packet_tags) {
1840             AVDictionary *dict = NULL;
1841             if (av_packet_unpack_dictionary(side_metadata, size, &dict) >= 0)
1842                 show_tags(w, dict, SECTION_ID_PACKET_TAGS);
1843             av_dict_free(&dict);
1844         }
1845
1846         print_pkt_side_data(w, pkt->side_data, pkt->side_data_elems,
1847                             SECTION_ID_PACKET_SIDE_DATA_LIST,
1848                             SECTION_ID_PACKET_SIDE_DATA);
1849     }
1850
1851     if (do_show_data)
1852         writer_print_data(w, "data", pkt->data, pkt->size);
1853     writer_print_data_hash(w, "data_hash", pkt->data, pkt->size);
1854     writer_print_section_footer(w);
1855
1856     av_bprint_finalize(&pbuf, NULL);
1857     fflush(stdout);
1858 }
1859
1860 static void show_subtitle(WriterContext *w, AVSubtitle *sub, AVStream *stream,
1861                           AVFormatContext *fmt_ctx)
1862 {
1863     AVBPrint pbuf;
1864
1865     av_bprint_init(&pbuf, 1, AV_BPRINT_SIZE_UNLIMITED);
1866
1867     writer_print_section_header(w, SECTION_ID_SUBTITLE);
1868
1869     print_str ("media_type",         "subtitle");
1870     print_ts  ("pts",                 sub->pts);
1871     print_time("pts_time",            sub->pts, &AV_TIME_BASE_Q);
1872     print_int ("format",              sub->format);
1873     print_int ("start_display_time",  sub->start_display_time);
1874     print_int ("end_display_time",    sub->end_display_time);
1875     print_int ("num_rects",           sub->num_rects);
1876
1877     writer_print_section_footer(w);
1878
1879     av_bprint_finalize(&pbuf, NULL);
1880     fflush(stdout);
1881 }
1882
1883 static void show_frame(WriterContext *w, AVFrame *frame, AVStream *stream,
1884                        AVFormatContext *fmt_ctx)
1885 {
1886     AVBPrint pbuf;
1887     char val_str[128];
1888     const char *s;
1889     int i;
1890
1891     av_bprint_init(&pbuf, 1, AV_BPRINT_SIZE_UNLIMITED);
1892
1893     writer_print_section_header(w, SECTION_ID_FRAME);
1894
1895     s = av_get_media_type_string(stream->codecpar->codec_type);
1896     if (s) print_str    ("media_type", s);
1897     else   print_str_opt("media_type", "unknown");
1898     print_int("stream_index",           stream->index);
1899     print_int("key_frame",              frame->key_frame);
1900     print_ts  ("pkt_pts",               frame->pts);
1901     print_time("pkt_pts_time",          frame->pts, &stream->time_base);
1902     print_ts  ("pkt_dts",               frame->pkt_dts);
1903     print_time("pkt_dts_time",          frame->pkt_dts, &stream->time_base);
1904     print_ts  ("best_effort_timestamp", av_frame_get_best_effort_timestamp(frame));
1905     print_time("best_effort_timestamp_time", av_frame_get_best_effort_timestamp(frame), &stream->time_base);
1906     print_duration_ts  ("pkt_duration",      av_frame_get_pkt_duration(frame));
1907     print_duration_time("pkt_duration_time", av_frame_get_pkt_duration(frame), &stream->time_base);
1908     if (av_frame_get_pkt_pos (frame) != -1) print_fmt    ("pkt_pos", "%"PRId64, av_frame_get_pkt_pos(frame));
1909     else                      print_str_opt("pkt_pos", "N/A");
1910     if (av_frame_get_pkt_size(frame) != -1) print_val    ("pkt_size", av_frame_get_pkt_size(frame), unit_byte_str);
1911     else                       print_str_opt("pkt_size", "N/A");
1912
1913     switch (stream->codecpar->codec_type) {
1914         AVRational sar;
1915
1916     case AVMEDIA_TYPE_VIDEO:
1917         print_int("width",                  frame->width);
1918         print_int("height",                 frame->height);
1919         s = av_get_pix_fmt_name(frame->format);
1920         if (s) print_str    ("pix_fmt", s);
1921         else   print_str_opt("pix_fmt", "unknown");
1922         sar = av_guess_sample_aspect_ratio(fmt_ctx, stream, frame);
1923         if (sar.num) {
1924             print_q("sample_aspect_ratio", sar, ':');
1925         } else {
1926             print_str_opt("sample_aspect_ratio", "N/A");
1927         }
1928         print_fmt("pict_type",              "%c", av_get_picture_type_char(frame->pict_type));
1929         print_int("coded_picture_number",   frame->coded_picture_number);
1930         print_int("display_picture_number", frame->display_picture_number);
1931         print_int("interlaced_frame",       frame->interlaced_frame);
1932         print_int("top_field_first",        frame->top_field_first);
1933         print_int("repeat_pict",            frame->repeat_pict);
1934         break;
1935
1936     case AVMEDIA_TYPE_AUDIO:
1937         s = av_get_sample_fmt_name(frame->format);
1938         if (s) print_str    ("sample_fmt", s);
1939         else   print_str_opt("sample_fmt", "unknown");
1940         print_int("nb_samples",         frame->nb_samples);
1941         print_int("channels", av_frame_get_channels(frame));
1942         if (av_frame_get_channel_layout(frame)) {
1943             av_bprint_clear(&pbuf);
1944             av_bprint_channel_layout(&pbuf, av_frame_get_channels(frame),
1945                                      av_frame_get_channel_layout(frame));
1946             print_str    ("channel_layout", pbuf.str);
1947         } else
1948             print_str_opt("channel_layout", "unknown");
1949         break;
1950     }
1951     if (do_show_frame_tags)
1952         show_tags(w, av_frame_get_metadata(frame), SECTION_ID_FRAME_TAGS);
1953     if (frame->nb_side_data) {
1954         writer_print_section_header(w, SECTION_ID_FRAME_SIDE_DATA_LIST);
1955         for (i = 0; i < frame->nb_side_data; i++) {
1956             AVFrameSideData *sd = frame->side_data[i];
1957             const char *name;
1958
1959             writer_print_section_header(w, SECTION_ID_FRAME_SIDE_DATA);
1960             name = av_frame_side_data_name(sd->type);
1961             print_str("side_data_type", name ? name : "unknown");
1962             print_int("side_data_size", sd->size);
1963             if (sd->type == AV_FRAME_DATA_DISPLAYMATRIX && sd->size >= 9*4) {
1964                 writer_print_integers(w, "displaymatrix", sd->data, 9, " %11d", 3, 4, 1);
1965                 print_int("rotation", av_display_rotation_get((int32_t *)sd->data));
1966             } else if (sd->type == AV_FRAME_DATA_GOP_TIMECODE && sd->size >= 8) {
1967                 char tcbuf[AV_TIMECODE_STR_SIZE];
1968                 av_timecode_make_mpeg_tc_string(tcbuf, *(int64_t *)(sd->data));
1969                 print_str("timecode", tcbuf);
1970             }
1971             writer_print_section_footer(w);
1972         }
1973         writer_print_section_footer(w);
1974     }
1975
1976     writer_print_section_footer(w);
1977
1978     av_bprint_finalize(&pbuf, NULL);
1979     fflush(stdout);
1980 }
1981
1982 static av_always_inline int process_frame(WriterContext *w,
1983                                           InputFile *ifile,
1984                                           AVFrame *frame, AVPacket *pkt)
1985 {
1986     AVFormatContext *fmt_ctx = ifile->fmt_ctx;
1987     AVCodecContext *dec_ctx = ifile->streams[pkt->stream_index].dec_ctx;
1988     AVCodecParameters *par = ifile->streams[pkt->stream_index].st->codecpar;
1989     AVSubtitle sub;
1990     int ret = 0, got_frame = 0;
1991
1992     if (dec_ctx && dec_ctx->codec) {
1993         switch (par->codec_type) {
1994         case AVMEDIA_TYPE_VIDEO:
1995             ret = avcodec_decode_video2(dec_ctx, frame, &got_frame, pkt);
1996             break;
1997
1998         case AVMEDIA_TYPE_AUDIO:
1999             ret = avcodec_decode_audio4(dec_ctx, frame, &got_frame, pkt);
2000             break;
2001
2002         case AVMEDIA_TYPE_SUBTITLE:
2003             ret = avcodec_decode_subtitle2(dec_ctx, &sub, &got_frame, pkt);
2004             break;
2005         }
2006     }
2007
2008     if (ret < 0)
2009         return ret;
2010     ret = FFMIN(ret, pkt->size); /* guard against bogus return values */
2011     pkt->data += ret;
2012     pkt->size -= ret;
2013     if (got_frame) {
2014         int is_sub = (par->codec_type == AVMEDIA_TYPE_SUBTITLE);
2015         nb_streams_frames[pkt->stream_index]++;
2016         if (do_show_frames)
2017             if (is_sub)
2018                 show_subtitle(w, &sub, ifile->streams[pkt->stream_index].st, fmt_ctx);
2019             else
2020                 show_frame(w, frame, ifile->streams[pkt->stream_index].st, fmt_ctx);
2021         if (is_sub)
2022             avsubtitle_free(&sub);
2023     }
2024     return got_frame;
2025 }
2026
2027 static void log_read_interval(const ReadInterval *interval, void *log_ctx, int log_level)
2028 {
2029     av_log(log_ctx, log_level, "id:%d", interval->id);
2030
2031     if (interval->has_start) {
2032         av_log(log_ctx, log_level, " start:%s%s", interval->start_is_offset ? "+" : "",
2033                av_ts2timestr(interval->start, &AV_TIME_BASE_Q));
2034     } else {
2035         av_log(log_ctx, log_level, " start:N/A");
2036     }
2037
2038     if (interval->has_end) {
2039         av_log(log_ctx, log_level, " end:%s", interval->end_is_offset ? "+" : "");
2040         if (interval->duration_frames)
2041             av_log(log_ctx, log_level, "#%"PRId64, interval->end);
2042         else
2043             av_log(log_ctx, log_level, "%s", av_ts2timestr(interval->end, &AV_TIME_BASE_Q));
2044     } else {
2045         av_log(log_ctx, log_level, " end:N/A");
2046     }
2047
2048     av_log(log_ctx, log_level, "\n");
2049 }
2050
2051 static int read_interval_packets(WriterContext *w, InputFile *ifile,
2052                                  const ReadInterval *interval, int64_t *cur_ts)
2053 {
2054     AVFormatContext *fmt_ctx = ifile->fmt_ctx;
2055     AVPacket pkt, pkt1;
2056     AVFrame *frame = NULL;
2057     int ret = 0, i = 0, frame_count = 0;
2058     int64_t start = -INT64_MAX, end = interval->end;
2059     int has_start = 0, has_end = interval->has_end && !interval->end_is_offset;
2060
2061     av_init_packet(&pkt);
2062
2063     av_log(NULL, AV_LOG_VERBOSE, "Processing read interval ");
2064     log_read_interval(interval, NULL, AV_LOG_VERBOSE);
2065
2066     if (interval->has_start) {
2067         int64_t target;
2068         if (interval->start_is_offset) {
2069             if (*cur_ts == AV_NOPTS_VALUE) {
2070                 av_log(NULL, AV_LOG_ERROR,
2071                        "Could not seek to relative position since current "
2072                        "timestamp is not defined\n");
2073                 ret = AVERROR(EINVAL);
2074                 goto end;
2075             }
2076             target = *cur_ts + interval->start;
2077         } else {
2078             target = interval->start;
2079         }
2080
2081         av_log(NULL, AV_LOG_VERBOSE, "Seeking to read interval start point %s\n",
2082                av_ts2timestr(target, &AV_TIME_BASE_Q));
2083         if ((ret = avformat_seek_file(fmt_ctx, -1, -INT64_MAX, target, INT64_MAX, 0)) < 0) {
2084             av_log(NULL, AV_LOG_ERROR, "Could not seek to position %"PRId64": %s\n",
2085                    interval->start, av_err2str(ret));
2086             goto end;
2087         }
2088     }
2089
2090     frame = av_frame_alloc();
2091     if (!frame) {
2092         ret = AVERROR(ENOMEM);
2093         goto end;
2094     }
2095     while (!av_read_frame(fmt_ctx, &pkt)) {
2096         if (ifile->nb_streams > nb_streams) {
2097             REALLOCZ_ARRAY_STREAM(nb_streams_frames,  nb_streams, fmt_ctx->nb_streams);
2098             REALLOCZ_ARRAY_STREAM(nb_streams_packets, nb_streams, fmt_ctx->nb_streams);
2099             REALLOCZ_ARRAY_STREAM(selected_streams,   nb_streams, fmt_ctx->nb_streams);
2100             nb_streams = ifile->nb_streams;
2101         }
2102         if (selected_streams[pkt.stream_index]) {
2103             AVRational tb = ifile->streams[pkt.stream_index].st->time_base;
2104
2105             if (pkt.pts != AV_NOPTS_VALUE)
2106                 *cur_ts = av_rescale_q(pkt.pts, tb, AV_TIME_BASE_Q);
2107
2108             if (!has_start && *cur_ts != AV_NOPTS_VALUE) {
2109                 start = *cur_ts;
2110                 has_start = 1;
2111             }
2112
2113             if (has_start && !has_end && interval->end_is_offset) {
2114                 end = start + interval->end;
2115                 has_end = 1;
2116             }
2117
2118             if (interval->end_is_offset && interval->duration_frames) {
2119                 if (frame_count >= interval->end)
2120                     break;
2121             } else if (has_end && *cur_ts != AV_NOPTS_VALUE && *cur_ts >= end) {
2122                 break;
2123             }
2124
2125             frame_count++;
2126             if (do_read_packets) {
2127                 if (do_show_packets)
2128                     show_packet(w, ifile, &pkt, i++);
2129                 nb_streams_packets[pkt.stream_index]++;
2130             }
2131             if (do_read_frames) {
2132                 pkt1 = pkt;
2133                 while (pkt1.size && process_frame(w, ifile, frame, &pkt1) > 0);
2134             }
2135         }
2136         av_packet_unref(&pkt);
2137     }
2138     av_init_packet(&pkt);
2139     pkt.data = NULL;
2140     pkt.size = 0;
2141     //Flush remaining frames that are cached in the decoder
2142     for (i = 0; i < fmt_ctx->nb_streams; i++) {
2143         pkt.stream_index = i;
2144         if (do_read_frames)
2145             while (process_frame(w, ifile, frame, &pkt) > 0);
2146     }
2147
2148 end:
2149     av_frame_free(&frame);
2150     if (ret < 0) {
2151         av_log(NULL, AV_LOG_ERROR, "Could not read packets in interval ");
2152         log_read_interval(interval, NULL, AV_LOG_ERROR);
2153     }
2154     return ret;
2155 }
2156
2157 static int read_packets(WriterContext *w, InputFile *ifile)
2158 {
2159     AVFormatContext *fmt_ctx = ifile->fmt_ctx;
2160     int i, ret = 0;
2161     int64_t cur_ts = fmt_ctx->start_time;
2162
2163     if (read_intervals_nb == 0) {
2164         ReadInterval interval = (ReadInterval) { .has_start = 0, .has_end = 0 };
2165         ret = read_interval_packets(w, ifile, &interval, &cur_ts);
2166     } else {
2167         for (i = 0; i < read_intervals_nb; i++) {
2168             ret = read_interval_packets(w, ifile, &read_intervals[i], &cur_ts);
2169             if (ret < 0)
2170                 break;
2171         }
2172     }
2173
2174     return ret;
2175 }
2176
2177 static int show_stream(WriterContext *w, AVFormatContext *fmt_ctx, int stream_idx, InputStream *ist, int in_program)
2178 {
2179     AVStream *stream = ist->st;
2180     AVCodecParameters *par;
2181     AVCodecContext *dec_ctx;
2182     char val_str[128];
2183     const char *s;
2184     AVRational sar, dar;
2185     AVBPrint pbuf;
2186     const AVCodecDescriptor *cd;
2187     int ret = 0;
2188     const char *profile = NULL;
2189
2190     av_bprint_init(&pbuf, 1, AV_BPRINT_SIZE_UNLIMITED);
2191
2192     writer_print_section_header(w, in_program ? SECTION_ID_PROGRAM_STREAM : SECTION_ID_STREAM);
2193
2194     print_int("index", stream->index);
2195
2196     par     = stream->codecpar;
2197     dec_ctx = ist->dec_ctx;
2198     if (cd = avcodec_descriptor_get(par->codec_id)) {
2199         print_str("codec_name", cd->name);
2200         if (!do_bitexact) {
2201             print_str("codec_long_name",
2202                       cd->long_name ? cd->long_name : "unknown");
2203         }
2204     } else {
2205         print_str_opt("codec_name", "unknown");
2206         if (!do_bitexact) {
2207             print_str_opt("codec_long_name", "unknown");
2208         }
2209     }
2210
2211     if (!do_bitexact && (profile = avcodec_profile_name(par->codec_id, par->profile)))
2212         print_str("profile", profile);
2213     else {
2214         if (par->profile != FF_PROFILE_UNKNOWN) {
2215             char profile_num[12];
2216             snprintf(profile_num, sizeof(profile_num), "%d", par->profile);
2217             print_str("profile", profile_num);
2218         } else
2219             print_str_opt("profile", "unknown");
2220     }
2221
2222     s = av_get_media_type_string(par->codec_type);
2223     if (s) print_str    ("codec_type", s);
2224     else   print_str_opt("codec_type", "unknown");
2225 #if FF_API_LAVF_AVCTX
2226     if (dec_ctx)
2227         print_q("codec_time_base", dec_ctx->time_base, '/');
2228 #endif
2229
2230     /* print AVI/FourCC tag */
2231     av_get_codec_tag_string(val_str, sizeof(val_str), par->codec_tag);
2232     print_str("codec_tag_string",    val_str);
2233     print_fmt("codec_tag", "0x%04x", par->codec_tag);
2234
2235     switch (par->codec_type) {
2236     case AVMEDIA_TYPE_VIDEO:
2237         print_int("width",        par->width);
2238         print_int("height",       par->height);
2239         if (dec_ctx) {
2240             print_int("coded_width",  dec_ctx->coded_width);
2241             print_int("coded_height", dec_ctx->coded_height);
2242         }
2243         print_int("has_b_frames", par->video_delay);
2244         sar = av_guess_sample_aspect_ratio(fmt_ctx, stream, NULL);
2245         if (sar.den) {
2246             print_q("sample_aspect_ratio", sar, ':');
2247             av_reduce(&dar.num, &dar.den,
2248                       par->width  * sar.num,
2249                       par->height * sar.den,
2250                       1024*1024);
2251             print_q("display_aspect_ratio", dar, ':');
2252         } else {
2253             print_str_opt("sample_aspect_ratio", "N/A");
2254             print_str_opt("display_aspect_ratio", "N/A");
2255         }
2256         s = av_get_pix_fmt_name(par->format);
2257         if (s) print_str    ("pix_fmt", s);
2258         else   print_str_opt("pix_fmt", "unknown");
2259         print_int("level",   par->level);
2260         if (par->color_range != AVCOL_RANGE_UNSPECIFIED)
2261             print_str    ("color_range", av_color_range_name(par->color_range));
2262         else
2263             print_str_opt("color_range", "N/A");
2264
2265         s = av_get_colorspace_name(par->color_space);
2266         if (s) print_str    ("color_space", s);
2267         else   print_str_opt("color_space", "unknown");
2268
2269         if (par->color_trc != AVCOL_TRC_UNSPECIFIED)
2270             print_str("color_transfer", av_color_transfer_name(par->color_trc));
2271         else
2272             print_str_opt("color_transfer", av_color_transfer_name(par->color_trc));
2273
2274         if (par->color_primaries != AVCOL_PRI_UNSPECIFIED)
2275             print_str("color_primaries", av_color_primaries_name(par->color_primaries));
2276         else
2277             print_str_opt("color_primaries", av_color_primaries_name(par->color_primaries));
2278
2279         if (par->chroma_location != AVCHROMA_LOC_UNSPECIFIED)
2280             print_str("chroma_location", av_chroma_location_name(par->chroma_location));
2281         else
2282             print_str_opt("chroma_location", av_chroma_location_name(par->chroma_location));
2283
2284         if (par->field_order == AV_FIELD_PROGRESSIVE)
2285             print_str("field_order", "progressive");
2286         else if (par->field_order == AV_FIELD_TT)
2287             print_str("field_order", "tt");
2288         else if (par->field_order == AV_FIELD_BB)
2289             print_str("field_order", "bb");
2290         else if (par->field_order == AV_FIELD_TB)
2291             print_str("field_order", "tb");
2292         else if (par->field_order == AV_FIELD_BT)
2293             print_str("field_order", "bt");
2294         else
2295             print_str_opt("field_order", "unknown");
2296
2297 #if FF_API_PRIVATE_OPT
2298         if (dec_ctx && dec_ctx->timecode_frame_start >= 0) {
2299             char tcbuf[AV_TIMECODE_STR_SIZE];
2300             av_timecode_make_mpeg_tc_string(tcbuf, dec_ctx->timecode_frame_start);
2301             print_str("timecode", tcbuf);
2302         } else {
2303             print_str_opt("timecode", "N/A");
2304         }
2305 #endif
2306         if (dec_ctx)
2307             print_int("refs", dec_ctx->refs);
2308         break;
2309
2310     case AVMEDIA_TYPE_AUDIO:
2311         s = av_get_sample_fmt_name(par->format);
2312         if (s) print_str    ("sample_fmt", s);
2313         else   print_str_opt("sample_fmt", "unknown");
2314         print_val("sample_rate",     par->sample_rate, unit_hertz_str);
2315         print_int("channels",        par->channels);
2316
2317         if (par->channel_layout) {
2318             av_bprint_clear(&pbuf);
2319             av_bprint_channel_layout(&pbuf, par->channels, par->channel_layout);
2320             print_str    ("channel_layout", pbuf.str);
2321         } else {
2322             print_str_opt("channel_layout", "unknown");
2323         }
2324
2325         print_int("bits_per_sample", av_get_bits_per_sample(par->codec_id));
2326         break;
2327
2328     case AVMEDIA_TYPE_SUBTITLE:
2329         if (par->width)
2330             print_int("width",       par->width);
2331         else
2332             print_str_opt("width",   "N/A");
2333         if (par->height)
2334             print_int("height",      par->height);
2335         else
2336             print_str_opt("height",  "N/A");
2337         break;
2338     }
2339
2340     if (dec_ctx && dec_ctx->codec && dec_ctx->codec->priv_class && show_private_data) {
2341         const AVOption *opt = NULL;
2342         while (opt = av_opt_next(dec_ctx->priv_data,opt)) {
2343             uint8_t *str;
2344             if (opt->flags) continue;
2345             if (av_opt_get(dec_ctx->priv_data, opt->name, 0, &str) >= 0) {
2346                 print_str(opt->name, str);
2347                 av_free(str);
2348             }
2349         }
2350     }
2351
2352     if (fmt_ctx->iformat->flags & AVFMT_SHOW_IDS) print_fmt    ("id", "0x%x", stream->id);
2353     else                                          print_str_opt("id", "N/A");
2354     print_q("r_frame_rate",   stream->r_frame_rate,   '/');
2355     print_q("avg_frame_rate", stream->avg_frame_rate, '/');
2356     print_q("time_base",      stream->time_base,      '/');
2357     print_ts  ("start_pts",   stream->start_time);
2358     print_time("start_time",  stream->start_time, &stream->time_base);
2359     print_ts  ("duration_ts", stream->duration);
2360     print_time("duration",    stream->duration, &stream->time_base);
2361     if (par->bit_rate > 0)     print_val    ("bit_rate", par->bit_rate, unit_bit_per_second_str);
2362     else                       print_str_opt("bit_rate", "N/A");
2363 #if FF_API_LAVF_AVCTX
2364     if (stream->codec->rc_max_rate > 0) print_val ("max_bit_rate", stream->codec->rc_max_rate, unit_bit_per_second_str);
2365     else                                print_str_opt("max_bit_rate", "N/A");
2366 #endif
2367     if (dec_ctx && dec_ctx->bits_per_raw_sample > 0) print_fmt("bits_per_raw_sample", "%d", dec_ctx->bits_per_raw_sample);
2368     else                                             print_str_opt("bits_per_raw_sample", "N/A");
2369     if (stream->nb_frames) print_fmt    ("nb_frames", "%"PRId64, stream->nb_frames);
2370     else                   print_str_opt("nb_frames", "N/A");
2371     if (nb_streams_frames[stream_idx])  print_fmt    ("nb_read_frames", "%"PRIu64, nb_streams_frames[stream_idx]);
2372     else                                print_str_opt("nb_read_frames", "N/A");
2373     if (nb_streams_packets[stream_idx]) print_fmt    ("nb_read_packets", "%"PRIu64, nb_streams_packets[stream_idx]);
2374     else                                print_str_opt("nb_read_packets", "N/A");
2375     if (do_show_data)
2376         writer_print_data(w, "extradata", par->extradata,
2377                                           par->extradata_size);
2378     writer_print_data_hash(w, "extradata_hash", par->extradata,
2379                                                 par->extradata_size);
2380
2381     /* Print disposition information */
2382 #define PRINT_DISPOSITION(flagname, name) do {                                \
2383         print_int(name, !!(stream->disposition & AV_DISPOSITION_##flagname)); \
2384     } while (0)
2385
2386     if (do_show_stream_disposition) {
2387     writer_print_section_header(w, in_program ? SECTION_ID_PROGRAM_STREAM_DISPOSITION : SECTION_ID_STREAM_DISPOSITION);
2388     PRINT_DISPOSITION(DEFAULT,          "default");
2389     PRINT_DISPOSITION(DUB,              "dub");
2390     PRINT_DISPOSITION(ORIGINAL,         "original");
2391     PRINT_DISPOSITION(COMMENT,          "comment");
2392     PRINT_DISPOSITION(LYRICS,           "lyrics");
2393     PRINT_DISPOSITION(KARAOKE,          "karaoke");
2394     PRINT_DISPOSITION(FORCED,           "forced");
2395     PRINT_DISPOSITION(HEARING_IMPAIRED, "hearing_impaired");
2396     PRINT_DISPOSITION(VISUAL_IMPAIRED,  "visual_impaired");
2397     PRINT_DISPOSITION(CLEAN_EFFECTS,    "clean_effects");
2398     PRINT_DISPOSITION(ATTACHED_PIC,     "attached_pic");
2399     PRINT_DISPOSITION(TIMED_THUMBNAILS, "timed_thumbnails");
2400     writer_print_section_footer(w);
2401     }
2402
2403     if (do_show_stream_tags)
2404         ret = show_tags(w, stream->metadata, in_program ? SECTION_ID_PROGRAM_STREAM_TAGS : SECTION_ID_STREAM_TAGS);
2405
2406     if (stream->nb_side_data) {
2407         print_pkt_side_data(w, stream->side_data, stream->nb_side_data,
2408                             SECTION_ID_STREAM_SIDE_DATA_LIST,
2409                             SECTION_ID_STREAM_SIDE_DATA);
2410     }
2411
2412     writer_print_section_footer(w);
2413     av_bprint_finalize(&pbuf, NULL);
2414     fflush(stdout);
2415
2416     return ret;
2417 }
2418
2419 static int show_streams(WriterContext *w, InputFile *ifile)
2420 {
2421     AVFormatContext *fmt_ctx = ifile->fmt_ctx;
2422     int i, ret = 0;
2423
2424     writer_print_section_header(w, SECTION_ID_STREAMS);
2425     for (i = 0; i < ifile->nb_streams; i++)
2426         if (selected_streams[i]) {
2427             ret = show_stream(w, fmt_ctx, i, &ifile->streams[i], 0);
2428             if (ret < 0)
2429                 break;
2430         }
2431     writer_print_section_footer(w);
2432
2433     return ret;
2434 }
2435
2436 static int show_program(WriterContext *w, InputFile *ifile, AVProgram *program)
2437 {
2438     AVFormatContext *fmt_ctx = ifile->fmt_ctx;
2439     int i, ret = 0;
2440
2441     writer_print_section_header(w, SECTION_ID_PROGRAM);
2442     print_int("program_id", program->id);
2443     print_int("program_num", program->program_num);
2444     print_int("nb_streams", program->nb_stream_indexes);
2445     print_int("pmt_pid", program->pmt_pid);
2446     print_int("pcr_pid", program->pcr_pid);
2447     print_ts("start_pts", program->start_time);
2448     print_time("start_time", program->start_time, &AV_TIME_BASE_Q);
2449     print_ts("end_pts", program->end_time);
2450     print_time("end_time", program->end_time, &AV_TIME_BASE_Q);
2451     if (do_show_program_tags)
2452         ret = show_tags(w, program->metadata, SECTION_ID_PROGRAM_TAGS);
2453     if (ret < 0)
2454         goto end;
2455
2456     writer_print_section_header(w, SECTION_ID_PROGRAM_STREAMS);
2457     for (i = 0; i < program->nb_stream_indexes; i++) {
2458         if (selected_streams[program->stream_index[i]]) {
2459             ret = show_stream(w, fmt_ctx, program->stream_index[i], &ifile->streams[program->stream_index[i]], 1);
2460             if (ret < 0)
2461                 break;
2462         }
2463     }
2464     writer_print_section_footer(w);
2465
2466 end:
2467     writer_print_section_footer(w);
2468     return ret;
2469 }
2470
2471 static int show_programs(WriterContext *w, InputFile *ifile)
2472 {
2473     AVFormatContext *fmt_ctx = ifile->fmt_ctx;
2474     int i, ret = 0;
2475
2476     writer_print_section_header(w, SECTION_ID_PROGRAMS);
2477     for (i = 0; i < fmt_ctx->nb_programs; i++) {
2478         AVProgram *program = fmt_ctx->programs[i];
2479         if (!program)
2480             continue;
2481         ret = show_program(w, ifile, program);
2482         if (ret < 0)
2483             break;
2484     }
2485     writer_print_section_footer(w);
2486     return ret;
2487 }
2488
2489 static int show_chapters(WriterContext *w, InputFile *ifile)
2490 {
2491     AVFormatContext *fmt_ctx = ifile->fmt_ctx;
2492     int i, ret = 0;
2493
2494     writer_print_section_header(w, SECTION_ID_CHAPTERS);
2495     for (i = 0; i < fmt_ctx->nb_chapters; i++) {
2496         AVChapter *chapter = fmt_ctx->chapters[i];
2497
2498         writer_print_section_header(w, SECTION_ID_CHAPTER);
2499         print_int("id", chapter->id);
2500         print_q  ("time_base", chapter->time_base, '/');
2501         print_int("start", chapter->start);
2502         print_time("start_time", chapter->start, &chapter->time_base);
2503         print_int("end", chapter->end);
2504         print_time("end_time", chapter->end, &chapter->time_base);
2505         if (do_show_chapter_tags)
2506             ret = show_tags(w, chapter->metadata, SECTION_ID_CHAPTER_TAGS);
2507         writer_print_section_footer(w);
2508     }
2509     writer_print_section_footer(w);
2510
2511     return ret;
2512 }
2513
2514 static int show_format(WriterContext *w, InputFile *ifile)
2515 {
2516     AVFormatContext *fmt_ctx = ifile->fmt_ctx;
2517     char val_str[128];
2518     int64_t size = fmt_ctx->pb ? avio_size(fmt_ctx->pb) : -1;
2519     int ret = 0;
2520
2521     writer_print_section_header(w, SECTION_ID_FORMAT);
2522     print_str_validate("filename", fmt_ctx->filename);
2523     print_int("nb_streams",       fmt_ctx->nb_streams);
2524     print_int("nb_programs",      fmt_ctx->nb_programs);
2525     print_str("format_name",      fmt_ctx->iformat->name);
2526     if (!do_bitexact) {
2527         if (fmt_ctx->iformat->long_name) print_str    ("format_long_name", fmt_ctx->iformat->long_name);
2528         else                             print_str_opt("format_long_name", "unknown");
2529     }
2530     print_time("start_time",      fmt_ctx->start_time, &AV_TIME_BASE_Q);
2531     print_time("duration",        fmt_ctx->duration,   &AV_TIME_BASE_Q);
2532     if (size >= 0) print_val    ("size", size, unit_byte_str);
2533     else           print_str_opt("size", "N/A");
2534     if (fmt_ctx->bit_rate > 0) print_val    ("bit_rate", fmt_ctx->bit_rate, unit_bit_per_second_str);
2535     else                       print_str_opt("bit_rate", "N/A");
2536     print_int("probe_score", av_format_get_probe_score(fmt_ctx));
2537     if (do_show_format_tags)
2538         ret = show_tags(w, fmt_ctx->metadata, SECTION_ID_FORMAT_TAGS);
2539
2540     writer_print_section_footer(w);
2541     fflush(stdout);
2542     return ret;
2543 }
2544
2545 static void show_error(WriterContext *w, int err)
2546 {
2547     char errbuf[128];
2548     const char *errbuf_ptr = errbuf;
2549
2550     if (av_strerror(err, errbuf, sizeof(errbuf)) < 0)
2551         errbuf_ptr = strerror(AVUNERROR(err));
2552
2553     writer_print_section_header(w, SECTION_ID_ERROR);
2554     print_int("code", err);
2555     print_str("string", errbuf_ptr);
2556     writer_print_section_footer(w);
2557 }
2558
2559 static int open_input_file(InputFile *ifile, const char *filename)
2560 {
2561     int err, i, orig_nb_streams;
2562     AVFormatContext *fmt_ctx = NULL;
2563     AVDictionaryEntry *t;
2564     AVDictionary **opts;
2565     int scan_all_pmts_set = 0;
2566
2567     if (!av_dict_get(format_opts, "scan_all_pmts", NULL, AV_DICT_MATCH_CASE)) {
2568         av_dict_set(&format_opts, "scan_all_pmts", "1", AV_DICT_DONT_OVERWRITE);
2569         scan_all_pmts_set = 1;
2570     }
2571     if ((err = avformat_open_input(&fmt_ctx, filename,
2572                                    iformat, &format_opts)) < 0) {
2573         print_error(filename, err);
2574         return err;
2575     }
2576     ifile->fmt_ctx = fmt_ctx;
2577     if (scan_all_pmts_set)
2578         av_dict_set(&format_opts, "scan_all_pmts", NULL, AV_DICT_MATCH_CASE);
2579     if ((t = av_dict_get(format_opts, "", NULL, AV_DICT_IGNORE_SUFFIX))) {
2580         av_log(NULL, AV_LOG_ERROR, "Option %s not found.\n", t->key);
2581         return AVERROR_OPTION_NOT_FOUND;
2582     }
2583
2584     /* fill the streams in the format context */
2585     opts = setup_find_stream_info_opts(fmt_ctx, codec_opts);
2586     orig_nb_streams = fmt_ctx->nb_streams;
2587
2588     err = avformat_find_stream_info(fmt_ctx, opts);
2589
2590     for (i = 0; i < orig_nb_streams; i++)
2591         av_dict_free(&opts[i]);
2592     av_freep(&opts);
2593
2594     if (err < 0) {
2595         print_error(filename, err);
2596         return err;
2597     }
2598
2599     av_dump_format(fmt_ctx, 0, filename, 0);
2600
2601     ifile->streams = av_mallocz_array(fmt_ctx->nb_streams,
2602                                       sizeof(*ifile->streams));
2603     if (!ifile->streams)
2604         exit(1);
2605     ifile->nb_streams = fmt_ctx->nb_streams;
2606
2607     /* bind a decoder to each input stream */
2608     for (i = 0; i < fmt_ctx->nb_streams; i++) {
2609         InputStream *ist = &ifile->streams[i];
2610         AVStream *stream = fmt_ctx->streams[i];
2611         AVCodec *codec;
2612
2613         ist->st = stream;
2614
2615         if (stream->codecpar->codec_id == AV_CODEC_ID_PROBE) {
2616             av_log(NULL, AV_LOG_WARNING,
2617                    "Failed to probe codec for input stream %d\n",
2618                     stream->index);
2619             continue;
2620         }
2621
2622         codec = avcodec_find_decoder(stream->codecpar->codec_id);
2623         if (!codec) {
2624             av_log(NULL, AV_LOG_WARNING,
2625                     "Unsupported codec with id %d for input stream %d\n",
2626                     stream->codecpar->codec_id, stream->index);
2627             continue;
2628         }
2629         {
2630             AVDictionary *opts = filter_codec_opts(codec_opts, stream->codecpar->codec_id,
2631                                                    fmt_ctx, stream, codec);
2632
2633             ist->dec_ctx = avcodec_alloc_context3(codec);
2634             if (!ist->dec_ctx)
2635                 exit(1);
2636
2637             err = avcodec_parameters_to_context(ist->dec_ctx, stream->codecpar);
2638             if (err < 0)
2639                 exit(1);
2640
2641             av_codec_set_pkt_timebase(ist->dec_ctx, stream->time_base);
2642             ist->dec_ctx->framerate = stream->avg_frame_rate;
2643
2644             if (avcodec_open2(ist->dec_ctx, codec, &opts) < 0) {
2645                 av_log(NULL, AV_LOG_WARNING, "Could not open codec for input stream %d\n",
2646                        stream->index);
2647                 exit(1);
2648             }
2649
2650             if ((t = av_dict_get(opts, "", NULL, AV_DICT_IGNORE_SUFFIX))) {
2651                 av_log(NULL, AV_LOG_ERROR, "Option %s for input stream %d not found\n",
2652                        t->key, stream->index);
2653                 return AVERROR_OPTION_NOT_FOUND;
2654             }
2655         }
2656     }
2657
2658     ifile->fmt_ctx = fmt_ctx;
2659     return 0;
2660 }
2661
2662 static void close_input_file(InputFile *ifile)
2663 {
2664     int i;
2665
2666     /* close decoder for each stream */
2667     for (i = 0; i < ifile->nb_streams; i++)
2668         if (ifile->streams[i].st->codecpar->codec_id != AV_CODEC_ID_NONE)
2669             avcodec_free_context(&ifile->streams[i].dec_ctx);
2670
2671     av_freep(&ifile->streams);
2672     ifile->nb_streams = 0;
2673
2674     avformat_close_input(&ifile->fmt_ctx);
2675 }
2676
2677 static int probe_file(WriterContext *wctx, const char *filename)
2678 {
2679     InputFile ifile = { 0 };
2680     int ret, i;
2681     int section_id;
2682
2683     do_read_frames = do_show_frames || do_count_frames;
2684     do_read_packets = do_show_packets || do_count_packets;
2685
2686     ret = open_input_file(&ifile, filename);
2687     if (ret < 0)
2688         goto end;
2689
2690 #define CHECK_END if (ret < 0) goto end
2691
2692     nb_streams = ifile.fmt_ctx->nb_streams;
2693     REALLOCZ_ARRAY_STREAM(nb_streams_frames,0,ifile.fmt_ctx->nb_streams);
2694     REALLOCZ_ARRAY_STREAM(nb_streams_packets,0,ifile.fmt_ctx->nb_streams);
2695     REALLOCZ_ARRAY_STREAM(selected_streams,0,ifile.fmt_ctx->nb_streams);
2696
2697     for (i = 0; i < ifile.fmt_ctx->nb_streams; i++) {
2698         if (stream_specifier) {
2699             ret = avformat_match_stream_specifier(ifile.fmt_ctx,
2700                                                   ifile.fmt_ctx->streams[i],
2701                                                   stream_specifier);
2702             CHECK_END;
2703             else
2704                 selected_streams[i] = ret;
2705             ret = 0;
2706         } else {
2707             selected_streams[i] = 1;
2708         }
2709     }
2710
2711     if (do_read_frames || do_read_packets) {
2712         if (do_show_frames && do_show_packets &&
2713             wctx->writer->flags & WRITER_FLAG_PUT_PACKETS_AND_FRAMES_IN_SAME_CHAPTER)
2714             section_id = SECTION_ID_PACKETS_AND_FRAMES;
2715         else if (do_show_packets && !do_show_frames)
2716             section_id = SECTION_ID_PACKETS;
2717         else // (!do_show_packets && do_show_frames)
2718             section_id = SECTION_ID_FRAMES;
2719         if (do_show_frames || do_show_packets)
2720             writer_print_section_header(wctx, section_id);
2721         ret = read_packets(wctx, &ifile);
2722         if (do_show_frames || do_show_packets)
2723             writer_print_section_footer(wctx);
2724         CHECK_END;
2725     }
2726
2727     if (do_show_programs) {
2728         ret = show_programs(wctx, &ifile);
2729         CHECK_END;
2730     }
2731
2732     if (do_show_streams) {
2733         ret = show_streams(wctx, &ifile);
2734         CHECK_END;
2735     }
2736     if (do_show_chapters) {
2737         ret = show_chapters(wctx, &ifile);
2738         CHECK_END;
2739     }
2740     if (do_show_format) {
2741         ret = show_format(wctx, &ifile);
2742         CHECK_END;
2743     }
2744
2745 end:
2746     if (ifile.fmt_ctx)
2747         close_input_file(&ifile);
2748     av_freep(&nb_streams_frames);
2749     av_freep(&nb_streams_packets);
2750     av_freep(&selected_streams);
2751
2752     return ret;
2753 }
2754
2755 static void show_usage(void)
2756 {
2757     av_log(NULL, AV_LOG_INFO, "Simple multimedia streams analyzer\n");
2758     av_log(NULL, AV_LOG_INFO, "usage: %s [OPTIONS] [INPUT_FILE]\n", program_name);
2759     av_log(NULL, AV_LOG_INFO, "\n");
2760 }
2761
2762 static void ffprobe_show_program_version(WriterContext *w)
2763 {
2764     AVBPrint pbuf;
2765     av_bprint_init(&pbuf, 1, AV_BPRINT_SIZE_UNLIMITED);
2766
2767     writer_print_section_header(w, SECTION_ID_PROGRAM_VERSION);
2768     print_str("version", FFMPEG_VERSION);
2769     print_fmt("copyright", "Copyright (c) %d-%d the FFmpeg developers",
2770               program_birth_year, CONFIG_THIS_YEAR);
2771     print_str("compiler_ident", CC_IDENT);
2772     print_str("configuration", FFMPEG_CONFIGURATION);
2773     writer_print_section_footer(w);
2774
2775     av_bprint_finalize(&pbuf, NULL);
2776 }
2777
2778 #define SHOW_LIB_VERSION(libname, LIBNAME)                              \
2779     do {                                                                \
2780         if (CONFIG_##LIBNAME) {                                         \
2781             unsigned int version = libname##_version();                 \
2782             writer_print_section_header(w, SECTION_ID_LIBRARY_VERSION); \
2783             print_str("name",    "lib" #libname);                       \
2784             print_int("major",   LIB##LIBNAME##_VERSION_MAJOR);         \
2785             print_int("minor",   LIB##LIBNAME##_VERSION_MINOR);         \
2786             print_int("micro",   LIB##LIBNAME##_VERSION_MICRO);         \
2787             print_int("version", version);                              \
2788             print_str("ident",   LIB##LIBNAME##_IDENT);                 \
2789             writer_print_section_footer(w);                             \
2790         }                                                               \
2791     } while (0)
2792
2793 static void ffprobe_show_library_versions(WriterContext *w)
2794 {
2795     writer_print_section_header(w, SECTION_ID_LIBRARY_VERSIONS);
2796     SHOW_LIB_VERSION(avutil,     AVUTIL);
2797     SHOW_LIB_VERSION(avcodec,    AVCODEC);
2798     SHOW_LIB_VERSION(avformat,   AVFORMAT);
2799     SHOW_LIB_VERSION(avdevice,   AVDEVICE);
2800     SHOW_LIB_VERSION(avfilter,   AVFILTER);
2801     SHOW_LIB_VERSION(swscale,    SWSCALE);
2802     SHOW_LIB_VERSION(swresample, SWRESAMPLE);
2803     SHOW_LIB_VERSION(postproc,   POSTPROC);
2804     writer_print_section_footer(w);
2805 }
2806
2807 #define PRINT_PIX_FMT_FLAG(flagname, name)                                \
2808     do {                                                                  \
2809         print_int(name, !!(pixdesc->flags & AV_PIX_FMT_FLAG_##flagname)); \
2810     } while (0)
2811
2812 static void ffprobe_show_pixel_formats(WriterContext *w)
2813 {
2814     const AVPixFmtDescriptor *pixdesc = NULL;
2815     int i, n;
2816
2817     writer_print_section_header(w, SECTION_ID_PIXEL_FORMATS);
2818     while (pixdesc = av_pix_fmt_desc_next(pixdesc)) {
2819         writer_print_section_header(w, SECTION_ID_PIXEL_FORMAT);
2820         print_str("name", pixdesc->name);
2821         print_int("nb_components", pixdesc->nb_components);
2822         if ((pixdesc->nb_components >= 3) && !(pixdesc->flags & AV_PIX_FMT_FLAG_RGB)) {
2823             print_int    ("log2_chroma_w", pixdesc->log2_chroma_w);
2824             print_int    ("log2_chroma_h", pixdesc->log2_chroma_h);
2825         } else {
2826             print_str_opt("log2_chroma_w", "N/A");
2827             print_str_opt("log2_chroma_h", "N/A");
2828         }
2829         n = av_get_bits_per_pixel(pixdesc);
2830         if (n) print_int    ("bits_per_pixel", n);
2831         else   print_str_opt("bits_per_pixel", "N/A");
2832         if (do_show_pixel_format_flags) {
2833             writer_print_section_header(w, SECTION_ID_PIXEL_FORMAT_FLAGS);
2834             PRINT_PIX_FMT_FLAG(BE,        "big_endian");
2835             PRINT_PIX_FMT_FLAG(PAL,       "palette");
2836             PRINT_PIX_FMT_FLAG(BITSTREAM, "bitstream");
2837             PRINT_PIX_FMT_FLAG(HWACCEL,   "hwaccel");
2838             PRINT_PIX_FMT_FLAG(PLANAR,    "planar");
2839             PRINT_PIX_FMT_FLAG(RGB,       "rgb");
2840             PRINT_PIX_FMT_FLAG(PSEUDOPAL, "pseudopal");
2841             PRINT_PIX_FMT_FLAG(ALPHA,     "alpha");
2842             writer_print_section_footer(w);
2843         }
2844         if (do_show_pixel_format_components && (pixdesc->nb_components > 0)) {
2845             writer_print_section_header(w, SECTION_ID_PIXEL_FORMAT_COMPONENTS);
2846             for (i = 0; i < pixdesc->nb_components; i++) {
2847                 writer_print_section_header(w, SECTION_ID_PIXEL_FORMAT_COMPONENT);
2848                 print_int("index", i + 1);
2849                 print_int("bit_depth", pixdesc->comp[i].depth);
2850                 writer_print_section_footer(w);
2851             }
2852             writer_print_section_footer(w);
2853         }
2854         writer_print_section_footer(w);
2855     }
2856     writer_print_section_footer(w);
2857 }
2858
2859 static int opt_format(void *optctx, const char *opt, const char *arg)
2860 {
2861     iformat = av_find_input_format(arg);
2862     if (!iformat) {
2863         av_log(NULL, AV_LOG_ERROR, "Unknown input format: %s\n", arg);
2864         return AVERROR(EINVAL);
2865     }
2866     return 0;
2867 }
2868
2869 static inline void mark_section_show_entries(SectionID section_id,
2870                                              int show_all_entries, AVDictionary *entries)
2871 {
2872     struct section *section = &sections[section_id];
2873
2874     section->show_all_entries = show_all_entries;
2875     if (show_all_entries) {
2876         SectionID *id;
2877         for (id = section->children_ids; *id != -1; id++)
2878             mark_section_show_entries(*id, show_all_entries, entries);
2879     } else {
2880         av_dict_copy(&section->entries_to_show, entries, 0);
2881     }
2882 }
2883
2884 static int match_section(const char *section_name,
2885                          int show_all_entries, AVDictionary *entries)
2886 {
2887     int i, ret = 0;
2888
2889     for (i = 0; i < FF_ARRAY_ELEMS(sections); i++) {
2890         const struct section *section = &sections[i];
2891         if (!strcmp(section_name, section->name) ||
2892             (section->unique_name && !strcmp(section_name, section->unique_name))) {
2893             av_log(NULL, AV_LOG_DEBUG,
2894                    "'%s' matches section with unique name '%s'\n", section_name,
2895                    (char *)av_x_if_null(section->unique_name, section->name));
2896             ret++;
2897             mark_section_show_entries(section->id, show_all_entries, entries);
2898         }
2899     }
2900     return ret;
2901 }
2902
2903 static int opt_show_entries(void *optctx, const char *opt, const char *arg)
2904 {
2905     const char *p = arg;
2906     int ret = 0;
2907
2908     while (*p) {
2909         AVDictionary *entries = NULL;
2910         char *section_name = av_get_token(&p, "=:");
2911         int show_all_entries = 0;
2912
2913         if (!section_name) {
2914             av_log(NULL, AV_LOG_ERROR,
2915                    "Missing section name for option '%s'\n", opt);
2916             return AVERROR(EINVAL);
2917         }
2918
2919         if (*p == '=') {
2920             p++;
2921             while (*p && *p != ':') {
2922                 char *entry = av_get_token(&p, ",:");
2923                 if (!entry)
2924                     break;
2925                 av_log(NULL, AV_LOG_VERBOSE,
2926                        "Adding '%s' to the entries to show in section '%s'\n",
2927                        entry, section_name);
2928                 av_dict_set(&entries, entry, "", AV_DICT_DONT_STRDUP_KEY);
2929                 if (*p == ',')
2930                     p++;
2931             }
2932         } else {
2933             show_all_entries = 1;
2934         }
2935
2936         ret = match_section(section_name, show_all_entries, entries);
2937         if (ret == 0) {
2938             av_log(NULL, AV_LOG_ERROR, "No match for section '%s'\n", section_name);
2939             ret = AVERROR(EINVAL);
2940         }
2941         av_dict_free(&entries);
2942         av_free(section_name);
2943
2944         if (ret <= 0)
2945             break;
2946         if (*p)
2947             p++;
2948     }
2949
2950     return ret;
2951 }
2952
2953 static int opt_show_format_entry(void *optctx, const char *opt, const char *arg)
2954 {
2955     char *buf = av_asprintf("format=%s", arg);
2956     int ret;
2957
2958     if (!buf)
2959         return AVERROR(ENOMEM);
2960
2961     av_log(NULL, AV_LOG_WARNING,
2962            "Option '%s' is deprecated, use '-show_entries format=%s' instead\n",
2963            opt, arg);
2964     ret = opt_show_entries(optctx, opt, buf);
2965     av_free(buf);
2966     return ret;
2967 }
2968
2969 static void opt_input_file(void *optctx, const char *arg)
2970 {
2971     if (input_filename) {
2972         av_log(NULL, AV_LOG_ERROR,
2973                 "Argument '%s' provided as input filename, but '%s' was already specified.\n",
2974                 arg, input_filename);
2975         exit_program(1);
2976     }
2977     if (!strcmp(arg, "-"))
2978         arg = "pipe:";
2979     input_filename = arg;
2980 }
2981
2982 static int opt_input_file_i(void *optctx, const char *opt, const char *arg)
2983 {
2984     opt_input_file(optctx, arg);
2985     return 0;
2986 }
2987
2988 void show_help_default(const char *opt, const char *arg)
2989 {
2990     av_log_set_callback(log_callback_help);
2991     show_usage();
2992     show_help_options(options, "Main options:", 0, 0, 0);
2993     printf("\n");
2994
2995     show_help_children(avformat_get_class(), AV_OPT_FLAG_DECODING_PARAM);
2996 }
2997
2998 /**
2999  * Parse interval specification, according to the format:
3000  * INTERVAL ::= [START|+START_OFFSET][%[END|+END_OFFSET]]
3001  * INTERVALS ::= INTERVAL[,INTERVALS]
3002 */
3003 static int parse_read_interval(const char *interval_spec,
3004                                ReadInterval *interval)
3005 {
3006     int ret = 0;
3007     char *next, *p, *spec = av_strdup(interval_spec);
3008     if (!spec)
3009         return AVERROR(ENOMEM);
3010
3011     if (!*spec) {
3012         av_log(NULL, AV_LOG_ERROR, "Invalid empty interval specification\n");
3013         ret = AVERROR(EINVAL);
3014         goto end;
3015     }
3016
3017     p = spec;
3018     next = strchr(spec, '%');
3019     if (next)
3020         *next++ = 0;
3021
3022     /* parse first part */
3023     if (*p) {
3024         interval->has_start = 1;
3025
3026         if (*p == '+') {
3027             interval->start_is_offset = 1;
3028             p++;
3029         } else {
3030             interval->start_is_offset = 0;
3031         }
3032
3033         ret = av_parse_time(&interval->start, p, 1);
3034         if (ret < 0) {
3035             av_log(NULL, AV_LOG_ERROR, "Invalid interval start specification '%s'\n", p);
3036             goto end;
3037         }
3038     } else {
3039         interval->has_start = 0;
3040     }
3041
3042     /* parse second part */
3043     p = next;
3044     if (p && *p) {
3045         int64_t us;
3046         interval->has_end = 1;
3047
3048         if (*p == '+') {
3049             interval->end_is_offset = 1;
3050             p++;
3051         } else {
3052             interval->end_is_offset = 0;
3053         }
3054
3055         if (interval->end_is_offset && *p == '#') {
3056             long long int lli;
3057             char *tail;
3058             interval->duration_frames = 1;
3059             p++;
3060             lli = strtoll(p, &tail, 10);
3061             if (*tail || lli < 0) {
3062                 av_log(NULL, AV_LOG_ERROR,
3063                        "Invalid or negative value '%s' for duration number of frames\n", p);
3064                 goto end;
3065             }
3066             interval->end = lli;
3067         } else {
3068             ret = av_parse_time(&us, p, 1);
3069             if (ret < 0) {
3070                 av_log(NULL, AV_LOG_ERROR, "Invalid interval end/duration specification '%s'\n", p);
3071                 goto end;
3072             }
3073             interval->end = us;
3074         }
3075     } else {
3076         interval->has_end = 0;
3077     }
3078
3079 end:
3080     av_free(spec);
3081     return ret;
3082 }
3083
3084 static int parse_read_intervals(const char *intervals_spec)
3085 {
3086     int ret, n, i;
3087     char *p, *spec = av_strdup(intervals_spec);
3088     if (!spec)
3089         return AVERROR(ENOMEM);
3090
3091     /* preparse specification, get number of intervals */
3092     for (n = 0, p = spec; *p; p++)
3093         if (*p == ',')
3094             n++;
3095     n++;
3096
3097     read_intervals = av_malloc_array(n, sizeof(*read_intervals));
3098     if (!read_intervals) {
3099         ret = AVERROR(ENOMEM);
3100         goto end;
3101     }
3102     read_intervals_nb = n;
3103
3104     /* parse intervals */
3105     p = spec;
3106     for (i = 0; p; i++) {
3107         char *next;
3108
3109         av_assert0(i < read_intervals_nb);
3110         next = strchr(p, ',');
3111         if (next)
3112             *next++ = 0;
3113
3114         read_intervals[i].id = i;
3115         ret = parse_read_interval(p, &read_intervals[i]);
3116         if (ret < 0) {
3117             av_log(NULL, AV_LOG_ERROR, "Error parsing read interval #%d '%s'\n",
3118                    i, p);
3119             goto end;
3120         }
3121         av_log(NULL, AV_LOG_VERBOSE, "Parsed log interval ");
3122         log_read_interval(&read_intervals[i], NULL, AV_LOG_VERBOSE);
3123         p = next;
3124     }
3125     av_assert0(i == read_intervals_nb);
3126
3127 end:
3128     av_free(spec);
3129     return ret;
3130 }
3131
3132 static int opt_read_intervals(void *optctx, const char *opt, const char *arg)
3133 {
3134     return parse_read_intervals(arg);
3135 }
3136
3137 static int opt_pretty(void *optctx, const char *opt, const char *arg)
3138 {
3139     show_value_unit              = 1;
3140     use_value_prefix             = 1;
3141     use_byte_value_binary_prefix = 1;
3142     use_value_sexagesimal_format = 1;
3143     return 0;
3144 }
3145
3146 static void print_section(SectionID id, int level)
3147 {
3148     const SectionID *pid;
3149     const struct section *section = &sections[id];
3150     printf("%c%c%c",
3151            section->flags & SECTION_FLAG_IS_WRAPPER           ? 'W' : '.',
3152            section->flags & SECTION_FLAG_IS_ARRAY             ? 'A' : '.',
3153            section->flags & SECTION_FLAG_HAS_VARIABLE_FIELDS  ? 'V' : '.');
3154     printf("%*c  %s", level * 4, ' ', section->name);
3155     if (section->unique_name)
3156         printf("/%s", section->unique_name);
3157     printf("\n");
3158
3159     for (pid = section->children_ids; *pid != -1; pid++)
3160         print_section(*pid, level+1);
3161 }
3162
3163 static int opt_sections(void *optctx, const char *opt, const char *arg)
3164 {
3165     printf("Sections:\n"
3166            "W.. = Section is a wrapper (contains other sections, no local entries)\n"
3167            ".A. = Section contains an array of elements of the same type\n"
3168            "..V = Section may contain a variable number of fields with variable keys\n"
3169            "FLAGS NAME/UNIQUE_NAME\n"
3170            "---\n");
3171     print_section(SECTION_ID_ROOT, 0);
3172     return 0;
3173 }
3174
3175 static int opt_show_versions(const char *opt, const char *arg)
3176 {
3177     mark_section_show_entries(SECTION_ID_PROGRAM_VERSION, 1, NULL);
3178     mark_section_show_entries(SECTION_ID_LIBRARY_VERSION, 1, NULL);
3179     return 0;
3180 }
3181
3182 #define DEFINE_OPT_SHOW_SECTION(section, target_section_id)             \
3183     static int opt_show_##section(const char *opt, const char *arg)     \
3184     {                                                                   \
3185         mark_section_show_entries(SECTION_ID_##target_section_id, 1, NULL); \
3186         return 0;                                                       \
3187     }
3188
3189 DEFINE_OPT_SHOW_SECTION(chapters,         CHAPTERS)
3190 DEFINE_OPT_SHOW_SECTION(error,            ERROR)
3191 DEFINE_OPT_SHOW_SECTION(format,           FORMAT)
3192 DEFINE_OPT_SHOW_SECTION(frames,           FRAMES)
3193 DEFINE_OPT_SHOW_SECTION(library_versions, LIBRARY_VERSIONS)
3194 DEFINE_OPT_SHOW_SECTION(packets,          PACKETS)
3195 DEFINE_OPT_SHOW_SECTION(pixel_formats,    PIXEL_FORMATS)
3196 DEFINE_OPT_SHOW_SECTION(program_version,  PROGRAM_VERSION)
3197 DEFINE_OPT_SHOW_SECTION(streams,          STREAMS)
3198 DEFINE_OPT_SHOW_SECTION(programs,         PROGRAMS)
3199
3200 static const OptionDef real_options[] = {
3201 #include "cmdutils_common_opts.h"
3202     { "f", HAS_ARG, {.func_arg = opt_format}, "force format", "format" },
3203     { "unit", OPT_BOOL, {&show_value_unit}, "show unit of the displayed values" },
3204     { "prefix", OPT_BOOL, {&use_value_prefix}, "use SI prefixes for the displayed values" },
3205     { "byte_binary_prefix", OPT_BOOL, {&use_byte_value_binary_prefix},
3206       "use binary prefixes for byte units" },
3207     { "sexagesimal", OPT_BOOL,  {&use_value_sexagesimal_format},
3208       "use sexagesimal format HOURS:MM:SS.MICROSECONDS for time units" },
3209     { "pretty", 0, {.func_arg = opt_pretty},
3210       "prettify the format of displayed values, make it more human readable" },
3211     { "print_format", OPT_STRING | HAS_ARG, {(void*)&print_format},
3212       "set the output printing format (available formats are: default, compact, csv, flat, ini, json, xml)", "format" },
3213     { "of", OPT_STRING | HAS_ARG, {(void*)&print_format}, "alias for -print_format", "format" },
3214     { "select_streams", OPT_STRING | HAS_ARG, {(void*)&stream_specifier}, "select the specified streams", "stream_specifier" },
3215     { "sections", OPT_EXIT, {.func_arg = opt_sections}, "print sections structure and section information, and exit" },
3216     { "show_data",    OPT_BOOL, {(void*)&do_show_data}, "show packets data" },
3217     { "show_data_hash", OPT_STRING | HAS_ARG, {(void*)&show_data_hash}, "show packets data hash" },
3218     { "show_error",   0, {(void*)&opt_show_error},  "show probing error" },
3219     { "show_format",  0, {(void*)&opt_show_format}, "show format/container info" },
3220     { "show_frames",  0, {(void*)&opt_show_frames}, "show frames info" },
3221     { "show_format_entry", HAS_ARG, {.func_arg = opt_show_format_entry},
3222       "show a particular entry from the format/container info", "entry" },
3223     { "show_entries", HAS_ARG, {.func_arg = opt_show_entries},
3224       "show a set of specified entries", "entry_list" },
3225     { "show_packets", 0, {(void*)&opt_show_packets}, "show packets info" },
3226     { "show_programs", 0, {(void*)&opt_show_programs}, "show programs info" },
3227     { "show_streams", 0, {(void*)&opt_show_streams}, "show streams info" },
3228     { "show_chapters", 0, {(void*)&opt_show_chapters}, "show chapters info" },
3229     { "count_frames", OPT_BOOL, {(void*)&do_count_frames}, "count the number of frames per stream" },
3230     { "count_packets", OPT_BOOL, {(void*)&do_count_packets}, "count the number of packets per stream" },
3231     { "show_program_version",  0, {(void*)&opt_show_program_version},  "show ffprobe version" },
3232     { "show_library_versions", 0, {(void*)&opt_show_library_versions}, "show library versions" },
3233     { "show_versions",         0, {(void*)&opt_show_versions}, "show program and library versions" },
3234     { "show_pixel_formats", 0, {(void*)&opt_show_pixel_formats}, "show pixel format descriptions" },
3235     { "show_private_data", OPT_BOOL, {(void*)&show_private_data}, "show private data" },
3236     { "private",           OPT_BOOL, {(void*)&show_private_data}, "same as show_private_data" },
3237     { "bitexact", OPT_BOOL, {&do_bitexact}, "force bitexact output" },
3238     { "read_intervals", HAS_ARG, {.func_arg = opt_read_intervals}, "set read intervals", "read_intervals" },
3239     { "default", HAS_ARG | OPT_AUDIO | OPT_VIDEO | OPT_EXPERT, {.func_arg = opt_default}, "generic catch all option", "" },
3240     { "i", HAS_ARG, {.func_arg = opt_input_file_i}, "read specified file", "input_file"},
3241     { NULL, },
3242 };
3243
3244 static inline int check_section_show_entries(int section_id)
3245 {
3246     int *id;
3247     struct section *section = &sections[section_id];
3248     if (sections[section_id].show_all_entries || sections[section_id].entries_to_show)
3249         return 1;
3250     for (id = section->children_ids; *id != -1; id++)
3251         if (check_section_show_entries(*id))
3252             return 1;
3253     return 0;
3254 }
3255
3256 #define SET_DO_SHOW(id, varname) do {                                   \
3257         if (check_section_show_entries(SECTION_ID_##id))                \
3258             do_show_##varname = 1;                                      \
3259     } while (0)
3260
3261 int main(int argc, char **argv)
3262 {
3263     const Writer *w;
3264     WriterContext *wctx;
3265     char *buf;
3266     char *w_name = NULL, *w_args = NULL;
3267     int ret, i;
3268
3269     init_dynload();
3270
3271     av_log_set_flags(AV_LOG_SKIP_REPEATED);
3272     register_exit(ffprobe_cleanup);
3273
3274     options = real_options;
3275     parse_loglevel(argc, argv, options);
3276     av_register_all();
3277     avformat_network_init();
3278     init_opts();
3279 #if CONFIG_AVDEVICE
3280     avdevice_register_all();
3281 #endif
3282
3283     show_banner(argc, argv, options);
3284     parse_options(NULL, argc, argv, options, opt_input_file);
3285
3286     /* mark things to show, based on -show_entries */
3287     SET_DO_SHOW(CHAPTERS, chapters);
3288     SET_DO_SHOW(ERROR, error);
3289     SET_DO_SHOW(FORMAT, format);
3290     SET_DO_SHOW(FRAMES, frames);
3291     SET_DO_SHOW(LIBRARY_VERSIONS, library_versions);
3292     SET_DO_SHOW(PACKETS, packets);
3293     SET_DO_SHOW(PIXEL_FORMATS, pixel_formats);
3294     SET_DO_SHOW(PIXEL_FORMAT_FLAGS, pixel_format_flags);
3295     SET_DO_SHOW(PIXEL_FORMAT_COMPONENTS, pixel_format_components);
3296     SET_DO_SHOW(PROGRAM_VERSION, program_version);
3297     SET_DO_SHOW(PROGRAMS, programs);
3298     SET_DO_SHOW(STREAMS, streams);
3299     SET_DO_SHOW(STREAM_DISPOSITION, stream_disposition);
3300     SET_DO_SHOW(PROGRAM_STREAM_DISPOSITION, stream_disposition);
3301
3302     SET_DO_SHOW(CHAPTER_TAGS, chapter_tags);
3303     SET_DO_SHOW(FORMAT_TAGS, format_tags);
3304     SET_DO_SHOW(FRAME_TAGS, frame_tags);
3305     SET_DO_SHOW(PROGRAM_TAGS, program_tags);
3306     SET_DO_SHOW(STREAM_TAGS, stream_tags);
3307     SET_DO_SHOW(PROGRAM_STREAM_TAGS, stream_tags);
3308     SET_DO_SHOW(PACKET_TAGS, packet_tags);
3309
3310     if (do_bitexact && (do_show_program_version || do_show_library_versions)) {
3311         av_log(NULL, AV_LOG_ERROR,
3312                "-bitexact and -show_program_version or -show_library_versions "
3313                "options are incompatible\n");
3314         ret = AVERROR(EINVAL);
3315         goto end;
3316     }
3317
3318     writer_register_all();
3319
3320     if (!print_format)
3321         print_format = av_strdup("default");
3322     if (!print_format) {
3323         ret = AVERROR(ENOMEM);
3324         goto end;
3325     }
3326     w_name = av_strtok(print_format, "=", &buf);
3327     if (!w_name) {
3328         av_log(NULL, AV_LOG_ERROR,
3329                "No name specified for the output format\n");
3330         ret = AVERROR(EINVAL);
3331         goto end;
3332     }
3333     w_args = buf;
3334
3335     if (show_data_hash) {
3336         if ((ret = av_hash_alloc(&hash, show_data_hash)) < 0) {
3337             if (ret == AVERROR(EINVAL)) {
3338                 const char *n;
3339                 av_log(NULL, AV_LOG_ERROR,
3340                        "Unknown hash algorithm '%s'\nKnown algorithms:",
3341                        show_data_hash);
3342                 for (i = 0; (n = av_hash_names(i)); i++)
3343                     av_log(NULL, AV_LOG_ERROR, " %s", n);
3344                 av_log(NULL, AV_LOG_ERROR, "\n");
3345             }
3346             goto end;
3347         }
3348     }
3349
3350     w = writer_get_by_name(w_name);
3351     if (!w) {
3352         av_log(NULL, AV_LOG_ERROR, "Unknown output format with name '%s'\n", w_name);
3353         ret = AVERROR(EINVAL);
3354         goto end;
3355     }
3356
3357     if ((ret = writer_open(&wctx, w, w_args,
3358                            sections, FF_ARRAY_ELEMS(sections))) >= 0) {
3359         if (w == &xml_writer)
3360             wctx->string_validation_utf8_flags |= AV_UTF8_FLAG_EXCLUDE_XML_INVALID_CONTROL_CODES;
3361
3362         writer_print_section_header(wctx, SECTION_ID_ROOT);
3363
3364         if (do_show_program_version)
3365             ffprobe_show_program_version(wctx);
3366         if (do_show_library_versions)
3367             ffprobe_show_library_versions(wctx);
3368         if (do_show_pixel_formats)
3369             ffprobe_show_pixel_formats(wctx);
3370
3371         if (!input_filename &&
3372             ((do_show_format || do_show_programs || do_show_streams || do_show_chapters || do_show_packets || do_show_error) ||
3373              (!do_show_program_version && !do_show_library_versions && !do_show_pixel_formats))) {
3374             show_usage();
3375             av_log(NULL, AV_LOG_ERROR, "You have to specify one input file.\n");
3376             av_log(NULL, AV_LOG_ERROR, "Use -h to get full help or, even better, run 'man %s'.\n", program_name);
3377             ret = AVERROR(EINVAL);
3378         } else if (input_filename) {
3379             ret = probe_file(wctx, input_filename);
3380             if (ret < 0 && do_show_error)
3381                 show_error(wctx, ret);
3382         }
3383
3384         writer_print_section_footer(wctx);
3385         writer_close(&wctx);
3386     }
3387
3388 end:
3389     av_freep(&print_format);
3390     av_freep(&read_intervals);
3391     av_hash_freep(&hash);
3392
3393     uninit_opts();
3394     for (i = 0; i < FF_ARRAY_ELEMS(sections); i++)
3395         av_dict_free(&(sections[i].entries_to_show));
3396
3397     avformat_network_deinit();
3398
3399     return ret < 0;
3400 }