Skip to content
Snippets Groups Projects
Commit b2c44319 authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

framecrcenc: Also print the size of side data elements

parent 579c4add
No related branches found
No related tags found
No related merge requests found
......@@ -38,7 +38,7 @@ static int framecrc_write_packet(struct AVFormatContext *s, AVPacket *pkt)
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), ", %8d, 0x%08x", pkt->side_data->size, side_data_crc);
}
av_strlcatf(buf, sizeof(buf), "\n");
avio_write(s->pb, buf, strlen(buf));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment