[FFmpeg-devel] [PATCH] Fate test to print side_data crc if present

Vignesh Venkatasubramanian vigneshv at google.com
Tue Feb 5 21:10:21 CET 2013


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>
---
 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);
-- 
1.8.1



More information about the ffmpeg-devel mailing list