mirror of https://git.ffmpeg.org/ffmpeg.git
avformat/framecrcenc: print the checksum and size of extradata as well
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
29f427c239
commit
153b5fb2fd
|
@ -26,6 +26,22 @@
|
|||
#include "avformat.h"
|
||||
#include "internal.h"
|
||||
|
||||
static int framecrc_write_header(struct AVFormatContext *s)
|
||||
{
|
||||
int i;
|
||||
for (i = 0; i < s->nb_streams; i++) {
|
||||
AVStream *st = s->streams[i];
|
||||
AVCodecContext *avctx = st->codec;
|
||||
if (avctx->extradata) {
|
||||
uint32_t crc = av_adler32_update(0, avctx->extradata, avctx->extradata_size);
|
||||
avio_printf(s->pb, "#extradata %d: %8d, 0x%08"PRIx32"\n",
|
||||
i, avctx->extradata_size, crc);
|
||||
}
|
||||
}
|
||||
|
||||
return ff_framehash_write_header(s);
|
||||
}
|
||||
|
||||
static int framecrc_write_packet(struct AVFormatContext *s, AVPacket *pkt)
|
||||
{
|
||||
uint32_t crc = av_adler32_update(0, pkt->data, pkt->size);
|
||||
|
@ -65,7 +81,7 @@ AVOutputFormat ff_framecrc_muxer = {
|
|||
.long_name = NULL_IF_CONFIG_SMALL("framecrc testing"),
|
||||
.audio_codec = AV_CODEC_ID_PCM_S16LE,
|
||||
.video_codec = AV_CODEC_ID_RAWVIDEO,
|
||||
.write_header = ff_framehash_write_header,
|
||||
.write_header = framecrc_write_header,
|
||||
.write_packet = framecrc_write_packet,
|
||||
.flags = AVFMT_VARIABLE_FPS | AVFMT_TS_NONSTRICT |
|
||||
AVFMT_TS_NEGATIVE,
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
#extradata 0: 19, 0x1f2604b9
|
||||
#tb 0: 1/90000
|
||||
0, 0, 0, 0, 20883, 0x347191e2
|
||||
0, 0, 3600, 0, 20882, 0xe1573905
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
#extradata 0: 28, 0x2f140538
|
||||
#tb 0: 1001/30000
|
||||
#tb 1: 1/90000
|
||||
0, 0, -9223372036854775808, 1, 5951, 0xe9118e0d
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
#extradata 0: 35, 0xc3b20b70
|
||||
#extradata 1: 2, 0x00b200a1
|
||||
#tb 0: 1/1000
|
||||
#tb 1: 1/1000
|
||||
0, -42, 0, 0, 63501, 0x139d4c99
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
#extradata 0: 9, 0x116c033a
|
||||
#tb 0: 1/16
|
||||
#tb 1: 1/44100
|
||||
0, 0, 0, 1, 12288, 0xc2258ebc
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
#extradata 0: 18, 0x0b150244
|
||||
#tb 0: 1/25
|
||||
#tb 1: 1/8000
|
||||
0, 0, -9223372036854775808, 1, 8468, 0xc0855553
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
#extradata 0: 19, 0x1afd0446
|
||||
#tb 0: 1/100
|
||||
0, 0, -9223372036854775808, 1, 19787, 0x75e463f3
|
||||
0, 1, -9223372036854775808, 1, 11913, 0x0f429c34, F=0x0
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
#extradata 1: 150, 0x7c99258b
|
||||
#tb 0: 1/5
|
||||
#tb 1: 1/1000
|
||||
0, 0, 0, 1, 518400, 0x83c27b82
|
||||
|
|
|
@ -1 +1 @@
|
|||
d72fb75fb22f4bcc94a1dc7af5356ec1
|
||||
084a9bf92d4096c8156d1fce50dac8b8
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
#extradata 0: 4, 0x021800a2
|
||||
#extradata 1: 46, 0x63d9043a
|
||||
#tb 0: 1/1000
|
||||
#tb 1: 1/1000
|
||||
0, 0, 0, 0, 282, 0x000d949a
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
#extradata 0: 86, 0xc7ca09e5
|
||||
#extradata 1: 22, 0x12dc010c
|
||||
#tb 0: 1/10000000
|
||||
#tb 1: 1/10000000
|
||||
1, -2, -2, 240000, 576, 0x9b6e1638
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
#extradata 0: 4, 0x015a00ad
|
||||
#tb 0: 1/1000
|
||||
#tb 1: 16/11025
|
||||
0, 0, 0, 0, 1508, 0xefceba48
|
||||
|
|
Loading…
Reference in New Issue