[FFmpeg-cvslog] Fate test to print side_data crc if present
Vignesh Venkatasubramanian
git at videolan.org
Wed Feb 6 18:25:01 CET 2013
ffmpeg | branch: master | Vignesh Venkatasubramanian <vigneshv at google.com> | Tue Feb 5 12:10:21 2013 -0800| [579c4add6334f41fb12ae71e3cc992e6fde56f06] | committer: Michael Niedermayer
Fate test to print side_data crc if present
Modified the fate test crc generator to print the side_data's
crc if side_data is present.
Signed-off-by: Vignesh Venkatasubramanian <vigneshv at google.com>
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=579c4add6334f41fb12ae71e3cc992e6fde56f06
---
libavformat/framecrcenc.c | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/libavformat/framecrcenc.c b/libavformat/framecrcenc.c
index 8a69748..eddcabe 100644
--- a/libavformat/framecrcenc.c
+++ b/libavformat/framecrcenc.c
@@ -33,8 +33,13 @@ static int framecrc_write_packet(struct AVFormatContext *s, AVPacket *pkt)
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)
+ if (pkt->side_data_elems) {
+ uint32_t side_data_crc = av_adler32_update(0,
+ pkt->side_data->data,
+ pkt->side_data->size);
av_strlcatf(buf, sizeof(buf), ", S=%d", pkt->side_data_elems);
+ av_strlcatf(buf, sizeof(buf), ", 0x%08x", side_data_crc);
+ }
av_strlcatf(buf, sizeof(buf), "\n");
avio_write(s->pb, buf, strlen(buf));
avio_flush(s->pb);
More information about the ffmpeg-cvslog
mailing list