Browse Source

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@google.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n1.2
Vignesh Venkatasubramanian Michael Niedermayer 13 years ago
parent
commit
579c4add63
1 changed files with 6 additions and 1 deletions
  1. +6
    -1
      libavformat/framecrcenc.c

+ 6
- 1
libavformat/framecrcenc.c View File

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


Loading…
Cancel
Save