17 Jun 2012 22:23
[PATCH] ffprobe: dump AVPacket.convergence_duration.
Nicolas George <nicolas.george <at> normalesup.org>
2012-06-17 20:23:11 GMT
2012-06-17 20:23:11 GMT
Signed-off-by: Nicolas George <nicolas.george <at> normalesup.org>
---
doc/ffprobe.xsd | 2 ++
ffprobe.c | 2 ++
2 files changed, 4 insertions(+)
diff --git a/doc/ffprobe.xsd b/doc/ffprobe.xsd
index 7f12a36..3a4a8cc 100644
--- a/doc/ffprobe.xsd
+++ b/doc/ffprobe.xsd
<at> <at> -39,6 +39,8 <at> <at>
<xsd:attribute name="dts_time" type="xsd:float" />
<xsd:attribute name="duration" type="xsd:long" />
<xsd:attribute name="duration_time" type="xsd:float" />
+ <xsd:attribute name="convergence_duration" type="xsd:long" />
+ <xsd:attribute name="convergence_duration_time" type="xsd:float" />
<xsd:attribute name="size" type="xsd:long" use="required" />
<xsd:attribute name="pos" type="xsd:long" />
<xsd:attribute name="flags" type="xsd:string" use="required" />
diff --git a/ffprobe.c b/ffprobe.c
index 0e34f6b..f65e460 100644
--- a/ffprobe.c
+++ b/ffprobe.c
<at> <at> -1581,6 +1581,8 <at> <at> static void show_packet(WriterContext *w, AVFormatContext *fmt_ctx, AVPacket *pk
print_time("dts_time", pkt->dts, &st->time_base);
print_duration_ts("duration", pkt->duration);
print_duration_time("duration_time", pkt->duration, &st->time_base);
+ print_duration_ts("convergence_duration", pkt->convergence_duration);
+ print_duration_time("convergence_duration_time", pkt->convergence_duration, &st->time_base);
(Continue reading)
RSS Feed