]> git.sesse.net Git - ffmpeg/blob - libavformat/dump.c
API: add AV_PKT_DATA_ICC_PROFILE to AVPacketSideDataType
[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/spherical.h"
35 #include "libavutil/stereo3d.h"
36
37 #include "avformat.h"
38
39 #define HEXDUMP_PRINT(...)                                                    \
40     do {                                                                      \
41         if (!f)                                                               \
42             av_log(avcl, level, __VA_ARGS__);                                 \
43         else                                                                  \
44             fprintf(f, __VA_ARGS__);                                          \
45     } while (0)
46
47 static void hex_dump_internal(void *avcl, FILE *f, int level,
48                               const uint8_t *buf, int size)
49 {
50     int len, i, j, c;
51
52     for (i = 0; i < size; i += 16) {
53         len = size - i;
54         if (len > 16)
55             len = 16;
56         HEXDUMP_PRINT("%08x ", i);
57         for (j = 0; j < 16; j++) {
58             if (j < len)
59                 HEXDUMP_PRINT(" %02x", buf[i + j]);
60             else
61                 HEXDUMP_PRINT("   ");
62         }
63         HEXDUMP_PRINT(" ");
64         for (j = 0; j < len; j++) {
65             c = buf[i + j];
66             if (c < ' ' || c > '~')
67                 c = '.';
68             HEXDUMP_PRINT("%c", c);
69         }
70         HEXDUMP_PRINT("\n");
71     }
72 }
73
74 void av_hex_dump(FILE *f, const uint8_t *buf, int size)
75 {
76     hex_dump_internal(NULL, f, 0, buf, size);
77 }
78
79 void av_hex_dump_log(void *avcl, int level, const uint8_t *buf, int size)
80 {
81     hex_dump_internal(avcl, NULL, level, buf, size);
82 }
83
84 static void pkt_dump_internal(void *avcl, FILE *f, int level, const AVPacket *pkt,
85                               int dump_payload, AVRational time_base)
86 {
87     HEXDUMP_PRINT("stream #%d:\n", pkt->stream_index);
88     HEXDUMP_PRINT("  keyframe=%d\n", (pkt->flags & AV_PKT_FLAG_KEY) != 0);
89     HEXDUMP_PRINT("  duration=%0.3f\n", pkt->duration * av_q2d(time_base));
90     /* DTS is _always_ valid after av_read_frame() */
91     HEXDUMP_PRINT("  dts=");
92     if (pkt->dts == AV_NOPTS_VALUE)
93         HEXDUMP_PRINT("N/A");
94     else
95         HEXDUMP_PRINT("%0.3f", pkt->dts * av_q2d(time_base));
96     /* PTS may not be known if B-frames are present. */
97     HEXDUMP_PRINT("  pts=");
98     if (pkt->pts == AV_NOPTS_VALUE)
99         HEXDUMP_PRINT("N/A");
100     else
101         HEXDUMP_PRINT("%0.3f", pkt->pts * av_q2d(time_base));
102     HEXDUMP_PRINT("\n");
103     HEXDUMP_PRINT("  size=%d\n", pkt->size);
104     if (dump_payload)
105         hex_dump_internal(avcl, f, level, pkt->data, pkt->size);
106 }
107
108 void av_pkt_dump2(FILE *f, const AVPacket *pkt, int dump_payload, const AVStream *st)
109 {
110     pkt_dump_internal(NULL, f, 0, pkt, dump_payload, st->time_base);
111 }
112
113 void av_pkt_dump_log2(void *avcl, int level, const AVPacket *pkt, int dump_payload,
114                       const AVStream *st)
115 {
116     pkt_dump_internal(avcl, NULL, level, pkt, dump_payload, st->time_base);
117 }
118
119
120 static void print_fps(double d, const char *postfix)
121 {
122     uint64_t v = lrintf(d * 100);
123     if (!v)
124         av_log(NULL, AV_LOG_INFO, "%1.4f %s", d, postfix);
125     else if (v % 100)
126         av_log(NULL, AV_LOG_INFO, "%3.2f %s", d, postfix);
127     else if (v % (100 * 1000))
128         av_log(NULL, AV_LOG_INFO, "%1.0f %s", d, postfix);
129     else
130         av_log(NULL, AV_LOG_INFO, "%1.0fk %s", d / 1000, postfix);
131 }
132
133 static void dump_metadata(void *ctx, AVDictionary *m, const char *indent)
134 {
135     if (m && !(av_dict_count(m) == 1 && av_dict_get(m, "language", NULL, 0))) {
136         AVDictionaryEntry *tag = NULL;
137
138         av_log(ctx, AV_LOG_INFO, "%sMetadata:\n", indent);
139         while ((tag = av_dict_get(m, "", tag, AV_DICT_IGNORE_SUFFIX)))
140             if (strcmp("language", tag->key)) {
141                 const char *p = tag->value;
142                 av_log(ctx, AV_LOG_INFO,
143                        "%s  %-16s: ", indent, tag->key);
144                 while (*p) {
145                     char tmp[256];
146                     size_t len = strcspn(p, "\x8\xa\xb\xc\xd");
147                     av_strlcpy(tmp, p, FFMIN(sizeof(tmp), len+1));
148                     av_log(ctx, AV_LOG_INFO, "%s", tmp);
149                     p += len;
150                     if (*p == 0xd) av_log(ctx, AV_LOG_INFO, " ");
151                     if (*p == 0xa) av_log(ctx, AV_LOG_INFO, "\n%s  %-16s: ", indent, "");
152                     if (*p) p++;
153                 }
154                 av_log(ctx, AV_LOG_INFO, "\n");
155             }
156     }
157 }
158
159 /* param change side data*/
160 static void dump_paramchange(void *ctx, AVPacketSideData *sd)
161 {
162     int size = sd->size;
163     const uint8_t *data = sd->data;
164     uint32_t flags, channels, sample_rate, width, height;
165     uint64_t layout;
166
167     if (!data || sd->size < 4)
168         goto fail;
169
170     flags = AV_RL32(data);
171     data += 4;
172     size -= 4;
173
174     if (flags & AV_SIDE_DATA_PARAM_CHANGE_CHANNEL_COUNT) {
175         if (size < 4)
176             goto fail;
177         channels = AV_RL32(data);
178         data += 4;
179         size -= 4;
180         av_log(ctx, AV_LOG_INFO, "channel count %"PRIu32", ", channels);
181     }
182     if (flags & AV_SIDE_DATA_PARAM_CHANGE_CHANNEL_LAYOUT) {
183         if (size < 8)
184             goto fail;
185         layout = AV_RL64(data);
186         data += 8;
187         size -= 8;
188         av_log(ctx, AV_LOG_INFO,
189                "channel layout: %s, ", av_get_channel_name(layout));
190     }
191     if (flags & AV_SIDE_DATA_PARAM_CHANGE_SAMPLE_RATE) {
192         if (size < 4)
193             goto fail;
194         sample_rate = AV_RL32(data);
195         data += 4;
196         size -= 4;
197         av_log(ctx, AV_LOG_INFO, "sample_rate %"PRIu32", ", sample_rate);
198     }
199     if (flags & AV_SIDE_DATA_PARAM_CHANGE_DIMENSIONS) {
200         if (size < 8)
201             goto fail;
202         width = AV_RL32(data);
203         data += 4;
204         size -= 4;
205         height = AV_RL32(data);
206         data += 4;
207         size -= 4;
208         av_log(ctx, AV_LOG_INFO, "width %"PRIu32" height %"PRIu32, width, height);
209     }
210
211     return;
212 fail:
213     av_log(ctx, AV_LOG_ERROR, "unknown param");
214 }
215
216 /* replaygain side data*/
217 static void print_gain(void *ctx, const char *str, int32_t gain)
218 {
219     av_log(ctx, AV_LOG_INFO, "%s - ", str);
220     if (gain == INT32_MIN)
221         av_log(ctx, AV_LOG_INFO, "unknown");
222     else
223         av_log(ctx, AV_LOG_INFO, "%f", gain / 100000.0f);
224     av_log(ctx, AV_LOG_INFO, ", ");
225 }
226
227 static void print_peak(void *ctx, const char *str, uint32_t peak)
228 {
229     av_log(ctx, AV_LOG_INFO, "%s - ", str);
230     if (!peak)
231         av_log(ctx, AV_LOG_INFO, "unknown");
232     else
233         av_log(ctx, AV_LOG_INFO, "%f", (float) peak / UINT32_MAX);
234     av_log(ctx, AV_LOG_INFO, ", ");
235 }
236
237 static void dump_replaygain(void *ctx, AVPacketSideData *sd)
238 {
239     AVReplayGain *rg;
240
241     if (sd->size < sizeof(*rg)) {
242         av_log(ctx, AV_LOG_ERROR, "invalid data");
243         return;
244     }
245     rg = (AVReplayGain*)sd->data;
246
247     print_gain(ctx, "track gain", rg->track_gain);
248     print_peak(ctx, "track peak", rg->track_peak);
249     print_gain(ctx, "album gain", rg->album_gain);
250     print_peak(ctx, "album peak", rg->album_peak);
251 }
252
253 static void dump_stereo3d(void *ctx, AVPacketSideData *sd)
254 {
255     AVStereo3D *stereo;
256
257     if (sd->size < sizeof(*stereo)) {
258         av_log(ctx, AV_LOG_ERROR, "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_ERROR, "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, "commentary");
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_ERROR, "invalid data");
319         return;
320     }
321
322     av_log(ctx, AV_LOG_INFO,
323 #if FF_API_UNSANITIZED_BITRATES
324            "bitrate max/min/avg: %d/%d/%d buffer size: %d ",
325 #else
326            "bitrate max/min/avg: %"PRId64"/%"PRId64"/%"PRId64" buffer size: %d ",
327 #endif
328            cpb->max_bitrate, cpb->min_bitrate, cpb->avg_bitrate,
329            cpb->buffer_size);
330     if (cpb->vbv_delay == UINT64_MAX)
331         av_log(ctx, AV_LOG_INFO, "vbv_delay: N/A");
332     else
333         av_log(ctx, AV_LOG_INFO, "vbv_delay: %"PRIu64"", cpb->vbv_delay);
334 }
335
336 static void dump_mastering_display_metadata(void *ctx, AVPacketSideData* sd) {
337     AVMasteringDisplayMetadata* metadata = (AVMasteringDisplayMetadata*)sd->data;
338     av_log(ctx, AV_LOG_INFO, "Mastering Display Metadata, "
339            "has_primaries:%d has_luminance:%d "
340            "r(%5.4f,%5.4f) g(%5.4f,%5.4f) b(%5.4f %5.4f) wp(%5.4f, %5.4f) "
341            "min_luminance=%f, max_luminance=%f",
342            metadata->has_primaries, metadata->has_luminance,
343            av_q2d(metadata->display_primaries[0][0]),
344            av_q2d(metadata->display_primaries[0][1]),
345            av_q2d(metadata->display_primaries[1][0]),
346            av_q2d(metadata->display_primaries[1][1]),
347            av_q2d(metadata->display_primaries[2][0]),
348            av_q2d(metadata->display_primaries[2][1]),
349            av_q2d(metadata->white_point[0]), av_q2d(metadata->white_point[1]),
350            av_q2d(metadata->min_luminance), av_q2d(metadata->max_luminance));
351 }
352
353 static void dump_content_light_metadata(void *ctx, AVPacketSideData* sd)
354 {
355     AVContentLightMetadata* metadata = (AVContentLightMetadata*)sd->data;
356     av_log(ctx, AV_LOG_INFO, "Content Light Level Metadata, "
357            "MaxCLL=%d, MaxFALL=%d",
358            metadata->MaxCLL, metadata->MaxFALL);
359 }
360
361 static void dump_spherical(void *ctx, AVCodecParameters *par, AVPacketSideData *sd)
362 {
363     AVSphericalMapping *spherical = (AVSphericalMapping *)sd->data;
364     double yaw, pitch, roll;
365
366     if (sd->size < sizeof(*spherical)) {
367         av_log(ctx, AV_LOG_ERROR, "invalid data");
368         return;
369     }
370
371     av_log(ctx, AV_LOG_INFO, "%s ", av_spherical_projection_name(spherical->projection));
372
373     yaw = ((double)spherical->yaw) / (1 << 16);
374     pitch = ((double)spherical->pitch) / (1 << 16);
375     roll = ((double)spherical->roll) / (1 << 16);
376     av_log(ctx, AV_LOG_INFO, "(%f/%f/%f) ", yaw, pitch, roll);
377
378     if (spherical->projection == AV_SPHERICAL_EQUIRECTANGULAR_TILE) {
379         size_t l, t, r, b;
380         av_spherical_tile_bounds(spherical, par->width, par->height,
381                                  &l, &t, &r, &b);
382         av_log(ctx, AV_LOG_INFO,
383                "[%"SIZE_SPECIFIER", %"SIZE_SPECIFIER", %"SIZE_SPECIFIER", %"SIZE_SPECIFIER"] ",
384                l, t, r, b);
385     } else if (spherical->projection == AV_SPHERICAL_CUBEMAP) {
386         av_log(ctx, AV_LOG_INFO, "[pad %"PRIu32"] ", spherical->padding);
387     }
388 }
389
390 static void dump_sidedata(void *ctx, AVStream *st, const char *indent)
391 {
392     int i;
393
394     if (st->nb_side_data)
395         av_log(ctx, AV_LOG_INFO, "%sSide data:\n", indent);
396
397     for (i = 0; i < st->nb_side_data; i++) {
398         AVPacketSideData sd = st->side_data[i];
399         av_log(ctx, AV_LOG_INFO, "%s  ", indent);
400
401         switch (sd.type) {
402         case AV_PKT_DATA_PALETTE:
403             av_log(ctx, AV_LOG_INFO, "palette");
404             break;
405         case AV_PKT_DATA_NEW_EXTRADATA:
406             av_log(ctx, AV_LOG_INFO, "new extradata");
407             break;
408         case AV_PKT_DATA_PARAM_CHANGE:
409             av_log(ctx, AV_LOG_INFO, "paramchange: ");
410             dump_paramchange(ctx, &sd);
411             break;
412         case AV_PKT_DATA_H263_MB_INFO:
413             av_log(ctx, AV_LOG_INFO, "H.263 macroblock info");
414             break;
415         case AV_PKT_DATA_REPLAYGAIN:
416             av_log(ctx, AV_LOG_INFO, "replaygain: ");
417             dump_replaygain(ctx, &sd);
418             break;
419         case AV_PKT_DATA_DISPLAYMATRIX:
420             av_log(ctx, AV_LOG_INFO, "displaymatrix: rotation of %.2f degrees",
421                    av_display_rotation_get((int32_t *)sd.data));
422             break;
423         case AV_PKT_DATA_STEREO3D:
424             av_log(ctx, AV_LOG_INFO, "stereo3d: ");
425             dump_stereo3d(ctx, &sd);
426             break;
427         case AV_PKT_DATA_AUDIO_SERVICE_TYPE:
428             av_log(ctx, AV_LOG_INFO, "audio service type: ");
429             dump_audioservicetype(ctx, &sd);
430             break;
431         case AV_PKT_DATA_QUALITY_STATS:
432             av_log(ctx, AV_LOG_INFO, "quality factor: %"PRId32", pict_type: %c",
433                    AV_RL32(sd.data), av_get_picture_type_char(sd.data[4]));
434             break;
435         case AV_PKT_DATA_CPB_PROPERTIES:
436             av_log(ctx, AV_LOG_INFO, "cpb: ");
437             dump_cpb(ctx, &sd);
438             break;
439         case AV_PKT_DATA_MASTERING_DISPLAY_METADATA:
440             dump_mastering_display_metadata(ctx, &sd);
441             break;
442         case AV_PKT_DATA_SPHERICAL:
443             av_log(ctx, AV_LOG_INFO, "spherical: ");
444             dump_spherical(ctx, st->codecpar, &sd);
445             break;
446         case AV_PKT_DATA_CONTENT_LIGHT_LEVEL:
447             dump_content_light_metadata(ctx, &sd);
448             break;
449         case AV_PKT_DATA_ICC_PROFILE:
450             av_log(ctx, AV_LOG_INFO, "ICC Profile");
451             break;
452         default:
453             av_log(ctx, AV_LOG_INFO,
454                    "unknown side data type %d (%d bytes)", sd.type, sd.size);
455             break;
456         }
457
458         av_log(ctx, AV_LOG_INFO, "\n");
459     }
460 }
461
462 /* "user interface" functions */
463 static void dump_stream_format(AVFormatContext *ic, int i,
464                                int index, int is_output)
465 {
466     char buf[256];
467     int flags = (is_output ? ic->oformat->flags : ic->iformat->flags);
468     AVStream *st = ic->streams[i];
469     AVDictionaryEntry *lang = av_dict_get(st->metadata, "language", NULL, 0);
470     char *separator = ic->dump_separator;
471     AVCodecContext *avctx;
472     int ret;
473
474     avctx = avcodec_alloc_context3(NULL);
475     if (!avctx)
476         return;
477
478     ret = avcodec_parameters_to_context(avctx, st->codecpar);
479     if (ret < 0) {
480         avcodec_free_context(&avctx);
481         return;
482     }
483
484     // Fields which are missing from AVCodecParameters need to be taken from the AVCodecContext
485     avctx->properties = st->codec->properties;
486     avctx->codec      = st->codec->codec;
487     avctx->qmin       = st->codec->qmin;
488     avctx->qmax       = st->codec->qmax;
489     avctx->coded_width  = st->codec->coded_width;
490     avctx->coded_height = st->codec->coded_height;
491
492     if (separator)
493         av_opt_set(avctx, "dump_separator", separator, 0);
494     avcodec_string(buf, sizeof(buf), avctx, is_output);
495     avcodec_free_context(&avctx);
496
497     av_log(NULL, AV_LOG_INFO, "    Stream #%d:%d", index, i);
498
499     /* the pid is an important information, so we display it */
500     /* XXX: add a generic system */
501     if (flags & AVFMT_SHOW_IDS)
502         av_log(NULL, AV_LOG_INFO, "[0x%x]", st->id);
503     if (lang)
504         av_log(NULL, AV_LOG_INFO, "(%s)", lang->value);
505     av_log(NULL, AV_LOG_DEBUG, ", %d, %d/%d", st->codec_info_nb_frames,
506            st->time_base.num, st->time_base.den);
507     av_log(NULL, AV_LOG_INFO, ": %s", buf);
508
509     if (st->sample_aspect_ratio.num &&
510         av_cmp_q(st->sample_aspect_ratio, st->codecpar->sample_aspect_ratio)) {
511         AVRational display_aspect_ratio;
512         av_reduce(&display_aspect_ratio.num, &display_aspect_ratio.den,
513                   st->codecpar->width  * (int64_t)st->sample_aspect_ratio.num,
514                   st->codecpar->height * (int64_t)st->sample_aspect_ratio.den,
515                   1024 * 1024);
516         av_log(NULL, AV_LOG_INFO, ", SAR %d:%d DAR %d:%d",
517                st->sample_aspect_ratio.num, st->sample_aspect_ratio.den,
518                display_aspect_ratio.num, display_aspect_ratio.den);
519     }
520
521     if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO) {
522         int fps = st->avg_frame_rate.den && st->avg_frame_rate.num;
523         int tbr = st->r_frame_rate.den && st->r_frame_rate.num;
524         int tbn = st->time_base.den && st->time_base.num;
525         int tbc = st->codec->time_base.den && st->codec->time_base.num;
526
527         if (fps || tbr || tbn || tbc)
528             av_log(NULL, AV_LOG_INFO, "%s", separator);
529
530         if (fps)
531             print_fps(av_q2d(st->avg_frame_rate), tbr || tbn || tbc ? "fps, " : "fps");
532         if (tbr)
533             print_fps(av_q2d(st->r_frame_rate), tbn || tbc ? "tbr, " : "tbr");
534         if (tbn)
535             print_fps(1 / av_q2d(st->time_base), tbc ? "tbn, " : "tbn");
536         if (tbc)
537             print_fps(1 / av_q2d(st->codec->time_base), "tbc");
538     }
539
540     if (st->disposition & AV_DISPOSITION_DEFAULT)
541         av_log(NULL, AV_LOG_INFO, " (default)");
542     if (st->disposition & AV_DISPOSITION_DUB)
543         av_log(NULL, AV_LOG_INFO, " (dub)");
544     if (st->disposition & AV_DISPOSITION_ORIGINAL)
545         av_log(NULL, AV_LOG_INFO, " (original)");
546     if (st->disposition & AV_DISPOSITION_COMMENT)
547         av_log(NULL, AV_LOG_INFO, " (comment)");
548     if (st->disposition & AV_DISPOSITION_LYRICS)
549         av_log(NULL, AV_LOG_INFO, " (lyrics)");
550     if (st->disposition & AV_DISPOSITION_KARAOKE)
551         av_log(NULL, AV_LOG_INFO, " (karaoke)");
552     if (st->disposition & AV_DISPOSITION_FORCED)
553         av_log(NULL, AV_LOG_INFO, " (forced)");
554     if (st->disposition & AV_DISPOSITION_HEARING_IMPAIRED)
555         av_log(NULL, AV_LOG_INFO, " (hearing impaired)");
556     if (st->disposition & AV_DISPOSITION_VISUAL_IMPAIRED)
557         av_log(NULL, AV_LOG_INFO, " (visual impaired)");
558     if (st->disposition & AV_DISPOSITION_CLEAN_EFFECTS)
559         av_log(NULL, AV_LOG_INFO, " (clean effects)");
560     if (st->disposition & AV_DISPOSITION_ATTACHED_PIC)
561         av_log(NULL, AV_LOG_INFO, " (attached pic)");
562     if (st->disposition & AV_DISPOSITION_TIMED_THUMBNAILS)
563         av_log(NULL, AV_LOG_INFO, " (timed thumbnails)");
564     if (st->disposition & AV_DISPOSITION_CAPTIONS)
565         av_log(NULL, AV_LOG_INFO, " (captions)");
566     if (st->disposition & AV_DISPOSITION_DESCRIPTIONS)
567         av_log(NULL, AV_LOG_INFO, " (descriptions)");
568     if (st->disposition & AV_DISPOSITION_METADATA)
569         av_log(NULL, AV_LOG_INFO, " (metadata)");
570     if (st->disposition & AV_DISPOSITION_DEPENDENT)
571         av_log(NULL, AV_LOG_INFO, " (dependent)");
572     if (st->disposition & AV_DISPOSITION_STILL_IMAGE)
573         av_log(NULL, AV_LOG_INFO, " (still image)");
574     av_log(NULL, AV_LOG_INFO, "\n");
575
576     dump_metadata(NULL, st->metadata, "    ");
577
578     dump_sidedata(NULL, st, "    ");
579 }
580
581 void av_dump_format(AVFormatContext *ic, int index,
582                     const char *url, int is_output)
583 {
584     int i;
585     uint8_t *printed = ic->nb_streams ? av_mallocz(ic->nb_streams) : NULL;
586     if (ic->nb_streams && !printed)
587         return;
588
589     av_log(NULL, AV_LOG_INFO, "%s #%d, %s, %s '%s':\n",
590            is_output ? "Output" : "Input",
591            index,
592            is_output ? ic->oformat->name : ic->iformat->name,
593            is_output ? "to" : "from", url);
594     dump_metadata(NULL, ic->metadata, "  ");
595
596     if (!is_output) {
597         av_log(NULL, AV_LOG_INFO, "  Duration: ");
598         if (ic->duration != AV_NOPTS_VALUE) {
599             int hours, mins, secs, us;
600             int64_t duration = ic->duration + (ic->duration <= INT64_MAX - 5000 ? 5000 : 0);
601             secs  = duration / AV_TIME_BASE;
602             us    = duration % AV_TIME_BASE;
603             mins  = secs / 60;
604             secs %= 60;
605             hours = mins / 60;
606             mins %= 60;
607             av_log(NULL, AV_LOG_INFO, "%02d:%02d:%02d.%02d", hours, mins, secs,
608                    (100 * us) / AV_TIME_BASE);
609         } else {
610             av_log(NULL, AV_LOG_INFO, "N/A");
611         }
612         if (ic->start_time != AV_NOPTS_VALUE) {
613             int secs, us;
614             av_log(NULL, AV_LOG_INFO, ", start: ");
615             secs = llabs(ic->start_time / AV_TIME_BASE);
616             us   = llabs(ic->start_time % AV_TIME_BASE);
617             av_log(NULL, AV_LOG_INFO, "%s%d.%06d",
618                    ic->start_time >= 0 ? "" : "-",
619                    secs,
620                    (int) av_rescale(us, 1000000, AV_TIME_BASE));
621         }
622         av_log(NULL, AV_LOG_INFO, ", bitrate: ");
623         if (ic->bit_rate)
624             av_log(NULL, AV_LOG_INFO, "%"PRId64" kb/s", ic->bit_rate / 1000);
625         else
626             av_log(NULL, AV_LOG_INFO, "N/A");
627         av_log(NULL, AV_LOG_INFO, "\n");
628     }
629
630     for (i = 0; i < ic->nb_chapters; i++) {
631         AVChapter *ch = ic->chapters[i];
632         av_log(NULL, AV_LOG_INFO, "    Chapter #%d:%d: ", index, i);
633         av_log(NULL, AV_LOG_INFO,
634                "start %f, ", ch->start * av_q2d(ch->time_base));
635         av_log(NULL, AV_LOG_INFO,
636                "end %f\n", ch->end * av_q2d(ch->time_base));
637
638         dump_metadata(NULL, ch->metadata, "    ");
639     }
640
641     if (ic->nb_programs) {
642         int j, k, total = 0;
643         for (j = 0; j < ic->nb_programs; j++) {
644             AVDictionaryEntry *name = av_dict_get(ic->programs[j]->metadata,
645                                                   "name", NULL, 0);
646             av_log(NULL, AV_LOG_INFO, "  Program %d %s\n", ic->programs[j]->id,
647                    name ? name->value : "");
648             dump_metadata(NULL, ic->programs[j]->metadata, "    ");
649             for (k = 0; k < ic->programs[j]->nb_stream_indexes; k++) {
650                 dump_stream_format(ic, ic->programs[j]->stream_index[k],
651                                    index, is_output);
652                 printed[ic->programs[j]->stream_index[k]] = 1;
653             }
654             total += ic->programs[j]->nb_stream_indexes;
655         }
656         if (total < ic->nb_streams)
657             av_log(NULL, AV_LOG_INFO, "  No Program\n");
658     }
659
660     for (i = 0; i < ic->nb_streams; i++)
661         if (!printed[i])
662             dump_stream_format(ic, i, index, is_output);
663
664     av_free(printed);
665 }