diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-10-02 21:21:51 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-10-03 16:51:30 +0200 |
commit | dc82b2c0f1ddb72e46e203723249e18ee262a843 (patch) | |
tree | ef5843afa98409c46ba93197e98d3a686ef31cf5 /libavformat/framecrcenc.c | |
parent | 6a697b42d0c8469c05e2a1a0920d8539ba7b068d (diff) | |
download | ffmpeg-dc82b2c0f1ddb72e46e203723249e18ee262a843.tar.gz |
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 <michaelni@gmx.at>
Diffstat (limited to 'libavformat/framecrcenc.c')
-rw-r--r-- | libavformat/framecrcenc.c | 8 |
1 files changed, 7 insertions, 1 deletions
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; |