Commit cd1ad18a authored by Anton Khirnov's avatar Anton Khirnov

rawenc: switch to encode2().

This changes a number of FATE results, since before this commit, the
timestamps in all tests using rawenc were made up by lavf.

In most cases, the previous timestamps were completely bogus.

In some other cases -- raw formats, mostly h264 -- the new timestamps
are bogus as well. The only difference is that timestamps invented by
the muxer are replaced by timestamps invented by the demuxer.

cscd     -- avconv sets output codec timebase from r_frame_rate
and r_frame_rate is in this case some guessed number 31.42 (377/12),
which is not accurate enough to represent all timestamps. This results
in some frames having duplicate pts. Therefore, vsync 0 needs to be
changed to vsync 2 and avconv drops two frames. A proper fix in the
future would be to set output timebase to something saner in avconv.

nuv      -- previous timestamps for video were wrong AND the cscd
comment applies, one frame is dropped.

vp8-signbias -- the file contains two frames with identical timestamps,
so -vsync 0 needs to be removed/changed to -vsync 2 and avconv drops one
frame.

vc1-ism -- apparrently either the demuxer lies about timestamps or the
file is broken, since dts == pts on all packets, but reordering clearly
takes place.
parent 38d55332
......@@ -26,6 +26,7 @@
#include "avcodec.h"
#include "raw.h"
#include "internal.h"
#include "libavutil/pixdesc.h"
#include "libavutil/intreadwrite.h"
......@@ -40,19 +41,29 @@ static av_cold int raw_init_encoder(AVCodecContext *avctx)
return 0;
}
static int raw_encode(AVCodecContext *avctx,
unsigned char *frame, int buf_size, void *data)
static int raw_encode(AVCodecContext *avctx, AVPacket *pkt,
const AVFrame *frame, int *got_packet)
{
int ret = avpicture_layout((AVPicture *)data, avctx->pix_fmt, avctx->width,
avctx->height, frame, buf_size);
int ret = avpicture_get_size(avctx->pix_fmt, avctx->width, avctx->height);
if (ret < 0)
return ret;
if ((ret = ff_alloc_packet(pkt, ret)) < 0)
return ret;
if ((ret = avpicture_layout((const AVPicture *)frame, avctx->pix_fmt, avctx->width,
avctx->height, pkt->data, pkt->size)) < 0)
return ret;
if(avctx->codec_tag == AV_RL32("yuv2") && ret > 0 &&
avctx->pix_fmt == PIX_FMT_YUYV422) {
int x;
for(x = 1; x < avctx->height*avctx->width*2; x += 2)
frame[x] ^= 0x80;
pkt->data[x] ^= 0x80;
}
return ret;
pkt->flags |= AV_PKT_FLAG_KEY;
*got_packet = 1;
return 0;
}
AVCodec ff_rawvideo_encoder = {
......@@ -61,6 +72,6 @@ AVCodec ff_rawvideo_encoder = {
.id = CODEC_ID_RAWVIDEO,
.priv_data_size = sizeof(AVFrame),
.init = raw_init_encoder,
.encode = raw_encode,
.encode2 = raw_encode,
.long_name = NULL_IF_CONFIG_SMALL("raw video"),
};
# FIXME dropped frames in this test because of coarse timebase
FATE_TESTS += fate-cscd
fate-cscd: CMD = framecrc -i $(SAMPLES)/CSCD/sample_video.avi -an -vsync 0 -pix_fmt rgb24
fate-cscd: CMD = framecrc -i $(SAMPLES)/CSCD/sample_video.avi -an -pix_fmt rgb24
FATE_TESTS += fate-dxtory
fate-dxtory: CMD = framecrc -i $(SAMPLES)/dxtory/dxtory_mic.avi
......
......@@ -142,8 +142,9 @@ fate-motionpixels: CMD = framecrc -i $(SAMPLES)/motion-pixels/INTRO-partial.MVI
FATE_TESTS += fate-mpeg2-field-enc
fate-mpeg2-field-enc: CMD = framecrc -flags +bitexact -dct fastint -idct simple -i $(SAMPLES)/mpeg2/mpeg2_field_encoding.ts -an
# FIXME dropped frames in this test because of coarse timebase
FATE_TESTS += fate-nuv
fate-nuv: CMD = framecrc -idct simple -i $(SAMPLES)/nuv/Today.nuv -vsync 0
fate-nuv: CMD = framecrc -idct simple -i $(SAMPLES)/nuv/Today.nuv
FATE_TESTS += fate-qpeg
fate-qpeg: CMD = framecrc -i $(SAMPLES)/qpeg/Clock.avi -an -pix_fmt rgb24
......
......@@ -33,8 +33,10 @@ endef
define FATE_VP8_FULL
$(foreach N,$(VP8_SUITE),$(eval $(call FATE_VP8_SUITE,$(N),$(1),$(2))))
# FIXME this file contains two frames with identical timestamps,
# so avconv drops one of them
FATE_VP8 += fate-vp8-sign-bias$(1)
fate-vp8-sign-bias$(1): CMD = framemd5 $(2) -i $(SAMPLES)/vp8/sintel-signbias.ivf -vsync 0
fate-vp8-sign-bias$(1): CMD = framemd5 $(2) -i $(SAMPLES)/vp8/sintel-signbias.ivf
fate-vp8-sign-bias$(1): REF = $(SRC_PATH)/tests/ref/fate/vp8-sign-bias
endef
......
This diff is collapsed.
This diff is collapsed.
......@@ -69,56 +69,56 @@
0, 67, 67, 1, 192000, 0xa72a38ee
0, 68, 68, 1, 192000, 0xdd7f371d
0, 69, 69, 1, 192000, 0xeed134c6
0, 70, 70, 1, 192000, 0x362931f5
0, 71, 71, 1, 192000, 0xfb41331d
0, 72, 72, 1, 192000, 0x087433f8
0, 73, 73, 1, 192000, 0xf36b34a6
0, 74, 74, 1, 192000, 0x652a33cd
0, 75, 75, 1, 192000, 0x652a33cd
0, 76, 76, 1, 192000, 0xe50c336a
0, 77, 77, 1, 192000, 0x652a33cd
0, 78, 78, 1, 192000, 0xeed134c6
0, 79, 79, 1, 192000, 0x652a33cd
0, 80, 80, 1, 192000, 0x5d7633e5
0, 81, 81, 1, 192000, 0x845233b5
0, 82, 82, 1, 192000, 0x9d1c349b
0, 83, 83, 1, 192000, 0x25843317
0, 84, 84, 1, 192000, 0xc84b375c
0, 85, 85, 1, 192000, 0xaf2b3410
0, 86, 86, 1, 192000, 0xaf2b3410
0, 87, 87, 1, 192000, 0x26d23594
0, 88, 88, 1, 192000, 0xaf2b3410
0, 89, 89, 1, 192000, 0x26d23594
0, 90, 90, 1, 192000, 0xaf2b3410
0, 91, 91, 1, 192000, 0x72c4dfb9
0, 92, 92, 1, 192000, 0x3c72e390
0, 93, 93, 1, 192000, 0xb4466634
0, 94, 94, 1, 192000, 0x84f064f5
0, 95, 95, 1, 192000, 0xad43f3f5
0, 96, 96, 1, 192000, 0xa8644d57
0, 97, 97, 1, 192000, 0xfac35238
0, 98, 98, 1, 192000, 0xe9374d1e
0, 99, 99, 1, 192000, 0x0bd14cfa
0, 100, 100, 1, 192000, 0x7e51a437
0, 101, 101, 1, 192000, 0x92678dfa
0, 102, 102, 1, 192000, 0x43338d41
0, 103, 103, 1, 192000, 0x00000000
0, 104, 104, 1, 192000, 0x00000000
0, 105, 105, 1, 192000, 0x00000000
0, 106, 106, 1, 192000, 0x00000000
0, 107, 107, 1, 192000, 0x00000000
0, 108, 108, 1, 192000, 0x00000000
0, 109, 109, 1, 192000, 0x00000000
0, 110, 110, 1, 192000, 0x00000000
0, 111, 111, 1, 192000, 0x00000000
0, 112, 112, 1, 192000, 0x00000000
0, 113, 113, 1, 192000, 0x00000000
0, 114, 114, 1, 192000, 0x00000000
0, 115, 115, 1, 192000, 0x00000000
0, 116, 116, 1, 192000, 0x00000000
0, 117, 117, 1, 192000, 0x00000000
0, 118, 118, 1, 192000, 0x00000000
0, 119, 119, 1, 192000, 0x00000000
0, 120, 120, 1, 192000, 0x00000000
0, 121, 121, 1, 192000, 0x00000000
0, 122, 122, 1, 192000, 0x82a79641
0, 103, 103, 1, 192000, 0x362931f5
0, 104, 104, 1, 192000, 0xfb41331d
0, 105, 105, 1, 192000, 0x087433f8
0, 106, 106, 1, 192000, 0xf36b34a6
0, 107, 107, 1, 192000, 0x652a33cd
0, 108, 108, 1, 192000, 0x652a33cd
0, 109, 109, 1, 192000, 0xe50c336a
0, 110, 110, 1, 192000, 0x652a33cd
0, 111, 111, 1, 192000, 0xeed134c6
0, 112, 112, 1, 192000, 0x652a33cd
0, 113, 113, 1, 192000, 0x5d7633e5
0, 114, 114, 1, 192000, 0x845233b5
0, 115, 115, 1, 192000, 0x9d1c349b
0, 116, 116, 1, 192000, 0x25843317
0, 117, 117, 1, 192000, 0xc84b375c
0, 118, 118, 1, 192000, 0xaf2b3410
0, 119, 119, 1, 192000, 0xaf2b3410
0, 120, 120, 1, 192000, 0x26d23594
0, 121, 121, 1, 192000, 0xaf2b3410
0, 122, 122, 1, 192000, 0x26d23594
0, 123, 123, 1, 192000, 0xaf2b3410
0, 124, 124, 1, 192000, 0x72c4dfb9
0, 125, 125, 1, 192000, 0x3c72e390
0, 126, 126, 1, 192000, 0xb4466634
0, 127, 127, 1, 192000, 0x84f064f5
0, 128, 128, 1, 192000, 0xad43f3f5
0, 129, 129, 1, 192000, 0xa8644d57
0, 130, 130, 1, 192000, 0xfac35238
0, 131, 131, 1, 192000, 0xe9374d1e
0, 132, 132, 1, 192000, 0x0bd14cfa
0, 133, 133, 1, 192000, 0x7e51a437
0, 134, 134, 1, 192000, 0x92678dfa
0, 135, 135, 1, 192000, 0x43338d41
0, 136, 136, 1, 192000, 0x00000000
0, 137, 137, 1, 192000, 0x00000000
0, 138, 138, 1, 192000, 0x00000000
0, 139, 139, 1, 192000, 0x00000000
0, 140, 140, 1, 192000, 0x00000000
0, 141, 141, 1, 192000, 0x00000000
0, 142, 142, 1, 192000, 0x00000000
0, 143, 143, 1, 192000, 0x00000000
0, 144, 144, 1, 192000, 0x00000000
0, 145, 145, 1, 192000, 0x00000000
0, 146, 146, 1, 192000, 0x00000000
0, 147, 147, 1, 192000, 0x00000000
0, 148, 148, 1, 192000, 0x00000000
0, 149, 149, 1, 192000, 0x00000000
0, 150, 150, 1, 192000, 0x00000000
0, 151, 151, 1, 192000, 0x00000000
0, 152, 152, 1, 192000, 0x00000000
0, 153, 153, 1, 192000, 0x00000000
0, 154, 154, 1, 192000, 0x00000000
0, 155, 155, 1, 192000, 0x82a79641
#tb 0: 71/500
0, 0, 0, 1, 921600, 0xe6309638
0, 1, 1, 1, 921600, 0xa99a7665
0, 2, 2, 1, 921600, 0x172ccfbb
0, 3, 3, 1, 921600, 0xcf676571
0, 4, 4, 1, 921600, 0x6a5077f2
0, 1, 1, 1, 921600, 0xe6309638
0, 2, 2, 1, 921600, 0xa99a7665
0, 3, 3, 1, 921600, 0x172ccfbb
0, 4, 4, 1, 921600, 0xcf676571
0, 5, 5, 1, 921600, 0x6a5077f2
0, 6, 6, 1, 921600, 0x6a5077f2
0, 7, 7, 1, 921600, 0x6a5077f2
0, 8, 8, 1, 921600, 0x6a5077f2
0, 9, 9, 1, 921600, 0x6a5077f2
0, 10, 10, 1, 921600, 0xb83db404
0, 11, 11, 1, 921600, 0x997ceb90
0, 12, 12, 1, 921600, 0xd707157c
0, 10, 10, 1, 921600, 0x6a5077f2
0, 11, 11, 1, 921600, 0xb83db404
0, 12, 12, 1, 921600, 0x997ceb90
0, 13, 13, 1, 921600, 0xd707157c
This diff is collapsed.
This diff is collapsed.
#tb 0: 1/25
0, 0, 0, 1, 518400, 0xbf168f4e
0, 1, 1, 1, 518400, 0xeda5e54f
0, 2, 2, 1, 518400, 0xef496d43
0, 3, 3, 1, 518400, 0x6b68dad5
0, 4, 4, 1, 518400, 0x9a40a7de
0, 5, 5, 1, 518400, 0x0c21c018
0, 6, 6, 1, 518400, 0x4ac5a846
0, 7, 7, 1, 518400, 0x3a1aa817
0, 8, 8, 1, 518400, 0xcc4eb434
0, 9, 9, 1, 518400, 0x4368a3c2
0, 10, 10, 1, 518400, 0xb923682f
0, 11, 11, 1, 518400, 0xd95460a8
0, 12, 12, 1, 518400, 0x8e8518aa
0, 13, 13, 1, 518400, 0x292a1a80
0, 14, 14, 1, 518400, 0xbada388e
0, 15, 15, 1, 518400, 0xa67f63c9
0, 16, 16, 1, 518400, 0x9fc77e21
0, 17, 17, 1, 518400, 0xe99dc2ac
0, 18, 18, 1, 518400, 0x17d7d080
0, 19, 19, 1, 518400, 0x41760c0b
0, 20, 20, 1, 518400, 0x3c70f34d
0, 21, 21, 1, 518400, 0x0d640285
0, 22, 22, 1, 518400, 0x448893e8
0, 23, 23, 1, 518400, 0x08194490
0, 24, 24, 1, 518400, 0xcf227031
0, 25, 25, 1, 518400, 0x8d94587d
0, 26, 26, 1, 518400, 0x696fca01
0, 27, 27, 1, 518400, 0xe0ab234b
0, 28, 28, 1, 518400, 0x0620153b
0, 29, 29, 1, 518400, 0xb78c146c
0, 2, 2, 1, 518400, 0xbf168f4e
0, 4, 4, 1, 518400, 0xeda5e54f
0, 6, 6, 1, 518400, 0xef496d43
0, 8, 8, 1, 518400, 0x6b68dad5
0, 10, 10, 1, 518400, 0x9a40a7de
0, 12, 12, 1, 518400, 0x0c21c018
0, 14, 14, 1, 518400, 0x4ac5a846
0, 16, 16, 1, 518400, 0x3a1aa817
0, 18, 18, 1, 518400, 0xcc4eb434
0, 20, 20, 1, 518400, 0x4368a3c2
0, 22, 22, 1, 518400, 0xb923682f
0, 24, 24, 1, 518400, 0xd95460a8
0, 26, 26, 1, 518400, 0x8e8518aa
0, 28, 28, 1, 518400, 0x292a1a80
0, 30, 30, 1, 518400, 0xbada388e
0, 32, 32, 1, 518400, 0xa67f63c9
0, 34, 34, 1, 518400, 0x9fc77e21
0, 36, 36, 1, 518400, 0xe99dc2ac
0, 38, 38, 1, 518400, 0x17d7d080
0, 40, 40, 1, 518400, 0x41760c0b
0, 42, 42, 1, 518400, 0x3c70f34d
0, 44, 44, 1, 518400, 0x0d640285
0, 46, 46, 1, 518400, 0x448893e8
0, 48, 48, 1, 518400, 0x08194490
0, 50, 50, 1, 518400, 0xcf227031
0, 52, 52, 1, 518400, 0x8d94587d
0, 54, 54, 1, 518400, 0x696fca01
0, 56, 56, 1, 518400, 0xe0ab234b
0, 58, 58, 1, 518400, 0x0620153b
0, 59, 59, 1, 518400, 0xb78c146c
#tb 0: 1/25
0, 0, 0, 1, 518400, 0xd8b58a23
0, 1, 1, 1, 518400, 0xe53b4aba
0, 2, 2, 1, 518400, 0x6cbca47a
0, 3, 3, 1, 518400, 0xceb51253
0, 4, 4, 1, 518400, 0x60cb3cdd
0, 5, 5, 1, 518400, 0x7b633553
0, 6, 6, 1, 518400, 0x10c012c9
0, 7, 7, 1, 518400, 0xa340ee20
0, 8, 8, 1, 518400, 0x574c22c2
0, 9, 9, 1, 518400, 0xbcdb1bf7
0, 10, 10, 1, 518400, 0x57811e9a
0, 11, 11, 1, 518400, 0xdd4af748
0, 12, 12, 1, 518400, 0xb931a637
0, 13, 13, 1, 518400, 0xcef6ce95
0, 14, 14, 1, 518400, 0xd28c7085
0, 15, 15, 1, 518400, 0xae9daf53
0, 16, 16, 1, 518400, 0xca29d819
0, 17, 17, 1, 518400, 0x3c4bd7eb
0, 18, 18, 1, 518400, 0x912ee227
0, 19, 19, 1, 518400, 0xb67d0e27
0, 20, 20, 1, 518400, 0x8cf7309d
0, 21, 21, 1, 518400, 0x358ad344
0, 22, 22, 1, 518400, 0x4462c642
0, 23, 23, 1, 518400, 0x3bb43428
0, 24, 24, 1, 518400, 0x12d6f8ca
0, 25, 25, 1, 518400, 0x003f13aa
0, 26, 26, 1, 518400, 0x6cd8c432
0, 27, 27, 1, 518400, 0xee5ff01b
0, 28, 28, 1, 518400, 0xba0616ee
0, 29, 29, 1, 518400, 0x37fa7891
0, 1, 1, 1, 518400, 0xd8b58a23
0, 3, 3, 1, 518400, 0xe53b4aba
0, 4, 4, 1, 518400, 0x6cbca47a
0, 5, 5, 1, 518400, 0xceb51253
0, 6, 6, 1, 518400, 0x60cb3cdd
0, 8, 8, 1, 518400, 0x7b633553
0, 10, 10, 1, 518400, 0x10c012c9
0, 12, 12, 1, 518400, 0xa340ee20
0, 13, 13, 1, 518400, 0x574c22c2
0, 14, 14, 1, 518400, 0xbcdb1bf7
0, 15, 15, 1, 518400, 0x57811e9a
0, 17, 17, 1, 518400, 0xdd4af748
0, 19, 19, 1, 518400, 0xb931a637
0, 21, 21, 1, 518400, 0xcef6ce95
0, 22, 22, 1, 518400, 0xd28c7085
0, 23, 23, 1, 518400, 0xae9daf53
0, 24, 24, 1, 518400, 0xca29d819
0, 26, 26, 1, 518400, 0x3c4bd7eb
0, 28, 28, 1, 518400, 0x912ee227
0, 30, 30, 1, 518400, 0xb67d0e27
0, 31, 31, 1, 518400, 0x8cf7309d
0, 32, 32, 1, 518400, 0x358ad344
0, 33, 33, 1, 518400, 0x4462c642
0, 35, 35, 1, 518400, 0x3bb43428
0, 37, 37, 1, 518400, 0x12d6f8ca
0, 39, 39, 1, 518400, 0x003f13aa
0, 40, 40, 1, 518400, 0x6cd8c432
0, 41, 41, 1, 518400, 0xee5ff01b
0, 43, 43, 1, 518400, 0xba0616ee
0, 44, 44, 1, 518400, 0x37fa7891
#tb 0: 1/25
0, 0, 0, 1, 152064, 0x2061bbd0
0, 1, 1, 1, 152064, 0x41adb750
0, 2, 2, 1, 152064, 0x6e889e90
0, 3, 3, 1, 152064, 0xbb5e60f5
0, 4, 4, 1, 152064, 0x5a32eca7
0, 5, 5, 1, 152064, 0x5cb05e88
0, 6, 6, 1, 152064, 0x2fff3e6c
0, 7, 7, 1, 152064, 0xd917c85e
0, 8, 8, 1, 152064, 0x6eac446f
0, 9, 9, 1, 152064, 0x238b24b0
0, 10, 10, 1, 152064, 0x3f3bd44c
0, 11, 11, 1, 152064, 0x73982bc5
0, 12, 12, 1, 152064, 0xf6188a82
0, 13, 13, 1, 152064, 0x818c5b41
0, 14, 14, 1, 152064, 0x000d1012
0, 15, 15, 1, 152064, 0xc4a8750e
0, 16, 16, 1, 152064, 0x1689bb77
0, 17, 17, 1, 152064, 0x8f52f338
0, 18, 18, 1, 152064, 0xbf5ee06b
0, 19, 19, 1, 152064, 0x89508ad7
0, 20, 20, 1, 152064, 0x2b1986a6
0, 21, 21, 1, 152064, 0xe6fd6b0e
0, 22, 22, 1, 152064, 0x883e2e4e
0, 23, 23, 1, 152064, 0xd133db07
0, 24, 24, 1, 152064, 0x39b3bb22
0, 25, 25, 1, 152064, 0x8447410a
0, 26, 26, 1, 152064, 0x9c66c6e5
0, 27, 27, 1, 152064, 0x514de9cc
0, 28, 28, 1, 152064, 0x08d9f1da
0, 29, 29, 1, 152064, 0x8f10f536
0, 30, 30, 1, 152064, 0x57d4b27b
0, 31, 31, 1, 152064, 0x46f56d3c
0, 32, 32, 1, 152064, 0x5d260230
0, 33, 33, 1, 152064, 0x4a72aeac
0, 34, 34, 1, 152064, 0x5cfe187f
0, 35, 35, 1, 152064, 0x08e55cb2
0, 36, 36, 1, 152064, 0x4727f34f
0, 37, 37, 1, 152064, 0xd6a26f1c
0, 38, 38, 1, 152064, 0xcc1fcf9c
0, 39, 39, 1, 152064, 0x3681b775
0, 40, 40, 1, 152064, 0xf580c7d9
0, 41, 41, 1, 152064, 0xaa6747fb
0, 42, 42, 1, 152064, 0x2e22f9f9
0, 43, 43, 1, 152064, 0xb3ee6d81
0, 44, 44, 1, 152064, 0x930b0145
0, 45, 45, 1, 152064, 0xae36af99
0, 46, 46, 1, 152064, 0xeb58fd26
0, 47, 47, 1, 152064, 0xb9004da3
0, 48, 48, 1, 152064, 0x2b25e444
0, 49, 49, 1, 152064, 0xb36927de
0, 2, 2, 1, 152064, 0x2061bbd0
0, 4, 4, 1, 152064, 0x41adb750
0, 6, 6, 1, 152064, 0x6e889e90
0, 8, 8, 1, 152064, 0xbb5e60f5
0, 10, 10, 1, 152064, 0x5a32eca7
0, 12, 12, 1, 152064, 0x5cb05e88
0, 14, 14, 1, 152064, 0x2fff3e6c
0, 16, 16, 1, 152064, 0xd917c85e
0, 18, 18, 1, 152064, 0x6eac446f
0, 20, 20, 1, 152064, 0x238b24b0
0, 22, 22, 1, 152064, 0x3f3bd44c
0, 24, 24, 1, 152064, 0x73982bc5
0, 26, 26, 1, 152064, 0xf6188a82
0, 28, 28, 1, 152064, 0x818c5b41
0, 30, 30, 1, 152064, 0x000d1012
0, 32, 32, 1, 152064, 0xc4a8750e
0, 34, 34, 1, 152064, 0x1689bb77
0, 36, 36, 1, 152064, 0x8f52f338
0, 38, 38, 1, 152064, 0xbf5ee06b
0, 40, 40, 1, 152064, 0x89508ad7
0, 42, 42, 1, 152064, 0x2b1986a6
0, 44, 44, 1, 152064, 0xe6fd6b0e
0, 46, 46, 1, 152064, 0x883e2e4e
0, 48, 48, 1, 152064, 0xd133db07
0, 50, 50, 1, 152064, 0x39b3bb22
0, 52, 52, 1, 152064, 0x8447410a
0, 54, 54, 1, 152064, 0x9c66c6e5
0, 56, 56, 1, 152064, 0x514de9cc
0, 58, 58, 1, 152064, 0x08d9f1da
0, 60, 60, 1, 152064, 0x8f10f536
0, 62, 62, 1, 152064, 0x57d4b27b
0, 64, 64, 1, 152064, 0x46f56d3c
0, 66, 66, 1, 152064, 0x5d260230
0, 68, 68, 1, 152064, 0x4a72aeac
0, 70, 70, 1, 152064, 0x5cfe187f
0, 72, 72, 1, 152064, 0x08e55cb2
0, 74, 74, 1, 152064, 0x4727f34f
0, 76, 76, 1, 152064, 0xd6a26f1c
0, 78, 78, 1, 152064, 0xcc1fcf9c
0, 80, 80, 1, 152064, 0x3681b775
0, 82, 82, 1, 152064, 0xf580c7d9
0, 84, 84, 1, 152064, 0xaa6747fb
0, 86, 86, 1, 152064, 0x2e22f9f9
0, 88, 88, 1, 152064, 0xb3ee6d81
0, 90, 90, 1, 152064, 0x930b0145
0, 92, 92, 1, 152064, 0xae36af99
0, 94, 94, 1, 152064, 0xeb58fd26
0, 96, 96, 1, 152064, 0xb9004da3
0, 98, 98, 1, 152064, 0x2b25e444
0, 99, 99, 1, 152064, 0xb36927de
#tb 0: 1/25
0, 0, 0, 1, 518400, 0x47bd73fa
0, 1, 1, 1, 518400, 0xfe3ea7cc
0, 2, 2, 1, 518400, 0x9bc549ae
0, 3, 3, 1, 518400, 0x7bb7f0a1
0, 4, 4, 1, 518400, 0x328903d4
0, 5, 5, 1, 518400, 0x96ab366b
0, 6, 6, 1, 518400, 0xa923eed3
0, 7, 7, 1, 518400, 0x162b08f6
0, 8, 8, 1, 518400, 0xe711bd8b
0, 9, 9, 1, 518400, 0x55e2d4ed
0, 10, 10, 1, 518400, 0x7dd3107b
0, 11, 11, 1, 518400, 0x0ed20bcf
0, 12, 12, 1, 518400, 0x352f5743
0, 13, 13, 1, 518400, 0x0a3aeb5e
0, 14, 14, 1, 518400, 0xc458eda3
0, 15, 15, 1, 518400, 0xe8d5fec5
0, 16, 16, 1, 518400, 0x18fc6c37
0, 17, 17, 1, 518400, 0x448add76
0, 18, 18, 1, 518400, 0x8741ead7
0, 19, 19, 1, 518400, 0x7008a751
0, 20, 20, 1, 518400, 0x4ca0633d
0, 21, 21, 1, 518400, 0x021ab800
0, 22, 22, 1, 518400, 0xfb91ba57
0, 23, 23, 1, 518400, 0x90e71dd0
0, 24, 24, 1, 518400, 0xac859de5
0, 25, 25, 1, 518400, 0xce9790bd
0, 26, 26, 1, 518400, 0x010ade8b
0, 27, 27, 1, 518400, 0xd0b3a399
0, 28, 28, 1, 518400, 0x6cafcff3
0, 29, 29, 1, 518400, 0xc32284c0
0, 30, 30, 1, 518400, 0x1af8f73e
0, 31, 31, 1, 518400, 0x3babd71e
0, 32, 32, 1, 518400, 0xd77cb86b
0, 2, 2, 1, 518400, 0x47bd73fa
0, 4, 4, 1, 518400, 0xfe3ea7cc
0, 6, 6, 1, 518400, 0x9bc549ae
0, 8, 8, 1, 518400, 0x7bb7f0a1
0, 10, 10, 1, 518400, 0x328903d4
0, 12, 12, 1, 518400, 0x96ab366b
0, 14, 14, 1, 518400, 0xa923eed3
0, 16, 16, 1, 518400, 0x162b08f6
0, 18, 18, 1, 518400, 0xe711bd8b
0, 20, 20, 1, 518400, 0x55e2d4ed
0, 22, 22, 1, 518400, 0x7dd3107b
0, 24, 24, 1, 518400, 0x0ed20bcf
0, 26, 26, 1, 518400, 0x352f5743
0, 28, 28, 1, 518400, 0x0a3aeb5e
0, 30, 30, 1, 518400, 0xc458eda3
0, 32, 32, 1, 518400, 0xe8d5fec5
0, 34, 34, 1, 518400, 0x18fc6c37
0, 36, 36, 1, 518400, 0x448add76
0, 38, 38, 1, 518400, 0x8741ead7
0, 40, 40, 1, 518400, 0x7008a751
0, 42, 42, 1, 518400, 0x4ca0633d
0, 44, 44, 1, 518400, 0x021ab800
0, 46, 46, 1, 518400, 0xfb91ba57
0, 48, 48, 1, 518400, 0x90e71dd0
0, 50, 50, 1, 518400, 0xac859de5
0, 52, 52, 1, 518400, 0xce9790bd
0, 54, 54, 1, 518400, 0x010ade8b
0, 56, 56, 1, 518400, 0xd0b3a399
0, 58, 58, 1, 518400, 0x6cafcff3
0, 60, 60, 1, 518400, 0xc32284c0
0, 62, 62, 1, 518400, 0x1af8f73e
0, 64, 64, 1, 518400, 0x3babd71e
0, 65, 65, 1, 518400, 0xd77cb86b
#tb 0: 1/25
0, 0, 0, 1, 518400, 0x41c2ce17
0, 1, 1, 1, 518400, 0x39f217da
0, 2, 2, 1, 518400, 0x5a108db9
0, 3, 3, 1, 518400, 0x20cb214c
0, 1, 1, 1, 518400, 0x41c2ce17
0, 2, 2, 1, 518400, 0x39f217da
0, 3, 3, 1, 518400, 0x5a108db9
0, 4, 4, 1, 518400, 0x20cb214c
#tb 0: 1/25
0, 0, 0, 1, 622080, 0x004bb93f
0, 1, 1, 1, 622080, 0xe70e193c
0, 2, 2, 1, 622080, 0xd394cf17
0, 3, 3, 1, 622080, 0x9e4cc924
0, 1, 1, 1, 622080, 0x004bb93f
0, 2, 2, 1, 622080, 0xe70e193c
0, 3, 3, 1, 622080, 0xd394cf17
0, 4, 4, 1, 622080, 0x9e4cc924
#tb 0: 1/25
0, 0, 0, 1, 622080, 0xf3f0bf86
0, 1, 1, 1, 622080, 0x6aaf3d42
0, 2, 2, 1, 622080, 0xe53bcd5d
0, 3, 3, 1, 622080, 0x8dabca9d
0, 1, 1, 1, 622080, 0xf3f0bf86
0, 2, 2, 1, 622080, 0x6aaf3d42
0, 3, 3, 1, 622080, 0xe53bcd5d
0, 4, 4, 1, 622080, 0x8dabca9d
#tb 0: 1/25
0, 0, 0, 1, 152064, 0xf772f152
0, 1, 1, 1, 152064, 0xc416d300
0, 2, 2, 1, 152064, 0xc2275c94
0, 3, 3, 1, 152064, 0x1bd35645
0, 4, 4, 1, 152064, 0x60327bf5
0, 5, 5, 1, 152064, 0x7f5541bd
0, 6, 6, 1, 152064, 0x52e5ebad
0, 7, 7, 1, 152064, 0xb8e5c1f3
0, 8, 8, 1, 152064, 0x2b4e3653
0, 9, 9, 1, 152064, 0x9a8f8499
0, 10, 10, 1, 152064, 0x32d4e9fb
0, 11, 11, 1, 152064, 0x0bc73d7a
0, 12, 12, 1, 152064, 0xb58a8b87
0, 13, 13, 1, 152064, 0xddbc5468
0, 14, 14, 1, 152064, 0xcfa30b64
0, 15, 15, 1, 152064, 0xad411f36
0, 16, 16, 1, 152064, 0x2f8c4d9b
0, 17, 17, 1, 152064, 0xc8523359
0, 18, 18, 1, 152064, 0x86be9861
0, 19, 19, 1, 152064, 0x7518d731
0, 20, 20, 1, 152064, 0x425fbfab
0, 21, 21, 1, 152064, 0x4f00250d
0, 22, 22, 1, 152064, 0x12b40617
0, 23, 23, 1, 152064, 0x65ff925d
0, 24, 24, 1, 152064, 0xc76a94c9
0, 25, 25, 1, 152064, 0x640170d5
0, 26, 26, 1, 152064, 0xd338a090
0, 27, 27, 1, 152064, 0xce715174
0, 28, 28, 1, 152064, 0x7bded195
0, 29, 29, 1, 152064, 0x09e7d3b9
0, 30, 30, 1, 152064, 0x651e1518
0, 31, 31, 1, 152064, 0x03cadc5f
0, 32, 32, 1, 152064, 0x08906919
0, 33, 33, 1, 152064, 0x3303ebe0
0, 34, 34, 1, 152064, 0xa28676c5
0, 35, 35, 1, 152064, 0x3900ecaf
0, 36, 36, 1, 152064, 0xeb795a05
0, 37, 37, 1, 152064, 0x870034df
0, 38, 38, 1, 152064, 0x69b0527a
0, 39, 39, 1, 152064, 0xb2b314f9
0, 40, 40, 1, 152064, 0x1a44ea1a
0, 41, 41, 1, 152064, 0xe6eaec87
0, 42, 42, 1, 152064, 0xd9ad818e
0, 43, 43, 1, 152064, 0x9c7ff76e
0, 44, 44, 1, 152064, 0x74c45abb
0, 45, 45, 1, 152064, 0x2f4fa5c6
0, 46, 46, 1, 152064, 0x19620702
0, 47, 47, 1, 152064, 0xfc9601f3
0, 48, 48, 1, 152064, 0x33e0d8e7
0, 49, 49, 1, 152064, 0xdf7f2a80
0, 1, 1, 1, 152064, 0xf772f152
0, 2, 2, 1, 152064, 0xc416d300
0, 4, 4, 1, 152064, 0xc2275c94
0, 6, 6, 1, 152064, 0x1bd35645
0, 7, 7, 1, 152064, 0x60327bf5
0, 9, 9, 1, 152064, 0x7f5541bd
0, 11, 11, 1, 152064, 0x52e5ebad
0, 12, 12, 1, 152064, 0xb8e5c1f3
0, 13, 13, 1, 152064, 0x2b4e3653
0, 14, 14, 1, 152064, 0x9a8f8499
0, 15, 15, 1, 152064, 0x32d4e9fb
0, 17, 17, 1, 152064, 0x0bc73d7a
0, 19, 19, 1, 152064, 0xb58a8b87
0, 21, 21, 1, 152064, 0xddbc5468
0, 23, 23, 1, 152064, 0xcfa30b64
0, 24, 24, 1, 152064, 0xad411f36
0, 26, 26, 1, 152064, 0x2f8c4d9b
0, 28, 28, 1, 152064, 0xc8523359
0, 29, 29, 1, 152064, 0x86be9861
0, 30, 30, 1, 152064, 0x7518d731
0, 32, 32, 1, 152064, 0x425fbfab
0, 34, 34, 1, 152064, 0x4f00250d
0, 36, 36, 1, 152064, 0x12b40617
0, 38, 38, 1, 152064, 0x65ff925d
0, 40, 40, 1, 152064, 0xc76a94c9
0, 41, 41, 1, 152064, 0x640170d5
0, 43, 43, 1, 152064, 0xd338a090
0, 44, 44, 1, 152064, 0xce715174
0, 46, 46, 1, 152064, 0x7bded195
0, 48, 48, 1, 152064, 0x09e7d3b9
0, 50, 50, 1, 152064, 0x651e1518
0, 51, 51, 1, 152064, 0x03cadc5f
0, 52, 52, 1, 152064, 0x08906919
0, 54, 54, 1, 152064, 0x3303ebe0
0, 56, 56, 1, 152064, 0xa28676c5
0, 58, 58, 1, 152064, 0x3900ecaf
0, 60, 60, 1, 152064, 0xeb795a05
0, 61, 61, 1, 152064, 0x870034df
0, 63, 63, 1, 152064, 0x69b0527a
0, 64, 64, 1, 152064, 0xb2b314f9
0, 66, 66, 1, 152064, 0x1a44ea1a
0, 67, 67, 1, 152064, 0xe6eaec87
0, 68, 68, 1, 152064, 0xd9ad818e
0, 69, 69, 1, 152064, 0x9c7ff76e
0, 70, 70, 1, 152064, 0x74c45abb
0, 71, 71, 1, 152064, 0x2f4fa5c6
0, 73, 73, 1, 152064, 0x19620702
0, 75, 75, 1, 152064, 0xfc9601f3
0, 77, 77, 1, 152064, 0x33e0d8e7
0, 78, 78, 1, 152064, 0xdf7f2a80
#tb 0: 1/25
0, 0, 0, 1, 518400, 0x99d0df36
0, 1, 1, 1, 518400, 0xa8601c1a
0, 2, 2, 1, 518400, 0x4a17d235
0, 3, 3, 1, 518400, 0x75f23abf
0, 4, 4, 1, 518400, 0x746aad53
0, 5, 5, 1, 518400, 0xb0b8913e
0, 6, 6, 1, 518400, 0x60a27f57
0, 7, 7, 1, 518400, 0xfa227f3e
0, 8, 8, 1, 518400, 0x7a1e57c2
0, 9, 9, 1, 518400, 0xcbbaa84f
0, 10, 10, 1, 518400, 0xf9c1bd13
0, 11, 11, 1, 518400, 0x9e80caaf
0, 12, 12, 1, 518400, 0x14cc6928
0, 13, 13, 1, 518400, 0xca0353ef
0, 14, 14, 1, 518400, 0xcad65e5f
0, 15, 15, 1, 518400, 0xd5bc47b3
0, 16, 16, 1, 518400, 0xa9893d36
0, 17, 17, 1, 518400, 0x69bd9085
0, 18, 18, 1, 518400, 0xff33c476
0, 19, 19, 1, 518400, 0x9538adf7
0, 20, 20, 1, 518400, 0xd4ff3b62
0, 21, 21, 1, 518400, 0x021a11fd
0, 22, 22, 1, 518400, 0x293e6f9f
0, 23, 23, 1, 518400, 0x5d38e4c3
0, 24, 24, 1, 518400, 0xd1f4ad49
0, 25, 25, 1, 518400, 0xf13dd946
0, 26, 26, 1, 518400, 0x0359e9ff
0, 27, 27, 1, 518400, 0xb61098ad
0, 28, 28, 1, 518400, 0xa855b11c
0, 29, 29, 1, 518400, 0x7fcf9343
0, 2, 2, 1, 518400, 0x99d0df36
0, 4, 4, 1, 518400, 0xa8601c1a
0, 6, 6, 1, 518400, 0x4a17d235
0, 8, 8, 1, 518400, 0x75f23abf
0, 10, 10, 1, 518400, 0x746aad53
0, 12, 12, 1, 518400, 0xb0b8913e
0, 14, 14, 1, 518400, 0x60a27f57
0, 16, 16, 1, 518400, 0xfa227f3e
0, 18, 18, 1, 518400, 0x7a1e57c2
0, 20, 20, 1, 518400, 0xcbbaa84f
0, 22, 22, 1, 518400, 0xf9c1bd13
0, 24, 24, 1, 518400, 0x9e80caaf
0, 26, 26, 1, 518400, 0x14cc6928
0, 28, 28, 1, 518400, 0xca0353ef
0, 30, 30, 1, 518400, 0xcad65e5f
0, 32, 32, 1, 518400, 0xd5bc47b3
0, 34, 34, 1, 518400, 0xa9893d36
0, 36, 36, 1, 518400, 0x69bd9085
0, 38, 38, 1, 518400, 0xff33c476
0, 40, 40, 1, 518400, 0x9538adf7
0, 42, 42, 1, 518400, 0xd4ff3b62
0, 44, 44, 1, 518400, 0x021a11fd
0, 46, 46, 1, 518400, 0x293e6f9f
0, 48, 48, 1, 518400, 0x5d38e4c3
0, 50, 50, 1, 518400, 0xd1f4ad49
0, 52, 52, 1, 518400, 0xf13dd946
0, 54, 54, 1, 518400, 0x0359e9ff
0, 56, 56, 1, 518400, 0xb61098ad
0, 58, 58, 1, 518400, 0xa855b11c
0, 59, 59, 1, 518400, 0x7fcf9343
#tb 0: 1/25
0, 0, 0, 1, 518400, 0xf6b83a0e
0, 1, 1, 1, 518400, 0xc5e8b8ee
0, 2, 2, 1, 518400, 0xb3bc6e43
0, 3, 3, 1, 518400, 0x5b08dc73
0, 4, 4, 1, 518400, 0x4a7f7690
0, 5, 5, 1, 518400, 0x8a9f4275
0, 6, 6, 1, 518400, 0xc7cb92fd
0, 7, 7, 1, 518400, 0xc721e231
0, 8, 8, 1, 518400, 0xfb31371b
0, 9, 9, 1, 518400, 0xac57f5d9
0, 10, 10, 1, 518400, 0x92b7debc
0, 11, 11, 1, 518400, 0xfe3e533e
0, 12, 12, 1, 518400, 0x1b3a7a72
0, 13, 13, 1, 518400, 0x98df2d81
0, 14, 14, 1, 518400, 0xe0ce9c52
0, 15, 15, 1, 518400, 0x6a31166d
0, 16, 16, 1, 518400, 0x64ffd4d2
0, 17, 17, 1, 518400, 0x3ec062ef
0, 18, 18, 1, 518400, 0x3480fae1
0, 19, 19, 1, 518400, 0xa87ae4b7
0, 20, 20, 1, 518400, 0xd301319f
0, 21, 21, 1, 518400, 0xa9284989
0, 22, 22, 1, 518400, 0x3de73b50
0, 23, 23, 1, 518400, 0x30a79f84
0, 24, 24, 1, 518400, 0x7d5152d4
0, 25, 25, 1, 518400, 0x25514095
0, 26, 26, 1, 518400, 0x1749a05f
0, 27, 27, 1, 518400, 0x598139a7
0, 28, 28, 1, 518400, 0x3cece862
0, 29, 29, 1, 518400, 0xe1c27efe
0, 1, 1, 1, 518400, 0xf6b83a0e
0, 3, 3, 1, 518400, 0xc5e8b8ee
0, 4, 4, 1, 518400, 0xb3bc6e43
0, 5, 5, 1, 518400, 0x5b08dc73
0, 6, 6, 1, 518400, 0x4a7f7690
0, 8, 8, 1, 518400, 0x8a9f4275
0, 10, 10, 1, 518400, 0xc7cb92fd
0, 12, 12, 1, 518400, 0xc721e231
0, 13, 13, 1, 518400, 0xfb31371b
0, 14, 14, 1, 518400, 0xac57f5d9
0, 15, 15, 1, 518400, 0x92b7debc
0, 17, 17, 1, 518400, 0xfe3e533e
0, 19, 19, 1, 518400, 0x1b3a7a72
0, 21, 21, 1, 518400, 0x98df2d81
0, 22, 22, 1, 518400, 0xe0ce9c52
0, 23, 23, 1, 518400, 0x6a31166d
0, 24, 24, 1, 518400, 0x64ffd4d2
0, 26, 26, 1, 518400, 0x3ec062ef
0, 28, 28, 1, 518400, 0x3480fae1
0, 30, 30, 1, 518400, 0xa87ae4b7
0, 31, 31, 1, 518400, 0xd301319f
0, 32, 32, 1, 518400, 0xa9284989
0, 33, 33, 1, 518400, 0x3de73b50
0, 35, 35, 1, 518400, 0x30a79f84
0, 37, 37, 1, 518400, 0x7d5152d4
0, 39, 39, 1, 518400, 0x25514095
0, 40, 40, 1, 518400, 0x1749a05f
0, 41, 41, 1, 518400, 0x598139a7
0, 43, 43, 1, 518400, 0x3cece862
0, 44, 44, 1, 518400, 0xe1c27efe
#tb 0: 1/25
0, 0, 0, 1, 518400, 0xd9444d71
0, 1, 1, 1, 518400, 0x5d8928cd
0, 2, 2, 1, 518400, 0xea5bc08b
0, 3, 3, 1, 518400, 0xb4465d31
0, 4, 4, 1, 518400, 0x983b5dbb
0, 5, 5, 1, 518400, 0x54936746
0, 6, 6, 1, 518400, 0x7ae38b02
0, 7, 7, 1, 518400, 0xc2a0dd83
0, 8, 8, 1, 518400, 0x61cac7a6
0, 9, 9, 1, 518400, 0xb0038443
0, 10, 10, 1, 518400, 0x16514296
0, 11, 11, 1, 518400, 0xa68dd470
0, 12, 12, 1, 518400, 0x2572f868
0, 13, 13, 1, 518400, 0x770a3239
0, 14, 14, 1, 518400, 0xdd04f6d2
0, 15, 15, 1, 518400, 0xa5e5d01e
0, 16, 16, 1, 518400, 0x5fe25c86
0, 1, 1, 1, 518400, 0xd9444d71
0, 3, 3, 1, 518400, 0x5d8928cd
0, 5, 5, 1, 518400, 0xea5bc08b
0, 7, 7, 1, 518400, 0xb4465d31
0, 9, 9, 1, 518400, 0x983b5dbb
0, 11, 11, 1, 518400, 0x54936746
0, 13, 13, 1, 518400, 0x7ae38b02
0, 15, 15, 1, 518400, 0xc2a0dd83
0, 17, 17, 1, 518400, 0x61cac7a6
0, 19, 19, 1, 518400, 0xb0038443
0, 21, 21, 1, 518400, 0x16514296
0, 23, 23, 1, 518400, 0xa68dd470
0, 25, 25, 1, 518400, 0x2572f868
0, 27, 27, 1, 518400, 0x770a3239
0, 29, 29, 1, 518400, 0xdd04f6d2
0, 31, 31, 1, 518400, 0xa5e5d01e
0, 33, 33, 1, 518400, 0x5fe25c86
#tb 0: 1/25
0, 0, 0, 1, 518400, 0x8f022263
0, 1, 1, 1, 518400, 0x02692654
0, 2, 2, 1, 518400, 0x55eff579
0, 3, 3, 1, 518400, 0x6c1bdf1d
0, 4, 4, 1, 518400, 0xbbedf5e4
0, 5, 5, 1, 518400, 0xb90d740d
0, 6, 6, 1, 518400, 0x81300adb
0, 1, 1, 1, 518400, 0x8f022263
0, 3, 3, 1, 518400, 0x02692654
0, 5, 5, 1, 518400, 0x55eff579
0, 7, 7, 1, 518400, 0x6c1bdf1d
0, 9, 9, 1, 518400, 0xbbedf5e4
0, 11, 11, 1, 518400, 0xb90d740d
0, 13, 13, 1, 518400, 0x81300adb
#tb 0: 1/25
0, 0, 0, 1, 518400, 0xd9444d71
0, 1, 1, 1, 518400, 0x491faf75
0, 2, 2, 1, 518400, 0xf8b4d15c
0, 3, 3, 1, 518400, 0x99d9f60c
0, 4, 4, 1, 518400, 0x46c17a6d
0, 5, 5, 1, 518400, 0x30b9447d
0, 6, 6, 1, 518400, 0x135d0c76
0, 7, 7, 1, 518400, 0x1b831a3c
0, 8, 8, 1, 518400, 0x5910def8
0, 9, 9, 1, 518400, 0x8db90147
0, 10, 10, 1, 518400, 0x6a2b79c7
0, 11, 11, 1, 518400, 0xc8d302e5
0, 12, 12, 1, 518400, 0x515bb024
0, 13, 13, 1, 518400, 0xedf7836c
0, 14, 14, 1, 518400, 0x7e247b9d
0, 15, 15, 1, 518400, 0x10c9bb10
0, 16, 16, 1, 518400, 0xe38e2807
0, 3, 3, 1, 518400, 0xd9444d71
0, 5, 5, 1, 518400, 0x491faf75
0, 7, 7, 1, 518400, 0xf8b4d15c
0, 9, 9, 1, 518400, 0x99d9f60c
0, 11, 11, 1, 518400, 0x46c17a6d
0, 13, 13, 1, 518400, 0x30b9447d
0, 15, 15, 1, 518400, 0x135d0c76
0, 17, 17, 1, 518400, 0x1b831a3c
0, 19, 19, 1, 518400, 0x5910def8
0, 21, 21, 1, 518400, 0x8db90147
0, 23, 23, 1, 518400, 0x6a2b79c7
0, 25, 25, 1, 518400, 0xc8d302e5
0, 27, 27, 1, 518400, 0x515bb024
0, 29, 29, 1, 518400, 0xedf7836c
0, 31, 31, 1, 518400, 0x7e247b9d
0, 32, 32, 1, 518400, 0x10c9bb10
0, 33, 33, 1, 518400, 0xe38e2807
#tb 0: 1/25
0, 0, 0, 1, 518400, 0x4073cc0b
0, 1, 1, 1, 518400, 0x5f599a48
0, 2, 2, 1, 518400, 0xc6fe555a
0, 3, 3, 1, 518400, 0xe63ac345
0, 4, 4, 1, 518400, 0x9b4f0c5c
0, 5, 5, 1, 518400, 0x98aaba2d
0, 6, 6, 1, 518400, 0xd629bd09
0, 7, 7, 1, 518400, 0xe9796c37
0, 8, 8, 1, 518400, 0xba54d16e
0, 9, 9, 1, 518400, 0xe396c3eb
0, 10, 10, 1, 518400, 0x63ee4b81
0, 11, 11, 1, 518400, 0x68ac6986
0, 12, 12, 1, 518400, 0xe0d53000
0, 2, 2, 1, 518400, 0x4073cc0b
0, 4, 4, 1, 518400, 0x5f599a48
0, 6, 6, 1, 518400, 0xc6fe555a
0, 8, 8, 1, 518400, 0xe63ac345
0, 10, 10, 1, 518400, 0x9b4f0c5c
0, 12, 12, 1, 518400, 0x98aaba2d
0, 14, 14, 1, 518400, 0xd629bd09
0, 16, 16, 1, 518400, 0xe9796c37
0, 18, 18, 1, 518400, 0xba54d16e
0, 20, 20, 1, 518400, 0xe396c3eb
0, 22, 22, 1, 518400, 0x63ee4b81
0, 24, 24, 1, 518400, 0x68ac6986
0, 25, 25, 1, 518400, 0xe0d53000
#tb 0: 1/25
0, 0, 0, 1, 518400, 0x80dffda2
0, 1, 1, 1, 518400, 0x9450183b
0, 2, 2, 1, 518400, 0x85d429a7
0, 3, 3, 1, 518400, 0xe1f3b686
0, 4, 4, 1, 518400, 0x2180c761
0, 5, 5, 1, 518400, 0x30269c7c
0, 6, 6, 1, 518400, 0xe9aa575a
0, 7, 7, 1, 518400, 0x7b815a0a
0, 2, 2, 1, 518400, 0x80dffda2
0, 4, 4, 1, 518400, 0x9450183b
0, 6, 6, 1, 518400, 0x85d429a7
0, 7, 7, 1, 518400, 0xe1f3b686
0, 9, 9, 1, 518400, 0x2180c761
0, 11, 11, 1, 518400, 0x30269c7c
0, 12, 12, 1, 518400, 0xe9aa575a
0, 13, 13, 1, 518400, 0x7b815a0a
#tb 0: 1/25
0, 0, 0, 1, 518400, 0xe9c7643e
0, 1, 1, 1, 518400, 0xba7456ec
0, 2, 2, 1, 518400, 0xdeb96749
0, 3, 3, 1, 518400, 0xa101a986
0, 4, 4, 1, 518400, 0x3db7baa5
0, 5, 5, 1, 518400, 0xf3dfcec7
0, 6, 6, 1, 518400, 0x79b4f537
0, 7, 7, 1, 518400, 0x9e64fe68
0, 8, 8, 1, 518400, 0x0e810b53
0, 9, 9, 1, 518400, 0x20baf3b8
0, 10, 10, 1, 518400, 0x0a49d341
0, 11, 11, 1, 518400, 0xa8304ab5
0, 12, 12, 1, 518400, 0x2600e98f
0, 13, 13, 1, 518400, 0x9253e3e8
0, 14, 14, 1, 518400, 0xd6e12783
0, 15, 15, 1, 518400, 0x6894fc79
0, 16, 16, 1, 518400, 0xfb60d3e3
0, 17, 17, 1, 518400, 0x523602be
0, 18, 18, 1, 518400, 0x4979f409
0, 19, 19, 1, 518400, 0x50d4e2ab
0, 20, 20, 1, 518400, 0xa8c2140a
0, 21, 21, 1, 518400, 0x45c0bc15
0, 22, 22, 1, 518400, 0xaef78cab
0, 23, 23, 1, 518400, 0xec539d02
0, 24, 24, 1, 518400, 0x602585ea
0, 25, 25, 1, 518400, 0xda263463
0, 26, 26, 1, 518400, 0xa03d8922
0, 27, 27, 1, 518400, 0x43ea1c1d
0, 28, 28, 1, 518400, 0xb1e055a6
0, 29, 29, 1, 518400, 0x6fff9398
0, 2, 2, 1, 518400, 0xe9c7643e
0, 4, 4, 1, 518400, 0xba7456ec
0, 6, 6, 1, 518400, 0xdeb96749
0, 8, 8, 1, 518400, 0xa101a986
0, 10, 10, 1, 518400, 0x3db7baa5
0, 12, 12, 1, 518400, 0xf3dfcec7
0, 14, 14, 1, 518400, 0x79b4f537
0, 16, 16, 1, 518400, 0x9e64fe68
0, 18, 18, 1, 518400, 0x0e810b53
0, 20, 20, 1, 518400, 0x20baf3b8
0, 22, 22, 1, 518400, 0x0a49d341
0, 24, 24, 1, 518400, 0xa8304ab5
0, 26, 26, 1, 518400, 0x2600e98f
0, 28, 28, 1, 518400, 0x9253e3e8
0, 30, 30, 1, 518400, 0xd6e12783
0, 32, 32, 1, 518400, 0x6894fc79
0, 34, 34, 1, 518400, 0xfb60d3e3
0, 36, 36, 1, 518400, 0x523602be
0, 38, 38, 1, 518400, 0x4979f409
0, 40, 40, 1, 518400, 0x50d4e2ab
0, 42, 42, 1, 518400, 0xa8c2140a
0, 44, 44, 1, 518400, 0x45c0bc15
0, 46, 46, 1, 518400, 0xaef78cab
0, 48, 48, 1, 518400, 0xec539d02
0, 50, 50, 1, 518400, 0x602585ea
0, 52, 52, 1, 518400, 0xda263463
0, 54, 54, 1, 518400, 0xa03d8922
0, 56, 56, 1, 518400, 0x43ea1c1d
0, 58, 58, 1, 518400, 0xb1e055a6
0, 59, 59, 1, 518400, 0x6fff9398
#tb 0: 1/25
0, 0, 0, 1, 518400, 0x7b2475e3
0, 1, 1, 1, 518400, 0xda786a87
0, 2, 2, 1, 518400, 0xb1dd8108
0, 3, 3, 1, 518400, 0x760ed65d
0, 4, 4, 1, 518400, 0x8632d20c
0, 5, 5, 1, 518400, 0xdd81e625
0, 6, 6, 1, 518400, 0x853f1c41
0, 7, 7, 1, 518400, 0x20191585
0, 8, 8, 1, 518400, 0x0367e357
0, 9, 9, 1, 518400, 0x60521167
0, 10, 10, 1, 518400, 0xa887d4cc
0, 11, 11, 1, 518400, 0x9a450f9e
0, 12, 12, 1, 518400, 0xe9620841
0, 13, 13, 1, 518400, 0xb482fb0e
0, 14, 14, 1, 518400, 0x7b79f670
0, 15, 15, 1, 518400, 0x9d37f1d1
0, 16, 16, 1, 518400, 0xe358d323
0, 17, 17, 1, 518400, 0x62ade59c
0, 18, 18, 1, 518400, 0xdd78da66
0, 19, 19, 1, 518400, 0xd97b867b
0, 20, 20, 1, 518400, 0x8a90cf8c
0, 21, 21, 1, 518400, 0x9d386610
0, 22, 22, 1, 518400, 0x2c590f46
0, 23, 23, 1, 518400, 0x92662861
0, 24, 24, 1, 518400, 0x6979f563
0, 25, 25, 1, 518400, 0xdd0fa1b2
0, 26, 26, 1, 518400, 0xccbf1c1c
0, 27, 27, 1, 518400, 0x7e358112
0, 28, 28, 1, 518400, 0xb7c0d89d
0, 29, 29, 1, 518400, 0xc6b03973
0, 2, 2, 1, 518400, 0x7b2475e3
0, 4, 4, 1, 518400, 0xda786a87
0, 6, 6, 1, 518400, 0xb1dd8108
0, 8, 8, 1, 518400, 0x760ed65d
0, 10, 10, 1, 518400, 0x8632d20c
0, 12, 12, 1, 518400, 0xdd81e625
0, 14, 14, 1, 518400, 0x853f1c41
0, 16, 16, 1, 518400, 0x20191585
0, 18, 18, 1, 518400, 0x0367e357
0, 20, 20, 1, 518400, 0x60521167
0, 22, 22, 1, 518400, 0xa887d4cc
0, 24, 24, 1, 518400, 0x9a450f9e
0, 26, 26, 1, 518400, 0xe9620841
0, 28, 28, 1, 518400, 0xb482fb0e
0, 30, 30, 1, 518400, 0x7b79f670
0, 32, 32, 1, 518400, 0x9d37f1d1
0, 34, 34, 1, 518400, 0xe358d323
0, 36, 36, 1, 518400, 0x62ade59c
0, 38, 38, 1, 518400, 0xdd78da66
0, 40, 40, 1, 518400, 0xd97b867b
0, 42, 42, 1, 518400, 0x8a90cf8c
0, 44, 44, 1, 518400, 0x9d386610
0, 46, 46, 1, 518400, 0x2c590f46
0, 48, 48, 1, 518400, 0x92662861
0, 50, 50, 1, 518400, 0x6979f563
0, 52, 52, 1, 518400, 0xdd0fa1b2
0, 54, 54, 1, 518400, 0xccbf1c1c
0, 56, 56, 1, 518400, 0x7e358112
0, 58, 58, 1, 518400, 0xb7c0d89d
0, 59, 59, 1, 518400, 0xc6b03973
#tb 0: 1/25
0, 0, 0, 1, 518400, 0x0fbb4e71
0, 1, 1, 1, 518400, 0x4b816734
0, 2, 2, 1, 518400, 0x0c350f19
0, 3, 3, 1, 518400, 0xda049cb6
0, 4, 4, 1, 518400, 0x1f3e7bb9
0, 5, 5, 1, 518400, 0x995cbe66
0, 6, 6, 1, 518400, 0x07f7e65c
0, 7, 7, 1, 518400, 0xfcb7487f
0, 8, 8, 1, 518400, 0xb080f48a
0, 9, 9, 1, 518400, 0x3ef5b7e4
0, 10, 10, 1, 518400, 0xa1518e1c
0, 11, 11, 1, 518400, 0xb36f1cc9
0, 12, 12, 1, 518400, 0x86ea48af
0, 13, 13, 1, 518400, 0xe42373b7
0, 14, 14, 1, 518400, 0xa8435828
0, 15, 15, 1, 518400, 0xc942ea0e
0, 16, 16, 1, 518400, 0xcc597514
0, 1, 1, 1, 518400, 0x0fbb4e71
0, 3, 3, 1, 518400, 0x4b816734
0, 5, 5, 1, 518400, 0x0c350f19
0, 7, 7, 1, 518400, 0xda049cb6
0, 9, 9, 1, 518400, 0x1f3e7bb9
0, 11, 11, 1, 518400, 0x995cbe66
0, 13, 13, 1, 518400, 0x07f7e65c
0, 15, 15, 1, 518400, 0xfcb7487f
0, 17, 17, 1, 518400, 0xb080f48a
0, 19, 19, 1, 518400, 0x3ef5b7e4
0, 21, 21, 1, 518400, 0xa1518e1c
0, 23, 23, 1, 518400, 0xb36f1cc9
0, 25, 25, 1, 518400, 0x86ea48af
0, 27, 27, 1, 518400, 0xe42373b7
0, 29, 29, 1, 518400, 0xa8435828
0, 31, 31, 1, 518400, 0xc942ea0e
0, 33, 33, 1, 518400, 0xcc597514
#tb 0: 1/25
0, 0, 0, 1, 518400, 0x0fbb4e71
0, 1, 1, 1, 518400, 0xc46bec04
0, 2, 2, 1, 518400, 0xc50ffc1d
0, 3, 3, 1, 518400, 0x684b07b7
0, 4, 4, 1, 518400, 0xde799af0
0, 5, 5, 1, 518400, 0xed497b27
0, 6, 6, 1, 518400, 0x3e9d1e3a
0, 7, 7, 1, 518400, 0x154d3c5c
0, 8, 8, 1, 518400, 0x5257e37c
0, 9, 9, 1, 518400, 0x6e15139a
0, 10, 10, 1, 518400, 0x5dc39c59
0, 11, 11, 1, 518400, 0xe1803100
0, 12, 12, 1, 518400, 0xb4d4d535
0, 13, 13, 1, 518400, 0x7a97a25d
0, 14, 14, 1, 518400, 0xf86b8923
0, 15, 15, 1, 518400, 0x3355be98
0, 16, 16, 1, 518400, 0x8f555830
0, 3, 3, 1, 518400, 0x0fbb4e71
0, 5, 5, 1, 518400, 0xc46bec04
0, 7, 7, 1, 518400, 0xc50ffc1d
0, 9, 9, 1, 518400, 0x684b07b7
0, 11, 11, 1, 518400, 0xde799af0
0, 13, 13, 1, 518400, 0xed497b27
0, 15, 15, 1, 518400, 0x3e9d1e3a
0, 17, 17, 1, 518400, 0x154d3c5c
0, 19, 19, 1, 518400, 0x5257e37c
0, 21, 21, 1, 518400, 0x6e15139a
0, 23, 23, 1, 518400, 0x5dc39c59
0, 25, 25, 1, 518400, 0xe1803100
0, 27, 27, 1, 518400, 0xb4d4d535
0, 29, 29, 1, 518400, 0x7a97a25d
0, 31, 31, 1, 518400, 0xf86b8923
0, 32, 32, 1, 518400, 0x3355be98
0, 33, 33, 1, 518400, 0x8f555830
#tb 0: 1/25
0, 0, 0, 1, 36864, 0x3d54d3e3
0, 1, 1, 1, 36864, 0xa9573ef0
0, 2, 2, 1, 36864, 0x0ea5f263
0, 3, 3, 1, 36864, 0x5a849fb9
0, 4, 4, 1, 36864, 0x7ddb1eff
0, 5, 5, 1, 36864, 0x5e73e3b7
0, 6, 6, 1, 36864, 0x7d50d329
0, 7, 7, 1, 36864, 0xf2c2cd27
0, 8, 8, 1, 36864, 0xdf4f4628
0, 9, 9, 1, 36864, 0xddd6d5be
0, 10, 10, 1, 36864, 0xb530e1aa
0, 11, 11, 1, 36864, 0xeca42470
0, 12, 12, 1, 36864, 0xa5701caf
0, 13, 13, 1, 36864, 0x6f5d28fc
0, 14, 14, 1, 36864, 0xd4ab4ab2
0, 15, 15, 1, 36864, 0xf2dfcc22
0, 16, 16, 1, 36864, 0xcaa87e79
0, 1, 1, 1, 36864, 0x3d54d3e3
0, 3, 3, 1, 36864, 0xa9573ef0
0, 5, 5, 1, 36864, 0x0ea5f263
0, 7, 7, 1, 36864, 0x5a849fb9
0, 9, 9, 1, 36864, 0x7ddb1eff
0, 11, 11, 1, 36864, 0x5e73e3b7
0, 13, 13, 1, 36864, 0x7d50d329
0, 15, 15, 1, 36864, 0xf2c2cd27
0, 17, 17, 1, 36864, 0xdf4f4628
0, 19, 19, 1, 36864, 0xddd6d5be
0, 21, 21, 1, 36864, 0xb530e1aa
0, 23, 23, 1, 36864, 0xeca42470
0, 25, 25, 1, 36864, 0xa5701caf
0, 27, 27, 1, 36864, 0x6f5d28fc
0, 29, 29, 1, 36864, 0xd4ab4ab2
0, 31, 31, 1, 36864, 0xf2dfcc22
0, 33, 33, 1, 36864, 0xcaa87e79
This diff is collapsed.
#tb 0: 1/25
0, 0, 0, 1, 152064, 0x0147a2a9
0, 1, 1, 1, 152064, 0xe2365351
0, 2, 2, 1, 152064, 0xb5f9daee
0, 3, 3, 1, 152064, 0xd60818b2
0, 4, 4, 1, 152064, 0x21b528e5
0, 5, 5, 1, 152064, 0x9c9dda18
0, 6, 6, 1, 152064, 0x387fe7de
0, 7, 7, 1, 152064, 0x8f0c5a1e
0, 8, 8, 1, 152064, 0x02409694
0, 9, 9, 1, 152064, 0x2b36a7a7
0, 10, 10, 1, 152064, 0x3c6d3863
0, 11, 11, 1, 152064, 0xaa7835e1
0, 12, 12, 1, 152064, 0x6d105fe7
0, 13, 13, 1, 152064, 0x9a348732
0, 14, 14, 1, 152064, 0x96a3af13
0, 2, 2, 1, 152064, 0x0147a2a9
0, 3, 3, 1, 152064, 0xe2365351
0, 4, 4, 1, 152064, 0xb5f9daee
0, 5, 5, 1, 152064, 0xd60818b2
0, 7, 7, 1, 152064, 0x21b528e5
0, 8, 8, 1, 152064, 0x9c9dda18
0, 9, 9, 1, 152064, 0x387fe7de
0, 11, 11, 1, 152064, 0x8f0c5a1e
0, 12, 12, 1, 152064, 0x02409694
0, 14, 14, 1, 152064, 0x2b36a7a7
0, 15, 15, 1, 152064, 0x3c6d3863
0, 17, 17, 1, 152064, 0xaa7835e1
0, 18, 18, 1, 152064, 0x6d105fe7
0, 20, 20, 1, 152064, 0x9a348732
0, 21, 21, 1, 152064, 0x96a3af13
#tb 0: 1/25
0, 0, 0, 1, 152064, 0xd604d440
0, 1, 1, 1, 152064, 0x08ef262c
0, 2, 2, 1, 152064, 0x992fca8e
0, 3, 3, 1, 152064, 0x5a02ee15
0, 4, 4, 1, 152064, 0xf15d5c66
0, 5, 5, 1, 152064, 0x360dda12
0, 6, 6, 1, 152064, 0x18b54985
0, 7, 7, 1, 152064, 0xf12b6cde
0, 8, 8, 1, 152064, 0x3b2e63f7
0, 9, 9, 1, 152064, 0x140abcfd
0, 1, 1, 1, 152064, 0xd604d440
0, 3, 3, 1, 152064, 0x08ef262c
0, 4, 4, 1, 152064, 0x992fca8e
0, 5, 5, 1, 152064, 0x5a02ee15
0, 7, 7, 1, 152064, 0xf15d5c66
0, 9, 9, 1, 152064, 0x360dda12
0, 10, 10, 1, 152064, 0x18b54985
0, 12, 12, 1, 152064, 0xf12b6cde
0, 13, 13, 1, 152064, 0x3b2e63f7
0, 14, 14, 1, 152064, 0x140abcfd
#tb 0: 1/25
0, 0, 0, 1, 152064, 0xb055a9bd
0, 1, 1, 1, 152064, 0x9e1eadb6
0, 2, 2, 1, 152064, 0x48f117d2
0, 3, 3, 1, 152064, 0x3e3ff049
0, 4, 4, 1, 152064, 0x2ff80943
0, 5, 5, 1, 152064, 0xc5ee16a6
0, 6, 6, 1, 152064, 0x38c33f28
0, 7, 7, 1, 152064, 0x3e8444c7
0, 8, 8, 1, 152064, 0x14ca4ab2
0, 9, 9, 1, 152064, 0xe20e78f7
0, 2, 2, 1, 152064, 0xb055a9bd
0, 4, 4, 1, 152064, 0x9e1eadb6
0, 5, 5, 1, 152064, 0x48f117d2
0, 6, 6, 1, 152064, 0x3e3ff049
0, 7, 7, 1, 152064, 0x2ff80943
0, 9, 9, 1, 152064, 0xc5ee16a6
0, 10, 10, 1, 152064, 0x38c33f28
0, 11, 11, 1, 152064, 0x3e8444c7
0, 12, 12, 1, 152064, 0x14ca4ab2
0, 13, 13, 1, 152064, 0xe20e78f7
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
#tb 0: 1/25
0, 0, 0, 1, 518400, 0xc93c7c47
0, 1, 1, 1, 518400, 0xa3f2e502
0, 2, 2, 1, 518400, 0xb98920a4
0, 3, 3, 1, 518400, 0xad098ec1
0, 4, 4, 1, 518400, 0x3009b7aa
0, 5, 5, 1, 518400, 0xcf514018
0, 6, 6, 1, 518400, 0xd869038d
0, 7, 7, 1, 518400, 0x3ce5e188
0, 8, 8, 1, 518400, 0x029b4c14
0, 9, 9, 1, 518400, 0xd2224afc
0, 10, 10, 1, 518400, 0xbbca027c
0, 11, 11, 1, 518400, 0x1f3fa0ac
0, 12, 12, 1, 518400, 0x823b0125
0, 13, 13, 1, 518400, 0xaaa27cfb
0, 14, 14, 1, 518400, 0x5e926a4a
0, 1, 1, 1, 518400, 0xc93c7c47
0, 3, 3, 1, 518400, 0xa3f2e502
0, 5, 5, 1, 518400, 0xb98920a4
0, 7, 7, 1, 518400, 0xad098ec1
0, 9, 9, 1, 518400, 0x3009b7aa
0, 11, 11, 1, 518400, 0xcf514018
0, 13, 13, 1, 518400, 0xd869038d
0, 15, 15, 1, 518400, 0x3ce5e188
0, 17, 17, 1, 518400, 0x029b4c14
0, 19, 19, 1, 518400, 0xd2224afc
0, 21, 21, 1, 518400, 0xbbca027c
0, 23, 23, 1, 518400, 0x1f3fa0ac
0, 25, 25, 1, 518400, 0x823b0125
0, 27, 27, 1, 518400, 0xaaa27cfb
0, 29, 29, 1, 518400, 0x5e926a4a
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
#tb 0: 1/15
0, 0, 0, 1, 921600, 0xc0e68764
0, 1, 1, 1, 921600, 0x01a16629
0, 2, 2, 1, 921600, 0x01a16629
#tb 0: 32768/785647
0, 0, 0, 1, 276480, 0x5f7a0d4f
0, -1, -1, 1, 276480, 0x5f7a0d4f
0, 1, 1, 1, 276480, 0x5f7a0d4f
0, 2, 2, 1, 276480, 0x5f7a0d4f
0, 3, 3, 1, 276480, 0x5f7a0d4f
......
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
#tb 0: 1/24
0, 0, 0, 1, 614880, 12ce23b288485be3ddbc1db28c21517f
0, 1, 1, 1, 614880, ce352e1079535ea058c0e9ad50f7cdb8
0, 2, 2, 1, 614880, 9f6bf2739a027dfd12c81586cf75d3a3
0, 3, 3, 1, 614880, 7593a85ab7790eb39d65fc53f769ed8b
0, 4, 4, 1, 614880, 52f47f1e0348f3297d9f233fb5405e8b
0, 5, 5, 1, 614880, cd51d2c200bfd66e8e1b0fd6b404570f
0, 6, 6, 1, 614880, cf535cf0a53e903cd98a9a944b72da6d
0, 7, 7, 1, 614880, 1b270fd2b56daa7892102c2885d23201
0, 2, 2, 1, 614880, ce352e1079535ea058c0e9ad50f7cdb8
0, 3, 3, 1, 614880, 9f6bf2739a027dfd12c81586cf75d3a3
0, 4, 4, 1, 614880, 7593a85ab7790eb39d65fc53f769ed8b
0, 5, 5, 1, 614880, 52f47f1e0348f3297d9f233fb5405e8b
0, 6, 6, 1, 614880, cd51d2c200bfd66e8e1b0fd6b404570f
0, 7, 7, 1, 614880, cf535cf0a53e903cd98a9a944b72da6d
0, 8, 8, 1, 614880, ff373c0c8a4a319c84e72b1c3d76b399
This diff is collapsed.
346d38d330ab5cb0caa6b5537167bc0d *./tests/data/lavf/lavf.gxf
796392 ./tests/data/lavf/lavf.gxf
./tests/data/lavf/lavf.gxf CRC=0x345f86eb
./tests/data/lavf/lavf.gxf CRC=0x246186eb
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment