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