avprobe: fix formatting.
[platform/upstream/libav.git] / avprobe.c
1 /*
2  * avprobe : Simple Media Prober based on the Libav libraries
3  * Copyright (c) 2007-2010 Stefano Sabatini
4  *
5  * This file is part of Libav.
6  *
7  * Libav is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * Libav is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with Libav; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 #include "config.h"
23
24 #include "libavformat/avformat.h"
25 #include "libavcodec/avcodec.h"
26 #include "libavutil/opt.h"
27 #include "libavutil/pixdesc.h"
28 #include "libavutil/dict.h"
29 #include "libavdevice/avdevice.h"
30 #include "cmdutils.h"
31
32 const char program_name[] = "avprobe";
33 const int program_birth_year = 2007;
34
35 static int do_show_format  = 0;
36 static AVDictionary *fmt_entries_to_show = NULL;
37 static int nb_fmt_entries_to_show;
38 static int do_show_packets = 0;
39 static int do_show_streams = 0;
40
41 static int show_value_unit              = 0;
42 static int use_value_prefix             = 0;
43 static int use_byte_value_binary_prefix = 0;
44 static int use_value_sexagesimal_format = 0;
45
46 /* globals */
47 static const OptionDef options[];
48
49 /* AVprobe context */
50 static const char *input_filename;
51 static AVInputFormat *iformat = NULL;
52
53 static const char *const binary_unit_prefixes [] = { "", "Ki", "Mi", "Gi", "Ti", "Pi" };
54 static const char *const decimal_unit_prefixes[] = { "", "K" , "M" , "G" , "T" , "P"  };
55
56 static const char unit_second_str[]         = "s"    ;
57 static const char unit_hertz_str[]          = "Hz"   ;
58 static const char unit_byte_str[]           = "byte" ;
59 static const char unit_bit_per_second_str[] = "bit/s";
60
61 void exit_program(int ret)
62 {
63     av_dict_free(&fmt_entries_to_show);
64     exit(ret);
65 }
66
67 /*
68  * The output is structured in array and objects that might contain items
69  * Array could require the objects within to not be named.
70  * Object could require the items within to be named.
71  *
72  * For flat representation the name of each section is saved on prefix so it
73  * can be rendered in order to represent nested structures (e.g. array of
74  * objects for the packets list).
75  *
76  * Within an array each element can need an unique identifier or an index.
77  *
78  * Nesting level is accounted separately.
79  */
80
81 typedef enum {
82     ARRAY,
83     OBJECT
84 } ProbeElementType;
85
86 typedef struct {
87     const char *name;
88     ProbeElementType type;
89     int64_t index;
90     int64_t nb_elems;
91 } ProbeElement;
92
93 typedef struct {
94     ProbeElement *prefix;
95     int level;
96 } OutputContext;
97
98 static AVIOContext *probe_out = NULL;
99 static OutputContext octx;
100 #define AVP_INDENT() avio_printf(probe_out, "%*c", octx.level * 2, ' ')
101
102 /*
103  * Default format, INI
104  *
105  * - all key and values are utf8
106  * - '.' is the subgroup separator
107  * - newlines and the following characters are escaped
108  * - '\' is the escape character
109  * - '#' is the comment
110  * - '=' is the key/value separators
111  * - ':' is not used but usually parsed as key/value separator
112  */
113
114 static void ini_print_header(void)
115 {
116     avio_printf(probe_out, "# avprobe output\n\n");
117 }
118 static void ini_print_footer(void)
119 {
120     avio_w8(probe_out, '\n');
121 }
122
123 static void ini_escape_print(const char *s)
124 {
125     int i = 0;
126     char c = 0;
127
128     while (c = s[i++]) {
129         switch (c) {
130         case '\r': avio_printf(probe_out, "%s", "\\r"); break;
131         case '\n': avio_printf(probe_out, "%s", "\\n"); break;
132         case '\f': avio_printf(probe_out, "%s", "\\f"); break;
133         case '\b': avio_printf(probe_out, "%s", "\\b"); break;
134         case '\t': avio_printf(probe_out, "%s", "\\t"); break;
135         case '\\':
136         case '#' :
137         case '=' :
138         case ':' : avio_w8(probe_out, '\\');
139         default:
140             if ((unsigned char)c < 32)
141                 avio_printf(probe_out, "\\x00%02x", c & 0xff);
142             else
143                 avio_w8(probe_out, c);
144         break;
145         }
146     }
147 }
148
149 static void ini_print_array_header(const char *name)
150 {
151     if (octx.prefix[octx.level -1].nb_elems)
152         avio_printf(probe_out, "\n");
153 }
154
155 static void ini_print_object_header(const char *name)
156 {
157     int i;
158     ProbeElement *el = octx.prefix + octx.level -1;
159
160     if (el->nb_elems)
161         avio_printf(probe_out, "\n");
162
163     avio_printf(probe_out, "[");
164
165     for (i = 1; i < octx.level; i++) {
166         el = octx.prefix + i;
167         avio_printf(probe_out, "%s.", el->name);
168         if (el->index >= 0)
169             avio_printf(probe_out, "%"PRId64".", el->index);
170     }
171
172     avio_printf(probe_out, "%s", name);
173     if (el && el->type == ARRAY)
174         avio_printf(probe_out, ".%"PRId64"", el->nb_elems);
175     avio_printf(probe_out, "]\n");
176 }
177
178 static void ini_print_integer(const char *key, int64_t value)
179 {
180     ini_escape_print(key);
181     avio_printf(probe_out, "=%"PRId64"\n", value);
182 }
183
184
185 static void ini_print_string(const char *key, const char *value)
186 {
187     ini_escape_print(key);
188     avio_printf(probe_out, "=");
189     ini_escape_print(value);
190     avio_w8(probe_out, '\n');
191 }
192
193 /*
194  * Alternate format, JSON
195  */
196
197 static void json_print_header(void)
198 {
199     avio_printf(probe_out, "{");
200 }
201 static void json_print_footer(void)
202 {
203     avio_printf(probe_out, "}\n");
204 }
205
206 static void json_print_array_header(const char *name)
207 {
208     if (octx.prefix[octx.level -1].nb_elems)
209         avio_printf(probe_out, ",\n");
210     AVP_INDENT();
211     avio_printf(probe_out, "\"%s\" : ", name);
212     avio_printf(probe_out, "[\n");
213 }
214
215 static void json_print_array_footer(const char *name)
216 {
217     avio_printf(probe_out, "\n");
218     AVP_INDENT();
219     avio_printf(probe_out, "]");
220 }
221
222 static void json_print_object_header(const char *name)
223 {
224     if (octx.prefix[octx.level -1].nb_elems)
225         avio_printf(probe_out, ",\n");
226     AVP_INDENT();
227     if (octx.prefix[octx.level -1].type == OBJECT)
228         avio_printf(probe_out, "\"%s\" : ", name);
229     avio_printf(probe_out, "{\n");
230 }
231
232 static void json_print_object_footer(const char *name)
233 {
234     avio_printf(probe_out, "\n");
235     AVP_INDENT();
236     avio_printf(probe_out, "}");
237 }
238
239 static void json_print_integer(const char *key, int64_t value)
240 {
241     if (octx.prefix[octx.level -1].nb_elems)
242         avio_printf(probe_out, ",\n");
243     AVP_INDENT();
244     avio_printf(probe_out, "\"%s\" : %"PRId64"", key, value);
245 }
246
247 static void json_escape_print(const char *s)
248 {
249     int i = 0;
250     char c = 0;
251
252     while (c = s[i++]) {
253         switch (c) {
254         case '\r': avio_printf(probe_out, "%s", "\\r"); break;
255         case '\n': avio_printf(probe_out, "%s", "\\n"); break;
256         case '\f': avio_printf(probe_out, "%s", "\\f"); break;
257         case '\b': avio_printf(probe_out, "%s", "\\b"); break;
258         case '\t': avio_printf(probe_out, "%s", "\\t"); break;
259         case '\\':
260         case '"' : avio_w8(probe_out, '\\');
261         default:
262             if ((unsigned char)c < 32)
263                 avio_printf(probe_out, "\\u00%02x", c & 0xff);
264             else
265                 avio_w8(probe_out, c);
266         break;
267         }
268     }
269 }
270
271 static void json_print_string(const char *key, const char *value)
272 {
273     if (octx.prefix[octx.level -1].nb_elems)
274         avio_printf(probe_out, ",\n");
275     AVP_INDENT();
276     avio_w8(probe_out, '\"');
277     json_escape_print(key);
278     avio_printf(probe_out, "\" : \"");
279     json_escape_print(value);
280     avio_w8(probe_out, '\"');
281 }
282
283 /*
284  * Simple Formatter for single entries.
285  */
286
287 static void show_format_entry_integer(const char *key, int64_t value)
288 {
289     if (key && av_dict_get(fmt_entries_to_show, key, NULL, 0)) {
290         if (nb_fmt_entries_to_show > 1)
291             avio_printf(probe_out, "%s=", key);
292         avio_printf(probe_out, "%"PRId64"\n", value);
293     }
294 }
295
296 static void show_format_entry_string(const char *key, const char *value)
297 {
298     if (key && av_dict_get(fmt_entries_to_show, key, NULL, 0)) {
299         if (nb_fmt_entries_to_show > 1)
300             avio_printf(probe_out, "%s=", key);
301         avio_printf(probe_out, "%s\n", value);
302     }
303 }
304
305
306 void (*print_header)(void) = ini_print_header;
307 void (*print_footer)(void) = ini_print_footer;
308
309 void (*print_array_header) (const char *name) = ini_print_array_header;
310 void (*print_array_footer) (const char *name);
311 void (*print_object_header)(const char *name) = ini_print_object_header;
312 void (*print_object_footer)(const char *name);
313
314 void (*print_integer) (const char *key, int64_t value)     = ini_print_integer;
315 void (*print_string)  (const char *key, const char *value) = ini_print_string;
316
317
318 static void probe_group_enter(const char *name, int type)
319 {
320     int64_t count = -1;
321
322     octx.prefix =
323         av_realloc(octx.prefix, sizeof(ProbeElement) * (octx.level + 1));
324
325     if (!octx.prefix || !name) {
326         fprintf(stderr, "Out of memory\n");
327         exit(1);
328     }
329
330     if (octx.level) {
331         ProbeElement *parent = octx.prefix + octx.level -1;
332         if (parent->type == ARRAY)
333             count = parent->nb_elems;
334         parent->nb_elems++;
335     }
336
337     octx.prefix[octx.level++] = (ProbeElement){name, type, count, 0};
338 }
339
340 static void probe_group_leave(void)
341 {
342     --octx.level;
343 }
344
345 static void probe_header(void)
346 {
347     if (print_header)
348         print_header();
349     probe_group_enter("root", OBJECT);
350 }
351
352 static void probe_footer(void)
353 {
354     if (print_footer)
355         print_footer();
356     probe_group_leave();
357 }
358
359
360 static void probe_array_header(const char *name)
361 {
362     if (print_array_header)
363         print_array_header(name);
364
365     probe_group_enter(name, ARRAY);
366 }
367
368 static void probe_array_footer(const char *name)
369 {
370     probe_group_leave();
371     if (print_array_footer)
372         print_array_footer(name);
373 }
374
375 static void probe_object_header(const char *name)
376 {
377     if (print_object_header)
378         print_object_header(name);
379
380     probe_group_enter(name, OBJECT);
381 }
382
383 static void probe_object_footer(const char *name)
384 {
385     probe_group_leave();
386     if (print_object_footer)
387         print_object_footer(name);
388 }
389
390 static void probe_int(const char *key, int64_t value)
391 {
392     print_integer(key, value);
393     octx.prefix[octx.level -1].nb_elems++;
394 }
395
396 static void probe_str(const char *key, const char *value)
397 {
398     print_string(key, value);
399     octx.prefix[octx.level -1].nb_elems++;
400 }
401
402 static void probe_dict(AVDictionary *dict, const char *name)
403 {
404     AVDictionaryEntry *entry = NULL;
405     if (!dict)
406         return;
407     probe_object_header(name);
408     while ((entry = av_dict_get(dict, "", entry, AV_DICT_IGNORE_SUFFIX))) {
409         probe_str(entry->key, entry->value);
410     }
411     probe_object_footer(name);
412 }
413
414 static char *value_string(char *buf, int buf_size, double val, const char *unit)
415 {
416     if (unit == unit_second_str && use_value_sexagesimal_format) {
417         double secs;
418         int hours, mins;
419         secs  = val;
420         mins  = (int)secs / 60;
421         secs  = secs - mins * 60;
422         hours = mins / 60;
423         mins %= 60;
424         snprintf(buf, buf_size, "%d:%02d:%09.6f", hours, mins, secs);
425     } else if (use_value_prefix) {
426         const char *prefix_string;
427         int index;
428
429         if (unit == unit_byte_str && use_byte_value_binary_prefix) {
430             index = (int) (log(val)/log(2)) / 10;
431             index = av_clip(index, 0, FF_ARRAY_ELEMS(binary_unit_prefixes) - 1);
432             val  /= pow(2, index * 10);
433             prefix_string = binary_unit_prefixes[index];
434         } else {
435             index = (int) (log10(val)) / 3;
436             index = av_clip(index, 0, FF_ARRAY_ELEMS(decimal_unit_prefixes) - 1);
437             val  /= pow(10, index * 3);
438             prefix_string = decimal_unit_prefixes[index];
439         }
440         snprintf(buf, buf_size, "%.*f%s%s",
441                  index ? 3 : 0, val,
442                  prefix_string,
443                  show_value_unit ? unit : "");
444     } else {
445         snprintf(buf, buf_size, "%f%s", val, show_value_unit ? unit : "");
446     }
447
448     return buf;
449 }
450
451 static char *time_value_string(char *buf, int buf_size, int64_t val,
452                                const AVRational *time_base)
453 {
454     if (val == AV_NOPTS_VALUE) {
455         snprintf(buf, buf_size, "N/A");
456     } else {
457         value_string(buf, buf_size, val * av_q2d(*time_base), unit_second_str);
458     }
459
460     return buf;
461 }
462
463 static char *ts_value_string(char *buf, int buf_size, int64_t ts)
464 {
465     if (ts == AV_NOPTS_VALUE) {
466         snprintf(buf, buf_size, "N/A");
467     } else {
468         snprintf(buf, buf_size, "%"PRId64, ts);
469     }
470
471     return buf;
472 }
473
474 static char *rational_string(char *buf, int buf_size, const char *sep,
475                              const AVRational *rat)
476 {
477     snprintf(buf, buf_size, "%d%s%d", rat->num, sep, rat->den);
478     return buf;
479 }
480
481 static char *tag_string(char *buf, int buf_size, int tag)
482 {
483     snprintf(buf, buf_size, "0x%04x", tag);
484     return buf;
485 }
486
487
488
489 static const char *media_type_string(enum AVMediaType media_type)
490 {
491     switch (media_type) {
492     case AVMEDIA_TYPE_VIDEO:      return "video";
493     case AVMEDIA_TYPE_AUDIO:      return "audio";
494     case AVMEDIA_TYPE_DATA:       return "data";
495     case AVMEDIA_TYPE_SUBTITLE:   return "subtitle";
496     case AVMEDIA_TYPE_ATTACHMENT: return "attachment";
497     default:                      return "unknown";
498     }
499 }
500
501 static void show_packet(AVFormatContext *fmt_ctx, AVPacket *pkt)
502 {
503     char val_str[128];
504     AVStream *st = fmt_ctx->streams[pkt->stream_index];
505
506     probe_object_header("packet");
507     probe_str("codec_type", media_type_string(st->codec->codec_type));
508     probe_int("stream_index", pkt->stream_index);
509     probe_str("pts", ts_value_string(val_str, sizeof(val_str), pkt->pts));
510     probe_str("pts_time", time_value_string(val_str, sizeof(val_str),
511                                                pkt->pts, &st->time_base));
512     probe_str("dts", ts_value_string(val_str, sizeof(val_str), pkt->dts));
513     probe_str("dts_time", time_value_string(val_str, sizeof(val_str),
514                                                pkt->dts, &st->time_base));
515     probe_str("duration", ts_value_string(val_str, sizeof(val_str),
516                                              pkt->duration));
517     probe_str("duration_time", time_value_string(val_str, sizeof(val_str),
518                                                     pkt->duration,
519                                                     &st->time_base));
520     probe_str("size", value_string(val_str, sizeof(val_str),
521                                       pkt->size, unit_byte_str));
522     probe_int("pos", pkt->pos);
523     probe_str("flags", pkt->flags & AV_PKT_FLAG_KEY ? "K" : "_");
524     probe_object_footer("packet");
525 }
526
527 static void show_packets(AVFormatContext *fmt_ctx)
528 {
529     AVPacket pkt;
530
531     av_init_packet(&pkt);
532     probe_array_header("packets");
533     while (!av_read_frame(fmt_ctx, &pkt))
534         show_packet(fmt_ctx, &pkt);
535     probe_array_footer("packets");
536 }
537
538 static void show_stream(AVFormatContext *fmt_ctx, int stream_idx)
539 {
540     AVStream *stream = fmt_ctx->streams[stream_idx];
541     AVCodecContext *dec_ctx;
542     AVCodec *dec;
543     const char *profile;
544     char val_str[128];
545     AVRational display_aspect_ratio;
546
547     probe_object_header("stream");
548
549     probe_int("index", stream->index);
550
551     if ((dec_ctx = stream->codec)) {
552         if ((dec = dec_ctx->codec)) {
553             probe_str("codec_name", dec->name);
554             probe_str("codec_long_name", dec->long_name);
555         } else {
556             probe_str("codec_name", "unknown");
557         }
558
559         probe_str("codec_type", media_type_string(dec_ctx->codec_type));
560         probe_str("codec_time_base",
561                   rational_string(val_str, sizeof(val_str),
562                                   "/", &dec_ctx->time_base));
563
564         /* print AVI/FourCC tag */
565         av_get_codec_tag_string(val_str, sizeof(val_str), dec_ctx->codec_tag);
566         probe_str("codec_tag_string", val_str);
567         probe_str("codec_tag", tag_string(val_str, sizeof(val_str),
568                                           dec_ctx->codec_tag));
569
570         /* print profile, if there is one */
571         if (dec && (profile = av_get_profile_name(dec, dec_ctx->profile)))
572             probe_str("profile", profile);
573
574         switch (dec_ctx->codec_type) {
575         case AVMEDIA_TYPE_VIDEO:
576             probe_int("width", dec_ctx->width);
577             probe_int("height", dec_ctx->height);
578             probe_int("has_b_frames", dec_ctx->has_b_frames);
579             if (dec_ctx->sample_aspect_ratio.num) {
580                 probe_str("sample_aspect_ratio",
581                           rational_string(val_str, sizeof(val_str), ":",
582                           &dec_ctx->sample_aspect_ratio));
583                 av_reduce(&display_aspect_ratio.num, &display_aspect_ratio.den,
584                           dec_ctx->width  * dec_ctx->sample_aspect_ratio.num,
585                           dec_ctx->height * dec_ctx->sample_aspect_ratio.den,
586                           1024*1024);
587                 probe_str("display_aspect_ratio",
588                           rational_string(val_str, sizeof(val_str), ":",
589                           &display_aspect_ratio));
590             }
591             probe_str("pix_fmt",
592                       dec_ctx->pix_fmt != PIX_FMT_NONE ? av_pix_fmt_descriptors[dec_ctx->pix_fmt].name
593                                                     : "unknown");
594             probe_int("level", dec_ctx->level);
595             break;
596
597         case AVMEDIA_TYPE_AUDIO:
598             probe_str("sample_rate",
599                       value_string(val_str, sizeof(val_str),
600                                    dec_ctx->sample_rate,
601                                    unit_hertz_str));
602             probe_int("channels", dec_ctx->channels);
603             probe_int("bits_per_sample",
604                       av_get_bits_per_sample(dec_ctx->codec_id));
605             break;
606         }
607     } else {
608         probe_str("codec_type", "unknown");
609     }
610
611     if (fmt_ctx->iformat->flags & AVFMT_SHOW_IDS)
612         probe_int("id", stream->id);
613     probe_str("r_frame_rate",
614               rational_string(val_str, sizeof(val_str), "/",
615               &stream->r_frame_rate));
616     probe_str("avg_frame_rate",
617               rational_string(val_str, sizeof(val_str), "/",
618               &stream->avg_frame_rate));
619     probe_str("time_base",
620               rational_string(val_str, sizeof(val_str), "/",
621               &stream->time_base));
622     probe_str("start_time",
623               time_value_string(val_str, sizeof(val_str),
624                                 stream->start_time, &stream->time_base));
625     probe_str("duration",
626               time_value_string(val_str, sizeof(val_str),
627                                 stream->duration, &stream->time_base));
628     if (stream->nb_frames)
629         probe_int("nb_frames", stream->nb_frames);
630
631     probe_dict(stream->metadata, "tags");
632
633     probe_object_footer("stream");
634 }
635
636 static void show_format(AVFormatContext *fmt_ctx)
637 {
638     char val_str[128];
639     int64_t size = fmt_ctx->pb ? avio_size(fmt_ctx->pb) : -1;
640
641     probe_object_header("format");
642     probe_str("filename",         fmt_ctx->filename);
643     probe_int("nb_streams",       fmt_ctx->nb_streams);
644     probe_str("format_name",      fmt_ctx->iformat->name);
645     probe_str("format_long_name", fmt_ctx->iformat->long_name);
646     probe_str("start_time",
647                        time_value_string(val_str, sizeof(val_str),
648                                          fmt_ctx->start_time, &AV_TIME_BASE_Q));
649     probe_str("duration",
650                        time_value_string(val_str, sizeof(val_str),
651                                          fmt_ctx->duration, &AV_TIME_BASE_Q));
652     probe_str("size",
653                        size >= 0 ? value_string(val_str, sizeof(val_str),
654                                                 size, unit_byte_str)
655                                   : "unknown");
656     probe_str("bit_rate",
657                        value_string(val_str, sizeof(val_str),
658                                     fmt_ctx->bit_rate, unit_bit_per_second_str));
659
660     probe_dict(fmt_ctx->metadata, "tags");
661
662     probe_object_footer("format");
663 }
664
665 static int open_input_file(AVFormatContext **fmt_ctx_ptr, const char *filename)
666 {
667     int err, i;
668     AVFormatContext *fmt_ctx = NULL;
669     AVDictionaryEntry *t;
670
671     if ((err = avformat_open_input(&fmt_ctx, filename,
672                                    iformat, &format_opts)) < 0) {
673         print_error(filename, err);
674         return err;
675     }
676     if ((t = av_dict_get(format_opts, "", NULL, AV_DICT_IGNORE_SUFFIX))) {
677         av_log(NULL, AV_LOG_ERROR, "Option %s not found.\n", t->key);
678         return AVERROR_OPTION_NOT_FOUND;
679     }
680
681
682     /* fill the streams in the format context */
683     if ((err = avformat_find_stream_info(fmt_ctx, NULL)) < 0) {
684         print_error(filename, err);
685         return err;
686     }
687
688     av_dump_format(fmt_ctx, 0, filename, 0);
689
690     /* bind a decoder to each input stream */
691     for (i = 0; i < fmt_ctx->nb_streams; i++) {
692         AVStream *stream = fmt_ctx->streams[i];
693         AVCodec *codec;
694
695         if (!(codec = avcodec_find_decoder(stream->codec->codec_id))) {
696             fprintf(stderr,
697                     "Unsupported codec with id %d for input stream %d\n",
698                     stream->codec->codec_id, stream->index);
699         } else if (avcodec_open2(stream->codec, codec, NULL) < 0) {
700             fprintf(stderr, "Error while opening codec for input stream %d\n",
701                     stream->index);
702         }
703     }
704
705     *fmt_ctx_ptr = fmt_ctx;
706     return 0;
707 }
708
709 static void close_input_file(AVFormatContext **ctx_ptr)
710 {
711     int i;
712     AVFormatContext *fmt_ctx = *ctx_ptr;
713
714     /* close decoder for each stream */
715     for (i = 0; i < fmt_ctx->nb_streams; i++) {
716         AVStream *stream = fmt_ctx->streams[i];
717
718         avcodec_close(stream->codec);
719     }
720     avformat_close_input(ctx_ptr);
721 }
722
723 static int probe_file(const char *filename)
724 {
725     AVFormatContext *fmt_ctx;
726     int ret, i;
727
728     if ((ret = open_input_file(&fmt_ctx, filename)))
729         return ret;
730
731     if (do_show_format)
732         show_format(fmt_ctx);
733
734     if (do_show_streams) {
735         probe_array_header("streams");
736         for (i = 0; i < fmt_ctx->nb_streams; i++)
737             show_stream(fmt_ctx, i);
738         probe_array_footer("streams");
739     }
740
741     if (do_show_packets)
742         show_packets(fmt_ctx);
743
744     close_input_file(&fmt_ctx);
745     return 0;
746 }
747
748 static void show_usage(void)
749 {
750     printf("Simple multimedia streams analyzer\n");
751     printf("usage: %s [OPTIONS] [INPUT_FILE]\n", program_name);
752     printf("\n");
753 }
754
755 static int opt_format(const char *opt, const char *arg)
756 {
757     iformat = av_find_input_format(arg);
758     if (!iformat) {
759         fprintf(stderr, "Unknown input format: %s\n", arg);
760         return AVERROR(EINVAL);
761     }
762     return 0;
763 }
764
765 static int opt_output_format(const char *opt, const char *arg)
766 {
767
768     if (!strcmp(arg, "json")) {
769         print_header        = json_print_header;
770         print_footer        = json_print_footer;
771         print_array_header  = json_print_array_header;
772         print_array_footer  = json_print_array_footer;
773         print_object_header = json_print_object_header;
774         print_object_footer = json_print_object_footer;
775
776         print_integer = json_print_integer;
777         print_string  = json_print_string;
778     } else if (!strcmp(arg, "ini")) {
779         print_header        = ini_print_header;
780         print_footer        = ini_print_footer;
781         print_array_header  = ini_print_array_header;
782         print_object_header = ini_print_object_header;
783
784         print_integer = ini_print_integer;
785         print_string  = ini_print_string;
786     } else {
787         av_log(NULL, AV_LOG_ERROR, "Unsupported formatter %s\n", arg);
788         return AVERROR(EINVAL);
789     }
790     return 0;
791 }
792
793 static int opt_show_format_entry(const char *opt, const char *arg)
794 {
795     do_show_format = 1;
796     nb_fmt_entries_to_show++;
797     print_header        = NULL;
798     print_footer        = NULL;
799     print_array_header  = NULL;
800     print_array_footer  = NULL;
801     print_object_header = NULL;
802     print_object_footer = NULL;
803
804     print_integer = show_format_entry_integer;
805     print_string  = show_format_entry_string;
806     av_dict_set(&fmt_entries_to_show, arg, "", 0);
807     return 0;
808 }
809
810 static void opt_input_file(void *optctx, const char *arg)
811 {
812     if (input_filename) {
813         fprintf(stderr,
814                 "Argument '%s' provided as input filename, but '%s' was already specified.\n",
815                 arg, input_filename);
816         exit(1);
817     }
818     if (!strcmp(arg, "-"))
819         arg = "pipe:";
820     input_filename = arg;
821 }
822
823 static void show_help(void)
824 {
825     av_log_set_callback(log_callback_help);
826     show_usage();
827     show_help_options(options, "Main options:\n", 0, 0);
828     printf("\n");
829     show_help_children(avformat_get_class(), AV_OPT_FLAG_DECODING_PARAM);
830 }
831
832 static void opt_pretty(void)
833 {
834     show_value_unit              = 1;
835     use_value_prefix             = 1;
836     use_byte_value_binary_prefix = 1;
837     use_value_sexagesimal_format = 1;
838 }
839
840 static const OptionDef options[] = {
841 #include "cmdutils_common_opts.h"
842     { "f", HAS_ARG, {(void*)opt_format}, "force format", "format" },
843     { "of", HAS_ARG, {(void*)&opt_output_format}, "output the document either as ini or json", "output_format" },
844     { "unit", OPT_BOOL, {(void*)&show_value_unit},
845       "show unit of the displayed values" },
846     { "prefix", OPT_BOOL, {(void*)&use_value_prefix},
847       "use SI prefixes for the displayed values" },
848     { "byte_binary_prefix", OPT_BOOL, {(void*)&use_byte_value_binary_prefix},
849       "use binary prefixes for byte units" },
850     { "sexagesimal", OPT_BOOL,  {(void*)&use_value_sexagesimal_format},
851       "use sexagesimal format HOURS:MM:SS.MICROSECONDS for time units" },
852     { "pretty", 0, {(void*)&opt_pretty},
853       "prettify the format of displayed values, make it more human readable" },
854     { "show_format",  OPT_BOOL, {(void*)&do_show_format} , "show format/container info" },
855     { "show_format_entry", HAS_ARG, {(void*)opt_show_format_entry},
856       "show a particular entry from the format/container info", "entry" },
857     { "show_packets", OPT_BOOL, {(void*)&do_show_packets}, "show packets info" },
858     { "show_streams", OPT_BOOL, {(void*)&do_show_streams}, "show streams info" },
859     { "default", HAS_ARG | OPT_AUDIO | OPT_VIDEO | OPT_EXPERT, {(void*)opt_default},
860       "generic catch all option", "" },
861     { NULL, },
862 };
863
864 static int probe_buf_write(void *opaque, uint8_t *buf, int buf_size)
865 {
866     printf("%.*s", buf_size, buf);
867     return 0;
868 }
869
870 #define AVP_BUFFSIZE 4096
871
872 int main(int argc, char **argv)
873 {
874     int ret;
875     uint8_t *buffer = av_malloc(AVP_BUFFSIZE);
876
877     if (!buffer)
878         exit(1);
879
880     parse_loglevel(argc, argv, options);
881     av_register_all();
882     avformat_network_init();
883     init_opts();
884 #if CONFIG_AVDEVICE
885     avdevice_register_all();
886 #endif
887
888     show_banner();
889     parse_options(NULL, argc, argv, options, opt_input_file);
890
891     if (!input_filename) {
892         show_usage();
893         fprintf(stderr, "You have to specify one input file.\n");
894         fprintf(stderr,
895                 "Use -h to get full help or, even better, run 'man %s'.\n",
896                 program_name);
897         exit(1);
898     }
899
900     probe_out = avio_alloc_context(buffer, AVP_BUFFSIZE, 1, NULL, NULL,
901                                  probe_buf_write, NULL);
902     if (!probe_out)
903         exit(1);
904
905     probe_header();
906     ret = probe_file(input_filename);
907     probe_footer();
908     avio_flush(probe_out);
909     avio_close(probe_out);
910
911     avformat_network_deinit();
912
913     return ret;
914 }