From dc82b2c0f1ddb72e46e203723249e18ee262a843 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Tue, 2 Oct 2012 21:21:51 +0200 Subject: framecrcenc: print flags and side data elements The new fields are only printed when they differ from their defaults this way only few fate refs change Signed-off-by: Michael Niedermayer --- libavformat/framecrcenc.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'libavformat/framecrcenc.c') diff --git a/libavformat/framecrcenc.c b/libavformat/framecrcenc.c index b17c92284a..8a6974891e 100644 --- a/libavformat/framecrcenc.c +++ b/libavformat/framecrcenc.c @@ -20,6 +20,7 @@ */ #include "libavutil/adler32.h" +#include "libavutil/avstring.h" #include "avformat.h" #include "internal.h" @@ -28,8 +29,13 @@ static int framecrc_write_packet(struct AVFormatContext *s, AVPacket *pkt) uint32_t crc = av_adler32_update(0, pkt->data, pkt->size); char buf[256]; - snprintf(buf, sizeof(buf), "%d, %10"PRId64", %10"PRId64", %8d, %8d, 0x%08x\n", + snprintf(buf, sizeof(buf), "%d, %10"PRId64", %10"PRId64", %8d, %8d, 0x%08x", pkt->stream_index, pkt->dts, pkt->pts, pkt->duration, pkt->size, crc); + if (pkt->flags != AV_PKT_FLAG_KEY) + av_strlcatf(buf, sizeof(buf), ", F=0x%0X", pkt->flags); + if (pkt->side_data_elems) + av_strlcatf(buf, sizeof(buf), ", S=%d", pkt->side_data_elems); + av_strlcatf(buf, sizeof(buf), "\n"); avio_write(s->pb, buf, strlen(buf)); avio_flush(s->pb); return 0; -- cgit v1.2.3