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