]> git.sesse.net Git - ffmpeg/blob - libavformat/dump.c
Merge commit 'a79aafd0b4d37eda6f15dc68e6509d4e815290c9'
[ffmpeg] / libavformat / dump.c
1 /*
2  * Various pretty-printing functions for use within FFmpeg
3  * Copyright (c) 2000, 2001, 2002 Fabrice Bellard
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg 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  * FFmpeg 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 FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 #include <stdio.h>
23 #include <stdint.h>
24
25 #include "libavutil/channel_layout.h"
26 #include "libavutil/display.h"
27 #include "libavutil/intreadwrite.h"
28 #include "libavutil/log.h"
29 #include "libavutil/mastering_display_metadata.h"
30 #include "libavutil/mathematics.h"
31 #include "libavutil/opt.h"
32 #include "libavutil/avstring.h"
33 #include "libavutil/replaygain.h"
34 #include "libavutil/stereo3d.h"
35
36 #include "avformat.h"
37
38 #define HEXDUMP_PRINT(...)                                                    \
39     do {                                                                      \
40         if (!f)                                                               \
41             av_log(avcl, level, __VA_ARGS__);                                 \
42         else                                                                  \
43             fprintf(f, __VA_ARGS__);                                          \
44     } while (0)
45
46 static void hex_dump_internal(void *avcl, FILE *f, int level,
47                               const uint8_t *buf, int size)
48 {
49     int len, i, j, c;
50
51     for (i = 0; i < size; i += 16) {
52         len = size - i;
53         if (len > 16)
54             len = 16;
55         HEXDUMP_PRINT("%08x ", i);
56         for (j = 0; j < 16; j++) {
57             if (j < len)
58                 HEXDUMP_PRINT(" %02x", buf[i + j]);
59             else
60                 HEXDUMP_PRINT("   ");
61         }
62         HEXDUMP_PRINT(" ");
63         for (j = 0; j < len; j++) {
64             c = buf[i + j];
65             if (c < ' ' || c > '~')
66                 c = '.';
67             HEXDUMP_PRINT("%c", c);
68         }
69         HEXDUMP_PRINT("\n");
70     }
71 }
72
73 void av_hex_dump(FILE *f, const uint8_t *buf, int size)
74 {
75     hex_dump_internal(NULL, f, 0, buf, size);
76 }
77
78 void av_hex_dump_log(void *avcl, int level, const uint8_t *buf, int size)
79 {
80     hex_dump_internal(avcl, NULL, level, buf, size);
81 }
82
83 static void pkt_dump_internal(void *avcl, FILE *f, int level, const AVPacket *pkt,
84                               int dump_payload, AVRational time_base)
85 {
86     HEXDUMP_PRINT("stream #%d:\n", pkt->stream_index);
87     HEXDUMP_PRINT("  keyframe=%d\n", (pkt->flags & AV_PKT_FLAG_KEY) != 0);
88     HEXDUMP_PRINT("  duration=%0.3f\n", pkt->duration * av_q2d(time_base));
89     /* DTS is _always_ valid after av_read_frame() */
90     HEXDUMP_PRINT("  dts=");
91     if (pkt->dts == AV_NOPTS_VALUE)
92         HEXDUMP_PRINT("N/A");
93     else
94         HEXDUMP_PRINT("%0.3f", pkt->dts * av_q2d(time_base));
95     /* PTS may not be known if B-frames are present. */
96     HEXDUMP_PRINT("  pts=");
97     if (pkt->pts == AV_NOPTS_VALUE)
98         HEXDUMP_PRINT("N/A");
99     else
100         HEXDUMP_PRINT("%0.3f", pkt->pts * av_q2d(time_base));
101     HEXDUMP_PRINT("\n");
102     HEXDUMP_PRINT("  size=%d\n", pkt->size);
103     if (dump_payload)
104         hex_dump_internal(avcl, f, level, pkt->data, pkt->size);
105 }
106
107 void av_pkt_dump2(FILE *f, const AVPacket *pkt, int dump_payload, const AVStream *st)
108 {
109     pkt_dump_internal(NULL, f, 0, pkt, dump_payload, st->time_base);
110 }
111
112 void av_pkt_dump_log2(void *avcl, int level, const AVPacket *pkt, int dump_payload,
113                       const AVStream *st)
114 {
115     pkt_dump_internal(avcl, NULL, level, pkt, dump_payload, st->time_base);
116 }
117
118
119 static void print_fps(double d, const char *postfix)
120 {
121     uint64_t v = lrintf(d * 100);
122     if (!v)
123         av_log(NULL, AV_LOG_INFO, "%1.4f %s", d, postfix);
124     else if (v % 100)
125         av_log(NULL, AV_LOG_INFO, "%3.2f %s", d, postfix);
126     else if (v % (100 * 1000))
127         av_log(NULL, AV_LOG_INFO, "%1.0f %s", d, postfix);
128     else
129         av_log(NULL, AV_LOG_INFO, "%1.0fk %s", d / 1000, postfix);
130 }
131
132 static void dump_metadata(void *ctx, AVDictionary *m, const char *indent)
133 {
134     if (m && !(av_dict_count(m) == 1 && av_dict_get(m, "language", NULL, 0))) {
135         AVDictionaryEntry *tag = NULL;
136
137         av_log(ctx, AV_LOG_INFO, "%sMetadata:\n", indent);
138         while ((tag = av_dict_get(m, "", tag, AV_DICT_IGNORE_SUFFIX)))
139             if (strcmp("language", tag->key)) {
140                 const char *p = tag->value;
141                 av_log(ctx, AV_LOG_INFO,
142                        "%s  %-16s: ", indent, tag->key);
143                 while (*p) {
144                     char tmp[256];
145                     size_t len = strcspn(p, "\x8\xa\xb\xc\xd");
146                     av_strlcpy(tmp, p, FFMIN(sizeof(tmp), len+1));
147                     av_log(ctx, AV_LOG_INFO, "%s", tmp);
148                     p += len;
149                     if (*p == 0xd) av_log(ctx, AV_LOG_INFO, " ");
150                     if (*p == 0xa) av_log(ctx, AV_LOG_INFO, "\n%s  %-16s: ", indent, "");
151                     if (*p) p++;
152                 }
153                 av_log(ctx, AV_LOG_INFO, "\n");
154             }
155     }
156 }
157
158 /* param change side data*/
159 static void dump_paramchange(void *ctx, AVPacketSideData *sd)
160 {
161     int size = sd->size;
162     const uint8_t *data = sd->data;
163     uint32_t flags, channels, sample_rate, width, height;
164     uint64_t layout;
165
166     if (!data || sd->size < 4)
167         goto fail;
168
169     flags = AV_RL32(data);
170     data += 4;
171     size -= 4;
172
173     if (flags & AV_SIDE_DATA_PARAM_CHANGE_CHANNEL_COUNT) {
174         if (size < 4)
175             goto fail;
176         channels = AV_RL32(data);
177         data += 4;
178         size -= 4;
179         av_log(ctx, AV_LOG_INFO, "channel count %"PRIu32", ", channels);
180     }
181     if (flags & AV_SIDE_DATA_PARAM_CHANGE_CHANNEL_LAYOUT) {
182         if (size < 8)
183             goto fail;
184         layout = AV_RL64(data);
185         data += 8;
186         size -= 8;
187         av_log(ctx, AV_LOG_INFO,
188                "channel layout: %s, ", av_get_channel_name(layout));
189     }
190     if (flags & AV_SIDE_DATA_PARAM_CHANGE_SAMPLE_RATE) {
191         if (size < 4)
192             goto fail;
193         sample_rate = AV_RL32(data);
194         data += 4;
195         size -= 4;
196         av_log(ctx, AV_LOG_INFO, "sample_rate %"PRIu32", ", sample_rate);
197     }
198     if (flags & AV_SIDE_DATA_PARAM_CHANGE_DIMENSIONS) {
199         if (size < 8)
200             goto fail;
201         width = AV_RL32(data);
202         data += 4;
203         size -= 4;
204         height = AV_RL32(data);
205         data += 4;
206         size -= 4;
207         av_log(ctx, AV_LOG_INFO, "width %"PRIu32" height %"PRIu32, width, height);
208     }
209
210     return;
211 fail:
212     av_log(ctx, AV_LOG_INFO, "unknown param");
213 }
214
215 /* replaygain side data*/
216 static void print_gain(void *ctx, const char *str, int32_t gain)
217 {
218     av_log(ctx, AV_LOG_INFO, "%s - ", str);
219     if (gain == INT32_MIN)
220         av_log(ctx, AV_LOG_INFO, "unknown");
221     else
222         av_log(ctx, AV_LOG_INFO, "%f", gain / 100000.0f);
223     av_log(ctx, AV_LOG_INFO, ", ");
224 }
225
226 static void print_peak(void *ctx, const char *str, uint32_t peak)
227 {
228     av_log(ctx, AV_LOG_INFO, "%s - ", str);
229     if (!peak)
230         av_log(ctx, AV_LOG_INFO, "unknown");
231     else
232         av_log(ctx, AV_LOG_INFO, "%f", (float) peak / UINT32_MAX);
233     av_log(ctx, AV_LOG_INFO, ", ");
234 }
235
236 static void dump_replaygain(void *ctx, AVPacketSideData *sd)
237 {
238     AVReplayGain *rg;
239
240     if (sd->size < sizeof(*rg)) {
241         av_log(ctx, AV_LOG_INFO, "invalid data");
242         return;
243     }
244     rg = (AVReplayGain*)sd->data;
245
246     print_gain(ctx, "track gain", rg->track_gain);
247     print_peak(ctx, "track peak", rg->track_peak);
248     print_gain(ctx, "album gain", rg->album_gain);
249     print_peak(ctx, "album peak", rg->album_peak);
250 }
251
252 static void dump_stereo3d(void *ctx, AVPacketSideData *sd)
253 {
254     AVStereo3D *stereo;
255     const char *name;
256
257     if (sd->size < sizeof(*stereo)) {
258         av_log(ctx, AV_LOG_INFO, "invalid data");
259         return;
260     }
261
262     stereo = (AVStereo3D *)sd->data;
263
264     av_log(ctx, AV_LOG_INFO, "%s", av_stereo3d_type_name(stereo->type));
265
266     if (stereo->flags & AV_STEREO3D_FLAG_INVERT)
267         av_log(ctx, AV_LOG_INFO, " (inverted)");
268 }
269
270 static void dump_audioservicetype(void *ctx, AVPacketSideData *sd)
271 {
272     enum AVAudioServiceType *ast = (enum AVAudioServiceType *)sd->data;
273
274     if (sd->size < sizeof(*ast)) {
275         av_log(ctx, AV_LOG_INFO, "invalid data");
276         return;
277     }
278
279     switch (*ast) {
280     case AV_AUDIO_SERVICE_TYPE_MAIN:
281         av_log(ctx, AV_LOG_INFO, "main");
282         break;
283     case AV_AUDIO_SERVICE_TYPE_EFFECTS:
284         av_log(ctx, AV_LOG_INFO, "effects");
285         break;
286     case AV_AUDIO_SERVICE_TYPE_VISUALLY_IMPAIRED:
287         av_log(ctx, AV_LOG_INFO, "visually impaired");
288         break;
289     case AV_AUDIO_SERVICE_TYPE_HEARING_IMPAIRED:
290         av_log(ctx, AV_LOG_INFO, "hearing impaired");
291         break;
292     case AV_AUDIO_SERVICE_TYPE_DIALOGUE:
293         av_log(ctx, AV_LOG_INFO, "dialogue");
294         break;
295     case AV_AUDIO_SERVICE_TYPE_COMMENTARY:
296         av_log(ctx, AV_LOG_INFO, "comentary");
297         break;
298     case AV_AUDIO_SERVICE_TYPE_EMERGENCY:
299         av_log(ctx, AV_LOG_INFO, "emergency");
300         break;
301     case AV_AUDIO_SERVICE_TYPE_VOICE_OVER:
302         av_log(ctx, AV_LOG_INFO, "voice over");
303         break;
304     case AV_AUDIO_SERVICE_TYPE_KARAOKE:
305         av_log(ctx, AV_LOG_INFO, "karaoke");
306         break;
307     default:
308         av_log(ctx, AV_LOG_WARNING, "unknown");
309         break;
310     }
311 }
312
313 static void dump_cpb(void *ctx, AVPacketSideData *sd)
314 {
315     AVCPBProperties *cpb = (AVCPBProperties *)sd->data;
316
317     if (sd->size < sizeof(*cpb)) {
318         av_log(ctx, AV_LOG_INFO, "invalid data");
319         return;
320     }
321
322     av_log(ctx, AV_LOG_INFO,
323            "bitrate max/min/avg: %d/%d/%d buffer size: %d vbv_delay: %"PRId64,
324            cpb->max_bitrate, cpb->min_bitrate, cpb->avg_bitrate,
325            cpb->buffer_size,
326            cpb->vbv_delay);
327 }
328
329 static void dump_mastering_display_metadata(void *ctx, AVPacketSideData* sd) {
330     AVMasteringDisplayMetadata* metadata = (AVMasteringDisplayMetadata*)sd->data;
331     av_log(ctx, AV_LOG_INFO, "Mastering Display Metadata, "
332            "has_primaries:%d has_luminance:%d "
333            "r(%5.4f,%5.4f) g(%5.4f,%5.4f) b(%5.4f %5.4f) wp(%5.4f, %5.4f) "
334            "min_luminance=%f, max_luminance=%f\n",
335            metadata->has_primaries, metadata->has_luminance,
336            av_q2d(metadata->display_primaries[0][0]),
337            av_q2d(metadata->display_primaries[0][1]),
338            av_q2d(metadata->display_primaries[1][0]),
339            av_q2d(metadata->display_primaries[1][1]),
340            av_q2d(metadata->display_primaries[2][0]),
341            av_q2d(metadata->display_primaries[2][1]),
342            av_q2d(metadata->white_point[0]), av_q2d(metadata->white_point[1]),
343            av_q2d(metadata->min_luminance), av_q2d(metadata->max_luminance));
344 }
345
346 static void dump_sidedata(void *ctx, AVStream *st, const char *indent)
347 {
348     int i;
349
350     if (st->nb_side_data)
351         av_log(ctx, AV_LOG_INFO, "%sSide data:\n", indent);
352
353     for (i = 0; i < st->nb_side_data; i++) {
354         AVPacketSideData sd = st->side_data[i];
355         av_log(ctx, AV_LOG_INFO, "%s  ", indent);
356
357         switch (sd.type) {
358         case AV_PKT_DATA_PALETTE:
359             av_log(ctx, AV_LOG_INFO, "palette");
360             break;
361         case AV_PKT_DATA_NEW_EXTRADATA:
362             av_log(ctx, AV_LOG_INFO, "new extradata");
363             break;
364         case AV_PKT_DATA_PARAM_CHANGE:
365             av_log(ctx, AV_LOG_INFO, "paramchange: ");
366             dump_paramchange(ctx, &sd);
367             break;
368         case AV_PKT_DATA_H263_MB_INFO:
369             av_log(ctx, AV_LOG_INFO, "H.263 macroblock info");
370             break;
371         case AV_PKT_DATA_REPLAYGAIN:
372             av_log(ctx, AV_LOG_INFO, "replaygain: ");
373             dump_replaygain(ctx, &sd);
374             break;
375         case AV_PKT_DATA_DISPLAYMATRIX:
376             av_log(ctx, AV_LOG_INFO, "displaymatrix: rotation of %.2f degrees",
377                    av_display_rotation_get((int32_t *)sd.data));
378             break;
379         case AV_PKT_DATA_STEREO3D:
380             av_log(ctx, AV_LOG_INFO, "stereo3d: ");
381             dump_stereo3d(ctx, &sd);
382             break;
383         case AV_PKT_DATA_AUDIO_SERVICE_TYPE:
384             av_log(ctx, AV_LOG_INFO, "audio service type: ");
385             dump_audioservicetype(ctx, &sd);
386             break;
387         case AV_PKT_DATA_QUALITY_STATS:
388             av_log(ctx, AV_LOG_INFO, "quality factor: %d, pict_type: %c", AV_RL32(sd.data), av_get_picture_type_char(sd.data[4]));
389             break;
390         case AV_PKT_DATA_CPB_PROPERTIES:
391             av_log(ctx, AV_LOG_INFO, "cpb: ");
392             dump_cpb(ctx, &sd);
393             break;
394         case AV_PKT_DATA_MASTERING_DISPLAY_METADATA:
395             dump_mastering_display_metadata(ctx, &sd);
396             break;
397         default:
398             av_log(ctx, AV_LOG_INFO,
399                    "unknown side data type %d (%d bytes)", sd.type, sd.size);
400             break;
401         }
402
403         av_log(ctx, AV_LOG_INFO, "\n");
404     }
405 }
406
407 /* "user interface" functions */
408 static void dump_stream_format(AVFormatContext *ic, int i,
409                                int index, int is_output)
410 {
411     char buf[256];
412     int flags = (is_output ? ic->oformat->flags : ic->iformat->flags);
413     AVStream *st = ic->streams[i];
414     AVDictionaryEntry *lang = av_dict_get(st->metadata, "language", NULL, 0);
415     char *separator = ic->dump_separator;
416     AVCodecContext *avctx;
417     int ret;
418
419     avctx = avcodec_alloc_context3(NULL);
420     if (!avctx)
421         return;
422
423     ret = avcodec_parameters_to_context(avctx, st->codecpar);
424     if (ret < 0) {
425         avcodec_free_context(&avctx);
426         return;
427     }
428
429     // Fields which are missing from AVCodecParameters need to be taken from the AVCodecContext
430     avctx->properties = st->codec->properties;
431     avctx->codec      = st->codec->codec;
432     avctx->qmin       = st->codec->qmin;
433     avctx->qmax       = st->codec->qmax;
434     avctx->coded_width  = st->codec->coded_width;
435     avctx->coded_height = st->codec->coded_height;
436
437     if (separator)
438         av_opt_set(avctx, "dump_separator", separator, 0);
439     avcodec_string(buf, sizeof(buf), avctx, is_output);
440     avcodec_free_context(&avctx);
441
442     av_log(NULL, AV_LOG_INFO, "    Stream #%d:%d", index, i);
443
444     /* the pid is an important information, so we display it */
445     /* XXX: add a generic system */
446     if (flags & AVFMT_SHOW_IDS)
447         av_log(NULL, AV_LOG_INFO, "[0x%x]", st->id);
448     if (lang)
449         av_log(NULL, AV_LOG_INFO, "(%s)", lang->value);
450     av_log(NULL, AV_LOG_DEBUG, ", %d, %d/%d", st->codec_info_nb_frames,
451            st->time_base.num, st->time_base.den);
452     av_log(NULL, AV_LOG_INFO, ": %s", buf);
453
454     if (st->sample_aspect_ratio.num &&
455         av_cmp_q(st->sample_aspect_ratio, st->codecpar->sample_aspect_ratio)) {
456         AVRational display_aspect_ratio;
457         av_reduce(&display_aspect_ratio.num, &display_aspect_ratio.den,
458                   st->codecpar->width  * (int64_t)st->sample_aspect_ratio.num,
459                   st->codecpar->height * (int64_t)st->sample_aspect_ratio.den,
460                   1024 * 1024);
461         av_log(NULL, AV_LOG_INFO, ", SAR %d:%d DAR %d:%d",
462                st->sample_aspect_ratio.num, st->sample_aspect_ratio.den,
463                display_aspect_ratio.num, display_aspect_ratio.den);
464     }
465
466     if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO) {
467         int fps = st->avg_frame_rate.den && st->avg_frame_rate.num;
468         int tbr = st->r_frame_rate.den && st->r_frame_rate.num;
469         int tbn = st->time_base.den && st->time_base.num;
470         int tbc = st->codec->time_base.den && st->codec->time_base.num;
471
472         if (fps || tbr || tbn || tbc)
473             av_log(NULL, AV_LOG_INFO, "%s", separator);
474
475         if (fps)
476             print_fps(av_q2d(st->avg_frame_rate), tbr || tbn || tbc ? "fps, " : "fps");
477         if (tbr)
478             print_fps(av_q2d(st->r_frame_rate), tbn || tbc ? "tbr, " : "tbr");
479         if (tbn)
480             print_fps(1 / av_q2d(st->time_base), tbc ? "tbn, " : "tbn");
481         if (tbc)
482             print_fps(1 / av_q2d(st->codec->time_base), "tbc");
483     }
484
485     if (st->disposition & AV_DISPOSITION_DEFAULT)
486         av_log(NULL, AV_LOG_INFO, " (default)");
487     if (st->disposition & AV_DISPOSITION_DUB)
488         av_log(NULL, AV_LOG_INFO, " (dub)");
489     if (st->disposition & AV_DISPOSITION_ORIGINAL)
490         av_log(NULL, AV_LOG_INFO, " (original)");
491     if (st->disposition & AV_DISPOSITION_COMMENT)
492         av_log(NULL, AV_LOG_INFO, " (comment)");
493     if (st->disposition & AV_DISPOSITION_LYRICS)
494         av_log(NULL, AV_LOG_INFO, " (lyrics)");
495     if (st->disposition & AV_DISPOSITION_KARAOKE)
496         av_log(NULL, AV_LOG_INFO, " (karaoke)");
497     if (st->disposition & AV_DISPOSITION_FORCED)
498         av_log(NULL, AV_LOG_INFO, " (forced)");
499     if (st->disposition & AV_DISPOSITION_HEARING_IMPAIRED)
500         av_log(NULL, AV_LOG_INFO, " (hearing impaired)");
501     if (st->disposition & AV_DISPOSITION_VISUAL_IMPAIRED)
502         av_log(NULL, AV_LOG_INFO, " (visual impaired)");
503     if (st->disposition & AV_DISPOSITION_CLEAN_EFFECTS)
504         av_log(NULL, AV_LOG_INFO, " (clean effects)");
505     av_log(NULL, AV_LOG_INFO, "\n");
506
507     dump_metadata(NULL, st->metadata, "    ");
508
509     dump_sidedata(NULL, st, "    ");
510 }
511
512 void av_dump_format(AVFormatContext *ic, int index,
513                     const char *url, int is_output)
514 {
515     int i;
516     uint8_t *printed = ic->nb_streams ? av_mallocz(ic->nb_streams) : NULL;
517     if (ic->nb_streams && !printed)
518         return;
519
520     av_log(NULL, AV_LOG_INFO, "%s #%d, %s, %s '%s':\n",
521            is_output ? "Output" : "Input",
522            index,
523            is_output ? ic->oformat->name : ic->iformat->name,
524            is_output ? "to" : "from", url);
525     dump_metadata(NULL, ic->metadata, "  ");
526
527     if (!is_output) {
528         av_log(NULL, AV_LOG_INFO, "  Duration: ");
529         if (ic->duration != AV_NOPTS_VALUE) {
530             int hours, mins, secs, us;
531             int64_t duration = ic->duration + (ic->duration <= INT64_MAX - 5000 ? 5000 : 0);
532             secs  = duration / AV_TIME_BASE;
533             us    = duration % AV_TIME_BASE;
534             mins  = secs / 60;
535             secs %= 60;
536             hours = mins / 60;
537             mins %= 60;
538             av_log(NULL, AV_LOG_INFO, "%02d:%02d:%02d.%02d", hours, mins, secs,
539                    (100 * us) / AV_TIME_BASE);
540         } else {
541             av_log(NULL, AV_LOG_INFO, "N/A");
542         }
543         if (ic->start_time != AV_NOPTS_VALUE) {
544             int secs, us;
545             av_log(NULL, AV_LOG_INFO, ", start: ");
546             secs = llabs(ic->start_time / AV_TIME_BASE);
547             us   = llabs(ic->start_time % AV_TIME_BASE);
548             av_log(NULL, AV_LOG_INFO, "%s%d.%06d",
549                    ic->start_time >= 0 ? "" : "-",
550                    secs,
551                    (int) av_rescale(us, 1000000, AV_TIME_BASE));
552         }
553         av_log(NULL, AV_LOG_INFO, ", bitrate: ");
554         if (ic->bit_rate)
555             av_log(NULL, AV_LOG_INFO, "%"PRId64" kb/s", (int64_t)ic->bit_rate / 1000);
556         else
557             av_log(NULL, AV_LOG_INFO, "N/A");
558         av_log(NULL, AV_LOG_INFO, "\n");
559     }
560
561     for (i = 0; i < ic->nb_chapters; i++) {
562         AVChapter *ch = ic->chapters[i];
563         av_log(NULL, AV_LOG_INFO, "    Chapter #%d:%d: ", index, i);
564         av_log(NULL, AV_LOG_INFO,
565                "start %f, ", ch->start * av_q2d(ch->time_base));
566         av_log(NULL, AV_LOG_INFO,
567                "end %f\n", ch->end * av_q2d(ch->time_base));
568
569         dump_metadata(NULL, ch->metadata, "    ");
570     }
571
572     if (ic->nb_programs) {
573         int j, k, total = 0;
574         for (j = 0; j < ic->nb_programs; j++) {
575             AVDictionaryEntry *name = av_dict_get(ic->programs[j]->metadata,
576                                                   "name", NULL, 0);
577             av_log(NULL, AV_LOG_INFO, "  Program %d %s\n", ic->programs[j]->id,
578                    name ? name->value : "");
579             dump_metadata(NULL, ic->programs[j]->metadata, "    ");
580             for (k = 0; k < ic->programs[j]->nb_stream_indexes; k++) {
581                 dump_stream_format(ic, ic->programs[j]->stream_index[k],
582                                    index, is_output);
583                 printed[ic->programs[j]->stream_index[k]] = 1;
584             }
585             total += ic->programs[j]->nb_stream_indexes;
586         }
587         if (total < ic->nb_streams)
588             av_log(NULL, AV_LOG_INFO, "  No Program\n");
589     }
590
591     for (i = 0; i < ic->nb_streams; i++)
592         if (!printed[i])
593             dump_stream_format(ic, i, index, is_output);
594
595     av_free(printed);
596 }