Commit 832ba44d authored by Anton Khirnov's avatar Anton Khirnov

avconv: saner output video timebase.

r_frame_rate should in theory have something to do with input framerate,
but in practice it is often made up from thin air by lavf. So unless we
are targeting a constant output framerate, it's better to just use input
stream timebase.

Brings back dropped frames in nuv and cscd tests introduced in
cd1ad18a
parent 87d7a92b
......@@ -2450,13 +2450,30 @@ static int transcode_init(OutputFile *output_files,
ost->resample_width = icodec->width;
ost->resample_pix_fmt = icodec->pix_fmt;
if (!ost->frame_rate.num)
ost->frame_rate = ist->st->r_frame_rate.num ? ist->st->r_frame_rate : (AVRational) { 25, 1 };
if (ost->enc && ost->enc->supported_framerates && !ost->force_fps) {
int idx = av_find_nearest_q_idx(ost->frame_rate, ost->enc->supported_framerates);
ost->frame_rate = ost->enc->supported_framerates[idx];
/*
* We want CFR output if and only if one of those is true:
* 1) user specified output framerate with -r
* 2) user specified -vsync cfr
* 3) output format is CFR and the user didn't force vsync to
* something else than CFR
*
* in such a case, set ost->frame_rate
*/
if (!ost->frame_rate.num &&
(video_sync_method == VSYNC_CFR ||
(video_sync_method == VSYNC_AUTO &&
!(oc->oformat->flags & (AVFMT_NOTIMESTAMPS | AVFMT_VARIABLE_FPS))))) {
ost->frame_rate = ist->st->r_frame_rate.num ? ist->st->r_frame_rate : (AVRational){25, 1};
if (ost->enc && ost->enc->supported_framerates && !ost->force_fps) {
int idx = av_find_nearest_q_idx(ost->frame_rate, ost->enc->supported_framerates);
ost->frame_rate = ost->enc->supported_framerates[idx];
}
}
codec->time_base = (AVRational){ost->frame_rate.den, ost->frame_rate.num};
if (ost->frame_rate.num) {
codec->time_base = (AVRational){ost->frame_rate.den, ost->frame_rate.num};
video_sync_method = VSYNC_CFR;
} else
codec->time_base = ist->st->time_base;
#if CONFIG_AVFILTER
if (configure_video_filters(ist, ost)) {
......
......@@ -254,7 +254,8 @@ attachments.
@item -vframes @var{number} (@emph{output})
Set the number of video frames to record. This is an alias for @code{-frames:v}.
@item -r[:@var{stream_specifier}] @var{fps} (@emph{input/output,per-stream})
Set frame rate (Hz value, fraction or abbreviation), (default = 25).
Set frame rate (Hz value, fraction or abbreviation), (default = 25). For output
streams implies @code{-vsync cfr}.
@item -s[:@var{stream_specifier}] @var{size} (@emph{input/output,per-stream})
Set frame size. The format is @samp{wxh} (default - same as source).
The following abbreviations are recognized:
......
#tb 0: 2/25
#tb 0: 1/125
#tb 1: 1/22050
0, 0, 0, 1, 259200, 0x7e91df07
1, 0, 0, 1024, 2048, 0x3d042426
1, 1024, 1024, 1024, 2048, 0x5bcae456
0, 1, 1, 1, 259200, 0x7e91df07
0, 10, 10, 1, 259200, 0x7e91df07
1, 2048, 2048, 1024, 2048, 0xb6043655
1, 3072, 3072, 1024, 2048, 0x6fdaffad
0, 2, 2, 1, 259200, 0xc468c119
0, 20, 20, 1, 259200, 0xc468c119
1, 4096, 4096, 1024, 2048, 0xf86700cb
1, 5120, 5120, 1024, 2048, 0x045e46c1
0, 3, 3, 1, 259200, 0x0e058930
0, 30, 30, 1, 259200, 0x0e058930
1, 6144, 6144, 1024, 2048, 0x000df0e5
0, 4, 4, 1, 259200, 0xa0261310
0, 40, 40, 1, 259200, 0xa0261310
1, 7168, 7168, 1024, 2048, 0x8f5f12fb
1, 8192, 8192, 1024, 2048, 0xd516f6b0
0, 5, 5, 1, 259200, 0x78ca9aba
0, 50, 50, 1, 259200, 0x78ca9aba
1, 9216, 9216, 1024, 2048, 0xa1fe2bd3
1, 10240, 10240, 1024, 2048, 0x3647087a
0, 6, 6, 1, 259200, 0x4971f7b3
0, 60, 60, 1, 259200, 0x4971f7b3
1, 11264, 11264, 1024, 2048, 0xd2ee584e
1, 12288, 12288, 1024, 2048, 0xf132088c
0, 7, 7, 1, 259200, 0x7dc2cff7
0, 70, 70, 1, 259200, 0x7dc2cff7
1, 13312, 13312, 1024, 2048, 0x1efc0eb1
0, 8, 8, 1, 259200, 0x8cbc53d5
0, 80, 80, 1, 259200, 0x8cbc53d5
1, 14336, 14336, 1024, 2048, 0xeb73f402
1, 15360, 15360, 1024, 2048, 0x75cb3d20
0, 9, 9, 1, 259200, 0xcccd77e3
0, 90, 90, 1, 259200, 0xcccd77e3
1, 16384, 16384, 1024, 2048, 0x85a501b6
1, 17408, 17408, 1024, 2048, 0xa4eb312d
0, 10, 10, 1, 259200, 0x6b3e0fb3
0, 100, 100, 1, 259200, 0x6b3e0fb3
1, 18432, 18432, 1024, 2048, 0xf0aaf8c7
0, 11, 11, 1, 259200, 0x281dd175
0, 110, 110, 1, 259200, 0x281dd175
1, 19456, 19456, 1024, 2048, 0x65371cda
1, 20480, 20480, 1024, 2048, 0x25512cd6
1, 21504, 21504, 1024, 2048, 0xc81410e3
......
This diff is collapsed.
#tb 0: 1/15
#tb 0: 1/90000
#tb 1: 1/22050
0, 0, 0, 1, 115200, 0x375ec573
0, 0, 0, 0, 115200, 0x375ec573
1, 0, 0, 1484, 5936, 0x00000000
0, 1, 1, 1, 115200, 0x375ec573
0, 6000, 6000, 0, 115200, 0x375ec573
1, 1484, 1484, 1456, 5824, 0x00000000
0, 2, 2, 1, 115200, 0x375ec573
0, 12000, 12000, 0, 115200, 0x375ec573
1, 2940, 2940, 1484, 5936, 0x00000000
0, 3, 3, 1, 115200, 0x375ec573
0, 18000, 18000, 0, 115200, 0x375ec573
1, 4424, 4424, 1456, 5824, 0x00000000
0, 4, 4, 1, 115200, 0x375ec573
0, 24000, 24000, 0, 115200, 0x375ec573
1, 5880, 5880, 1484, 5936, 0x00000000
0, 5, 5, 1, 115200, 0x375ec573
0, 30000, 30000, 0, 115200, 0x375ec573
1, 7364, 7364, 1456, 5824, 0x00000000
0, 6, 6, 1, 115200, 0x375ec573
0, 36000, 36000, 0, 115200, 0x375ec573
1, 8820, 8820, 1484, 5936, 0x00000000
0, 7, 7, 1, 115200, 0x375ec573
0, 42000, 42000, 0, 115200, 0x375ec573
1, 10304, 10304, 1456, 5824, 0x0f06f5bb
0, 8, 8, 1, 115200, 0x0b4d31bf
0, 48000, 48000, 0, 115200, 0x0b4d31bf
1, 11760, 11760, 1484, 5936, 0xb0dbfc46
0, 9, 9, 1, 115200, 0xdd724598
0, 54000, 54000, 0, 115200, 0xdd724598
1, 13244, 13244, 1456, 5824, 0x9daa9f9c
0, 10, 10, 1, 115200, 0xc3077e75
0, 60000, 60000, 0, 115200, 0xc3077e75
1, 14700, 14700, 1484, 5936, 0x61400d2f
0, 11, 11, 1, 115200, 0xbf70778a
0, 66000, 66000, 0, 115200, 0xbf70778a
1, 16184, 16184, 1456, 5824, 0x34a5b0e3
0, 12, 12, 1, 115200, 0x117eb766
0, 72000, 72000, 0, 115200, 0x117eb766
1, 17640, 17640, 1484, 5936, 0x6e546f72
0, 13, 13, 1, 115200, 0x4617fbad
0, 78000, 78000, 0, 115200, 0x4617fbad
1, 19124, 19124, 1456, 5824, 0x4f093b35
0, 14, 14, 1, 115200, 0x5f5b02d2
0, 84000, 84000, 0, 115200, 0x5f5b02d2
1, 20580, 20580, 1484, 5936, 0x95b5b599
0, 15, 15, 1, 115200, 0x2a9c5325
0, 90000, 90000, 0, 115200, 0x2a9c5325
1, 22064, 22064, 1456, 5824, 0x75e15e60
0, 16, 16, 1, 115200, 0x14a89e2a
0, 96000, 96000, 0, 115200, 0x14a89e2a
1, 23520, 23520, 1484, 5936, 0xd1077d39
0, 17, 17, 1, 115200, 0xe69aa994
0, 102000, 102000, 0, 115200, 0xe69aa994
1, 25004, 25004, 1456, 5824, 0x956e21ca
0, 18, 18, 1, 115200, 0xfbacf589
0, 108000, 108000, 0, 115200, 0xfbacf589
1, 26460, 26460, 1484, 5936, 0x33bac234
0, 19, 19, 1, 115200, 0x1d714c6e
0, 114000, 114000, 0, 115200, 0x1d714c6e
1, 27944, 27944, 1456, 5824, 0x5df37824
0, 20, 20, 1, 115200, 0x6eff66cb
0, 120000, 120000, 0, 115200, 0x6eff66cb
1, 29400, 29400, 1484, 5936, 0xc174af24
0, 21, 21, 1, 115200, 0xee21c1cb
0, 126000, 126000, 0, 115200, 0xee21c1cb
1, 30884, 30884, 1456, 5824, 0xe5dc2159
0, 22, 22, 1, 115200, 0xce714ada
0, 132000, 132000, 0, 115200, 0xce714ada
1, 32340, 32340, 1484, 5936, 0x63ffc8b1
0, 23, 23, 1, 115200, 0xf89d56c3
0, 138000, 138000, 0, 115200, 0xf89d56c3
1, 33824, 33824, 1456, 5824, 0xefe4c365
0, 24, 24, 1, 115200, 0x65fd5e60
0, 144000, 144000, 0, 115200, 0x65fd5e60
1, 35280, 35280, 1484, 5936, 0x2174304d
0, 25, 25, 1, 115200, 0x0c256424
0, 150000, 150000, 0, 115200, 0x0c256424
This diff is collapsed.
#tb 0: 52/525
0, 0, 0, 1, 57600, 0x87887a7b
0, 1, 1, 1, 57600, 0x10c301d2
0, 2, 2, 1, 57600, 0xd1a6f910
0, 3, 3, 1, 57600, 0x20242bb9
0, 4, 4, 1, 57600, 0xae33cb7f
0, 5, 5, 1, 57600, 0x501b82c8
0, 6, 6, 1, 57600, 0x84199043
0, 7, 7, 1, 57600, 0x946a6dbb
0, 8, 8, 1, 57600, 0xeacea671
0, 9, 9, 1, 57600, 0x77b8723f
0, 10, 10, 1, 57600, 0x371cdb09
0, 11, 11, 1, 57600, 0xa16ef5ee
0, 12, 12, 1, 57600, 0xcb6abd9e
0, 13, 13, 1, 57600, 0xb73e800f
0, 14, 14, 1, 57600, 0x368bd93e
0, 15, 15, 1, 57600, 0xcde72dc5
#tb 0: 1/11025
0, 0, 0, 0, 57600, 0x87887a7b
0, 1092, 1092, 0, 57600, 0x10c301d2
0, 2184, 2184, 0, 57600, 0xd1a6f910
0, 3276, 3276, 0, 57600, 0x20242bb9
0, 4368, 4368, 0, 57600, 0xae33cb7f
0, 5460, 5460, 0, 57600, 0x501b82c8
0, 6552, 6552, 0, 57600, 0x84199043
0, 7644, 7644, 0, 57600, 0x946a6dbb
0, 8736, 8736, 0, 57600, 0xeacea671
0, 9828, 9828, 0, 57600, 0x77b8723f
0, 10920, 10920, 0, 57600, 0x371cdb09
0, 12012, 12012, 0, 57600, 0xa16ef5ee
0, 13104, 13104, 0, 57600, 0xcb6abd9e
0, 14196, 14196, 0, 57600, 0xb73e800f
0, 15288, 15288, 0, 57600, 0x368bd93e
0, 16380, 16380, 0, 57600, 0xcde72dc5
#tb 0: 3/158
0, 0, 0, 1, 67584, 0xce0cade5
#tb 0: 1/11025
0, 0, 0, 0, 67584, 0xce0cade5
#tb 0: 12/601
0, 0, 0, 1, 67584, 0x5eae629b
0, 1, 1, 1, 67584, 0x32591227
0, 2, 2, 1, 67584, 0x4e4424c7
0, 3, 3, 1, 67584, 0x70db0134
0, 4, 4, 1, 67584, 0x3550ed0b
0, 5, 5, 1, 67584, 0x86fe3eef
0, 6, 6, 1, 67584, 0x3414bb33
0, 7, 7, 1, 67584, 0x667bfb91
0, 8, 8, 1, 67584, 0x6e1a4ccb
0, 9, 9, 1, 67584, 0xf723f9ae
0, 10, 10, 1, 67584, 0x88481d5d
#tb 0: 1/11025
0, 0, 0, 0, 67584, 0x5eae629b
0, 220, 220, 0, 67584, 0x32591227
0, 440, 440, 0, 67584, 0x4e4424c7
0, 660, 660, 0, 67584, 0x70db0134
0, 880, 880, 0, 67584, 0x3550ed0b
0, 1100, 1100, 0, 67584, 0x86fe3eef
0, 1320, 1320, 0, 67584, 0x3414bb33
0, 1540, 1540, 0, 67584, 0x667bfb91
0, 1760, 1760, 0, 67584, 0x6e1a4ccb
0, 1980, 1980, 0, 67584, 0xf723f9ae
0, 2200, 2200, 0, 67584, 0x88481d5d
#tb 0: 368/11025
0, 0, 0, 1, 30720, 0x0d552cfd
0, 1, 1, 1, 30720, 0x3cf93291
0, 2, 2, 1, 30720, 0xe45b2868
0, 3, 3, 1, 30720, 0xb5df289b
0, 4, 4, 1, 30720, 0x2562259e
0, 5, 5, 1, 30720, 0xbf171878
0, 6, 6, 1, 30720, 0x695b1d73
0, 7, 7, 1, 30720, 0x89ef1614
0, 8, 8, 1, 30720, 0xe12a1dd9
0, 9, 9, 1, 30720, 0x49622ffa
0, 10, 10, 1, 30720, 0xd6832703
0, 11, 11, 1, 30720, 0xec1d0cb7
0, 12, 12, 1, 30720, 0x8bee0525
0, 13, 13, 1, 30720, 0x1e0cf0c4
0, 14, 14, 1, 30720, 0xf83fd9db
0, 15, 15, 1, 30720, 0xffb0d6ab
0, 16, 16, 1, 30720, 0xe37fe239
0, 17, 17, 1, 30720, 0x74b0f856
0, 18, 18, 1, 30720, 0x9c88d3e1
0, 19, 19, 1, 30720, 0x714db368
0, 20, 20, 1, 30720, 0x6c8e8860
0, 21, 21, 1, 30720, 0x804968e6
0, 22, 22, 1, 30720, 0x7ac56ae4
0, 23, 23, 1, 30720, 0xffd85cbf
0, 24, 24, 1, 30720, 0x1f8455f9
0, 25, 25, 1, 30720, 0x3ae65296
0, 26, 26, 1, 30720, 0x9e544ecd
0, 27, 27, 1, 30720, 0x35678e5a
0, 28, 28, 1, 30720, 0x04bae866
0, 29, 29, 1, 30720, 0xb126ed94
0, 30, 30, 1, 30720, 0x1720efc5
0, 31, 31, 1, 30720, 0x4c1b01c2
0, 32, 32, 1, 30720, 0xd0a1e866
0, 33, 33, 1, 30720, 0x0d330789
0, 34, 34, 1, 30720, 0xf5ac08bb
0, 35, 35, 1, 30720, 0x9abe0d83
0, 36, 36, 1, 30720, 0xa44c02f4
0, 37, 37, 1, 30720, 0xdc4cc688
0, 38, 38, 1, 30720, 0x22eef3c1
0, 39, 39, 1, 30720, 0xcfbc0d1d
0, 40, 40, 1, 30720, 0x7104ea31
0, 41, 41, 1, 30720, 0x80daecfb
0, 42, 42, 1, 30720, 0xe1bab995
0, 43, 43, 1, 30720, 0x43f4b896
0, 44, 44, 1, 30720, 0xa0d2bf5c
0, 45, 45, 1, 30720, 0x3556a114
#tb 0: 1/11025
0, 0, 0, 0, 30720, 0x0d552cfd
0, 368, 368, 0, 30720, 0x3cf93291
0, 736, 736, 0, 30720, 0xe45b2868
0, 1104, 1104, 0, 30720, 0xb5df289b
0, 1472, 1472, 0, 30720, 0x2562259e
0, 1840, 1840, 0, 30720, 0xbf171878
0, 2208, 2208, 0, 30720, 0x695b1d73
0, 2576, 2576, 0, 30720, 0x89ef1614
0, 2944, 2944, 0, 30720, 0xe12a1dd9
0, 3312, 3312, 0, 30720, 0x49622ffa
0, 3680, 3680, 0, 30720, 0xd6832703
0, 4048, 4048, 0, 30720, 0xec1d0cb7
0, 4416, 4416, 0, 30720, 0x8bee0525
0, 4784, 4784, 0, 30720, 0x1e0cf0c4
0, 5152, 5152, 0, 30720, 0xf83fd9db
0, 5520, 5520, 0, 30720, 0xffb0d6ab
0, 5888, 5888, 0, 30720, 0xe37fe239
0, 6256, 6256, 0, 30720, 0x74b0f856
0, 6624, 6624, 0, 30720, 0x9c88d3e1
0, 6992, 6992, 0, 30720, 0x714db368
0, 7360, 7360, 0, 30720, 0x6c8e8860
0, 7728, 7728, 0, 30720, 0x804968e6
0, 8096, 8096, 0, 30720, 0x7ac56ae4
0, 8464, 8464, 0, 30720, 0xffd85cbf
0, 8832, 8832, 0, 30720, 0x1f8455f9
0, 9200, 9200, 0, 30720, 0x3ae65296
0, 9568, 9568, 0, 30720, 0x9e544ecd
0, 9936, 9936, 0, 30720, 0x35678e5a
0, 10304, 10304, 0, 30720, 0x04bae866
0, 10672, 10672, 0, 30720, 0xb126ed94
0, 11040, 11040, 0, 30720, 0x1720efc5
0, 11408, 11408, 0, 30720, 0x4c1b01c2
0, 11776, 11776, 0, 30720, 0xd0a1e866
0, 12144, 12144, 0, 30720, 0x0d330789
0, 12512, 12512, 0, 30720, 0xf5ac08bb
0, 12880, 12880, 0, 30720, 0x9abe0d83
0, 13248, 13248, 0, 30720, 0xa44c02f4
0, 13616, 13616, 0, 30720, 0xdc4cc688
0, 13984, 13984, 0, 30720, 0x22eef3c1
0, 14352, 14352, 0, 30720, 0xcfbc0d1d
0, 14720, 14720, 0, 30720, 0x7104ea31
0, 15088, 15088, 0, 30720, 0x80daecfb
0, 15456, 15456, 0, 30720, 0xe1bab995
0, 15824, 15824, 0, 30720, 0x43f4b896
0, 16192, 16192, 0, 30720, 0xa0d2bf5c
0, 16560, 16560, 0, 30720, 0x3556a114
#tb 0: 1/15
#tb 0: 1/90000
#tb 1: 1/22222
0, 0, 0, 1, 188892, 0xcb5be3dd
0, 0, 0, 0, 188892, 0xcb5be3dd
1, 0, 0, 8186, 16372, 0xfaaab59d
0, 1, 1, 1, 188892, 0x0f313ebc
0, 2, 2, 1, 188892, 0xc0da25cc
0, 3, 3, 1, 188892, 0xad6e1d44
0, 4, 4, 1, 188892, 0xb1103b40
0, 5, 5, 1, 188892, 0xae033450
0, 6000, 6000, 0, 188892, 0x0f313ebc
0, 12000, 12000, 0, 188892, 0xc0da25cc
0, 18000, 18000, 0, 188892, 0xad6e1d44
0, 24000, 24000, 0, 188892, 0xb1103b40
0, 30000, 30000, 0, 188892, 0xae033450
1, 8186, 8186, 2014, 4028, 0xc2daed72
0, 6, 6, 1, 188892, 0xb31f03b4
0, 36000, 36000, 0, 188892, 0xb31f03b4
1, 10200, 10200, 2743, 5486, 0xf7fd794d
0, 7, 7, 1, 188892, 0xacb2d3f9
0, 8, 8, 1, 188892, 0x7d77ecbd
0, 42000, 42000, 0, 188892, 0xacb2d3f9
0, 48000, 48000, 0, 188892, 0x7d77ecbd
1, 12943, 12943, 2895, 5790, 0xfd5a369f
0, 9, 9, 1, 188892, 0x7faa2f6c
0, 10, 10, 1, 188892, 0x28f4fdf1
0, 54000, 54000, 0, 188892, 0x7faa2f6c
0, 60000, 60000, 0, 188892, 0x28f4fdf1
1, 15838, 15838, 534, 1068, 0x0b602cd0
0, 11, 11, 1, 188892, 0x4b53f3b9
0, 66000, 66000, 0, 188892, 0x4b53f3b9
1, 16372, 16372, 2454, 4908, 0xfe870aad
0, 12, 12, 1, 188892, 0x1f09bb29
0, 72000, 72000, 0, 188892, 0x1f09bb29
1, 18826, 18826, 3031, 6062, 0x8a4d6e0f
0, 13, 13, 1, 188892, 0x3afcc11d
0, 14, 14, 1, 188892, 0x6b918e49
0, 78000, 78000, 0, 188892, 0x3afcc11d
0, 84000, 84000, 0, 188892, 0x6b918e49
1, 21857, 21857, 2701, 5402, 0x71fd352f
0, 15, 15, 1, 188892, 0x9630a04d
0, 16, 16, 1, 188892, 0x9381b4c1
0, 90000, 90000, 0, 188892, 0x9630a04d
0, 96000, 96000, 0, 188892, 0x9381b4c1
1, 24558, 24558, 272, 544, 0xeb766d34
1, 24830, 24830, 2953, 5906, 0x47ac7e08
0, 17, 17, 1, 188892, 0xa7dea7e5
0, 18, 18, 1, 188892, 0xd277c41d
0, 102000, 102000, 0, 188892, 0xa7dea7e5
0, 108000, 108000, 0, 188892, 0xd277c41d
1, 27783, 27783, 2958, 5916, 0x0d26eb56
0, 19, 19, 1, 188892, 0xafa2a6c9
0, 20, 20, 1, 188892, 0x13a38839
0, 114000, 114000, 0, 188892, 0xafa2a6c9
0, 120000, 120000, 0, 188892, 0x13a38839
1, 30741, 30741, 2003, 4006, 0x9941c71a
0, 21, 21, 1, 188892, 0xcd5e5a6d
0, 22, 22, 1, 188892, 0xe7da71e9
0, 126000, 126000, 0, 188892, 0xcd5e5a6d
0, 132000, 132000, 0, 188892, 0xe7da71e9
1, 32744, 32744, 1050, 2100, 0xc9a2ee36
1, 33794, 33794, 2947, 5894, 0xd2ba4eaa
0, 23, 23, 1, 188892, 0x06928add
0, 24, 24, 1, 188892, 0x4a108eb9
0, 138000, 138000, 0, 188892, 0x06928add
0, 144000, 144000, 0, 188892, 0x4a108eb9
1, 36741, 36741, 3045, 6090, 0xf43e73d0
0, 25, 25, 1, 188892, 0xea2598f5
0, 26, 26, 1, 188892, 0x17ed6839
0, 150000, 150000, 0, 188892, 0xea2598f5
0, 156000, 156000, 0, 188892, 0x17ed6839
1, 39786, 39786, 1144, 2288, 0x5a8b7aa0
0, 27, 27, 1, 188892, 0x9de6ab65
0, 162000, 162000, 0, 188892, 0x9de6ab65
1, 40930, 40930, 1925, 3850, 0x7f66eb2c
0, 28, 28, 1, 188892, 0xb4ee326f
0, 168000, 168000, 0, 188892, 0xb4ee326f
1, 42855, 42855, 2898, 5796, 0xc5cf3ee8
0, 29, 29, 1, 188892, 0x3f85095b
0, 30, 30, 1, 188892, 0xaab7e331
0, 174000, 174000, 0, 188892, 0x3f85095b
0, 180000, 180000, 0, 188892, 0xaab7e331
1, 45753, 45753, 3021, 6042, 0xed80136d
0, 31, 31, 1, 188892, 0xc2a079e1
0, 32, 32, 1, 188892, 0x612080c2
0, 186000, 186000, 0, 188892, 0xc2a079e1
0, 192000, 192000, 0, 188892, 0x612080c2
1, 48774, 48774, 342, 684, 0xc42bd137
0, 33, 33, 1, 188892, 0xa7232d47
0, 198000, 198000, 0, 188892, 0xa7232d47
1, 49116, 49116, 2718, 5436, 0xb7f8a6fd
0, 34, 34, 1, 188892, 0xc053297d
0, 204000, 204000, 0, 188892, 0xc053297d
1, 51834, 51834, 3049, 6098, 0xee6354a2
0, 35, 35, 1, 188892, 0x1ecc3bfe
0, 36, 36, 1, 188892, 0xcc4ac803
0, 37, 37, 1, 188892, 0x4b90047b
0, 210000, 210000, 0, 188892, 0x1ecc3bfe
0, 216000, 216000, 0, 188892, 0xcc4ac803
0, 222000, 222000, 0, 188892, 0x4b90047b
1, 54883, 54883, 2419, 4838, 0x129e61d0
0, 38, 38, 1, 188892, 0xd863b643
0, 228000, 228000, 0, 188892, 0xd863b643
1, 57302, 57302, 537, 1074, 0x9da90634
0, 39, 39, 1, 188892, 0x93a25fb1
0, 234000, 234000, 0, 188892, 0x93a25fb1
1, 57839, 57839, 3042, 6084, 0x8ffed952
0, 40, 40, 1, 188892, 0xf969e131
0, 41, 41, 1, 188892, 0x73bd2469
0, 240000, 240000, 0, 188892, 0xf969e131
0, 246000, 246000, 0, 188892, 0x73bd2469
1, 60881, 60881, 3019, 6038, 0xa07b4276
0, 42, 42, 1, 188892, 0x265a9ce2
0, 43, 43, 1, 188892, 0xd59ccd39
0, 252000, 252000, 0, 188892, 0x265a9ce2
0, 258000, 258000, 0, 188892, 0xd59ccd39
1, 63900, 63900, 1588, 3176, 0xebef63c1
0, 44, 44, 1, 188892, 0xe50fc068
0, 264000, 264000, 0, 188892, 0xe50fc068
1, 65488, 65488, 1397, 2794, 0xbe1000db
0, 45, 45, 1, 188892, 0x83113a86
0, 270000, 270000, 0, 188892, 0x83113a86
1, 66885, 66885, 3010, 6020, 0xd8e34961
0, 46, 46, 1, 188892, 0xa0203504
0, 47, 47, 1, 188892, 0x9e2d518c
0, 276000, 276000, 0, 188892, 0xa0203504
0, 282000, 282000, 0, 188892, 0x9e2d518c
1, 69895, 69895, 3010, 6020, 0xc07cf461
0, 48, 48, 1, 188892, 0x5f610e66
0, 49, 49, 1, 188892, 0x9b77f900
0, 288000, 288000, 0, 188892, 0x5f610e66
0, 294000, 294000, 0, 188892, 0x9b77f900
1, 72905, 72905, 769, 1538, 0xc975ae02
1, 73674, 73674, 2115, 4230, 0x0827111b
0, 50, 50, 1, 188892, 0xaaf279c2
0, 51, 51, 1, 188892, 0x4ac97cc2
0, 300000, 300000, 0, 188892, 0xaaf279c2
0, 306000, 306000, 0, 188892, 0x4ac97cc2
1, 75789, 75789, 3042, 6084, 0x2cf0a407
0, 52, 52, 1, 188892, 0xddd91642
0, 53, 53, 1, 188892, 0x4f32dcd1
0, 312000, 312000, 0, 188892, 0xddd91642
0, 318000, 318000, 0, 188892, 0x4f32dcd1
1, 78831, 78831, 2914, 5828, 0x12750279
0, 54, 54, 1, 188892, 0xdc126b42
0, 55, 55, 1, 188892, 0x00000000
0, 324000, 324000, 0, 188892, 0xdc126b42
0, 330000, 330000, 0, 188892, 0x00000000
1, 81745, 81745, 115, 230, 0xc9c03f3b
1, 81860, 81860, 384, 768, 0x6137a04d
This diff is collapsed.
#tb 0: 200/2997
0, 0, 0, 1, 57600, 0x1f5c89b7
0, 1, 1, 1, 57600, 0xd2055aaf
0, 2, 2, 1, 57600, 0x22336052
0, 3, 3, 1, 57600, 0xf7135e2a
0, 4, 4, 1, 57600, 0xd9de126a
0, 5, 5, 1, 57600, 0xe5a9e1de
0, 6, 6, 1, 57600, 0x253f1702
0, 7, 7, 1, 57600, 0xcb8679c9
0, 8, 8, 1, 57600, 0x96cb5fa8
0, 9, 9, 1, 57600, 0xbe03528a
0, 10, 10, 1, 57600, 0x120a097d
0, 11, 11, 1, 57600, 0xaf562041
0, 12, 12, 1, 57600, 0x15b2d8c9
0, 13, 13, 1, 57600, 0x95f60e58
0, 14, 14, 1, 57600, 0x5ace5a6b
0, 15, 15, 1, 57600, 0x2f80b8e3
0, 16, 16, 1, 57600, 0x5c49c915
0, 17, 17, 1, 57600, 0xb91efe60
0, 18, 18, 1, 57600, 0xa80d29e8
0, 19, 19, 1, 57600, 0x6e72d03a
0, 20, 20, 1, 57600, 0x4f716a9e
0, 21, 21, 1, 57600, 0x3a43b9c9
0, 22, 22, 1, 57600, 0x65002db3
0, 23, 23, 1, 57600, 0x70edc765
0, 24, 24, 1, 57600, 0x9dc54abd
0, 25, 25, 1, 57600, 0xd17bda86
0, 26, 26, 1, 57600, 0xc5d2d458
0, 27, 27, 1, 57600, 0x32313c79
0, 28, 28, 1, 57600, 0x2e537e8d
0, 29, 29, 1, 57600, 0xe77d5d9e
0, 30, 30, 1, 57600, 0x9cc2599a
0, 31, 31, 1, 57600, 0x8a9be76e
0, 32, 32, 1, 57600, 0x47447eef
0, 33, 33, 1, 57600, 0xbf5f84fa
0, 34, 34, 1, 57600, 0xacd49c07
0, 35, 35, 1, 57600, 0xdc628975
0, 36, 36, 1, 57600, 0x97d7964e
0, 37, 37, 1, 57600, 0xd0a19b6b
0, 38, 38, 1, 57600, 0x5ea3d78c
0, 39, 39, 1, 57600, 0x39b59be0
0, 40, 40, 1, 57600, 0x6501a2d2
0, 41, 41, 1, 57600, 0x0ee7e36d
0, 42, 42, 1, 57600, 0x354ddd1d
0, 43, 43, 1, 57600, 0x9b8f22d3
0, 44, 44, 1, 57600, 0x0aadfb8c
0, 45, 45, 1, 57600, 0x322e2785
0, 46, 46, 1, 57600, 0x78a6467e
0, 47, 47, 1, 57600, 0x1757f3b1
0, 48, 48, 1, 57600, 0xe874ceb7
0, 49, 49, 1, 57600, 0xc40f9e4d
0, 50, 50, 1, 57600, 0x89f6a735
0, 51, 51, 1, 57600, 0xe3635393
0, 52, 52, 1, 57600, 0xdae585c7
0, 53, 53, 1, 57600, 0xf99baa60
0, 54, 54, 1, 57600, 0x28a8b1ee
0, 55, 55, 1, 57600, 0xcd5587f8
#tb 0: 1/14985
0, 0, 0, 0, 57600, 0x1f5c89b7
0, 1000, 1000, 0, 57600, 0xd2055aaf
0, 2000, 2000, 0, 57600, 0x22336052
0, 3000, 3000, 0, 57600, 0xf7135e2a
0, 4000, 4000, 0, 57600, 0xd9de126a
0, 5000, 5000, 0, 57600, 0xe5a9e1de
0, 6000, 6000, 0, 57600, 0x253f1702
0, 7000, 7000, 0, 57600, 0xcb8679c9
0, 8000, 8000, 0, 57600, 0x96cb5fa8
0, 9000, 9000, 0, 57600, 0xbe03528a
0, 10000, 10000, 0, 57600, 0x120a097d
0, 11000, 11000, 0, 57600, 0xaf562041
0, 12000, 12000, 0, 57600, 0x15b2d8c9
0, 13000, 13000, 0, 57600, 0x95f60e58
0, 14000, 14000, 0, 57600, 0x5ace5a6b
0, 15000, 15000, 0, 57600, 0x2f80b8e3
0, 16000, 16000, 0, 57600, 0x5c49c915
0, 17000, 17000, 0, 57600, 0xb91efe60
0, 18000, 18000, 0, 57600, 0xa80d29e8
0, 19000, 19000, 0, 57600, 0x6e72d03a
0, 20000, 20000, 0, 57600, 0x4f716a9e
0, 21000, 21000, 0, 57600, 0x3a43b9c9
0, 22000, 22000, 0, 57600, 0x65002db3
0, 23000, 23000, 0, 57600, 0x70edc765
0, 24000, 24000, 0, 57600, 0x9dc54abd
0, 25000, 25000, 0, 57600, 0xd17bda86
0, 26000, 26000, 0, 57600, 0xc5d2d458
0, 27000, 27000, 0, 57600, 0x32313c79
0, 28000, 28000, 0, 57600, 0x2e537e8d
0, 29000, 29000, 0, 57600, 0xe77d5d9e
0, 30000, 30000, 0, 57600, 0x9cc2599a
0, 31000, 31000, 0, 57600, 0x8a9be76e
0, 32000, 32000, 0, 57600, 0x47447eef
0, 33000, 33000, 0, 57600, 0xbf5f84fa
0, 34000, 34000, 0, 57600, 0xacd49c07
0, 35000, 35000, 0, 57600, 0xdc628975
0, 36000, 36000, 0, 57600, 0x97d7964e
0, 37000, 37000, 0, 57600, 0xd0a19b6b
0, 38000, 38000, 0, 57600, 0x5ea3d78c
0, 39000, 39000, 0, 57600, 0x39b59be0
0, 40000, 40000, 0, 57600, 0x6501a2d2
0, 41000, 41000, 0, 57600, 0x0ee7e36d
0, 42000, 42000, 0, 57600, 0x354ddd1d
0, 43000, 43000, 0, 57600, 0x9b8f22d3
0, 44000, 44000, 0, 57600, 0x0aadfb8c
0, 45000, 45000, 0, 57600, 0x322e2785
0, 46000, 46000, 0, 57600, 0x78a6467e
0, 47000, 47000, 0, 57600, 0x1757f3b1
0, 48000, 48000, 0, 57600, 0xe874ceb7
0, 49000, 49000, 0, 57600, 0xc40f9e4d
0, 50000, 50000, 0, 57600, 0x89f6a735
0, 51000, 51000, 0, 57600, 0xe3635393
0, 52000, 52000, 0, 57600, 0xdae585c7
0, 53000, 53000, 0, 57600, 0xf99baa60
0, 54000, 54000, 0, 57600, 0x28a8b1ee
0, 55000, 55000, 0, 57600, 0xcd5587f8
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
#tb 0: 1/15
#tb 0: 1/90000
#tb 1: 1/22050
0, 0, 0, 1, 230400, 0xfbf2581e
0, 0, 0, 0, 230400, 0xfbf2581e
1, 0, 0, 1468, 5872, 0x00000000
1, 1468, 1468, 1468, 5872, 0x00000000
0, 1, 1, 1, 230400, 0xfbf2581e
0, 6000, 6000, 0, 230400, 0xfbf2581e
1, 2936, 2936, 1468, 5872, 0x00000000
0, 2, 2, 1, 230400, 0xfbf2581e
0, 12000, 12000, 0, 230400, 0xfbf2581e
1, 4404, 4404, 1468, 5872, 0x00000000
0, 3, 3, 1, 230400, 0xfbf2581e
0, 18000, 18000, 0, 230400, 0xfbf2581e
1, 5872, 5872, 1468, 5872, 0x00000000
0, 4, 4, 1, 230400, 0xfbf2581e
0, 24000, 24000, 0, 230400, 0xfbf2581e
1, 7340, 7340, 1468, 5872, 0x00000000
0, 5, 5, 1, 230400, 0xfbf2581e
0, 30000, 30000, 0, 230400, 0xfbf2581e
1, 8808, 8808, 1468, 5872, 0x00000000
0, 6, 6, 1, 230400, 0xfbf2581e
0, 36000, 36000, 0, 230400, 0xfbf2581e
1, 10276, 10276, 1468, 5872, 0x00000000
0, 7, 7, 1, 230400, 0xfbf2581e
0, 42000, 42000, 0, 230400, 0xfbf2581e
1, 11744, 11744, 1468, 5872, 0x00000000
0, 8, 8, 1, 230400, 0xfbf2581e
0, 48000, 48000, 0, 230400, 0xfbf2581e
1, 13212, 13212, 1468, 5872, 0x00000000
0, 9, 9, 1, 230400, 0xfbf2581e
0, 54000, 54000, 0, 230400, 0xfbf2581e
1, 14680, 14680, 1468, 5872, 0x00000000
0, 10, 10, 1, 230400, 0xfbf2581e
0, 60000, 60000, 0, 230400, 0xfbf2581e
1, 16148, 16148, 1468, 5872, 0x00000000
0, 11, 11, 1, 230400, 0xfbf2581e
0, 66000, 66000, 0, 230400, 0xfbf2581e
1, 17616, 17616, 1468, 5872, 0x00000000
0, 12, 12, 1, 230400, 0xfbf2581e
0, 72000, 72000, 0, 230400, 0xfbf2581e
1, 19084, 19084, 1468, 5872, 0x00000000
0, 13, 13, 1, 230400, 0xfbf2581e
0, 78000, 78000, 0, 230400, 0xfbf2581e
1, 20552, 20552, 1468, 5872, 0x00000000
0, 14, 14, 1, 230400, 0xfbf2581e
0, 84000, 84000, 0, 230400, 0xfbf2581e
1, 22020, 22020, 1468, 5872, 0xc6f64777
0, 15, 15, 1, 230400, 0xf5a0a21d
0, 90000, 90000, 0, 230400, 0xf5a0a21d
1, 23488, 23488, 1468, 5872, 0x7c9e60e8
0, 16, 16, 1, 230400, 0x909cc039
0, 96000, 96000, 0, 230400, 0x909cc039
1, 24956, 24956, 1468, 5872, 0x46525c54
0, 17, 17, 1, 230400, 0x14d899dd
0, 102000, 102000, 0, 230400, 0x14d899dd
1, 26424, 26424, 1468, 5872, 0x842796bb
0, 18, 18, 1, 230400, 0x0d246edf
0, 108000, 108000, 0, 230400, 0x0d246edf
1, 27892, 27892, 1468, 5872, 0xb1f6cbd5
0, 19, 19, 1, 230400, 0x5345fe0d
0, 114000, 114000, 0, 230400, 0x5345fe0d
1, 29360, 29360, 1468, 5872, 0x0261a74b
0, 20, 20, 1, 230400, 0x5abdff9a
0, 120000, 120000, 0, 230400, 0x5abdff9a
1, 30828, 30828, 1468, 5872, 0x8218b1f9
0, 21, 21, 1, 230400, 0x1730d973
0, 126000, 126000, 0, 230400, 0x1730d973
1, 32296, 32296, 1468, 5872, 0xd7a2cae6
0, 22, 22, 1, 230400, 0xec881be9
0, 132000, 132000, 0, 230400, 0xec881be9
1, 33764, 33764, 1468, 5872, 0x69d34562
0, 23, 23, 1, 230400, 0xf4216895
0, 138000, 138000, 0, 230400, 0xf4216895
1, 35232, 35232, 1468, 5872, 0x9303ec65
0, 24, 24, 1, 230400, 0x529d7a52
0, 144000, 144000, 0, 230400, 0x529d7a52
1, 36700, 36700, 1468, 5872, 0xd5d963a1
0, 25, 25, 1, 230400, 0x93b4c7b9
0, 150000, 150000, 0, 230400, 0x93b4c7b9
1, 38168, 38168, 1468, 5872, 0x0557e06f
0, 26, 26, 1, 230400, 0xedc65bcd
0, 156000, 156000, 0, 230400, 0xedc65bcd
1, 39636, 39636, 1468, 5872, 0x1eb48b41
0, 27, 27, 1, 230400, 0xf0fb54ae
0, 162000, 162000, 0, 230400, 0xf0fb54ae
1, 41104, 41104, 1468, 5872, 0x70f5ca3f
0, 28, 28, 1, 230400, 0x27864ce9
0, 168000, 168000, 0, 230400, 0x27864ce9
1, 42572, 42572, 1468, 5872, 0xd39e5c5e
0, 29, 29, 1, 230400, 0xcd05012d
0, 174000, 174000, 0, 230400, 0xcd05012d
1, 44040, 44040, 1468, 5872, 0x29c59140
0, 30, 30, 1, 230400, 0x019b6d84
0, 180000, 180000, 0, 230400, 0x019b6d84
1, 45508, 45508, 1468, 5872, 0x7d95e643
0, 31, 31, 1, 230400, 0xcc05d416
0, 186000, 186000, 0, 230400, 0xcc05d416
1, 46976, 46976, 1468, 5872, 0x45353fd8
0, 32, 32, 1, 230400, 0xb04c0248
0, 192000, 192000, 0, 230400, 0xb04c0248
1, 48444, 48444, 1468, 5872, 0xad7b1b27
0, 33, 33, 1, 230400, 0x6806eb92
0, 198000, 198000, 0, 230400, 0x6806eb92
1, 49912, 49912, 1468, 5872, 0x1f0377b3
0, 34, 34, 1, 230400, 0x60e9c001
0, 204000, 204000, 0, 230400, 0x60e9c001
1, 51380, 51380, 1468, 5872, 0x6074541e
0, 35, 35, 1, 230400, 0x9b040261
0, 210000, 210000, 0, 230400, 0x9b040261
1, 52848, 52848, 1468, 5872, 0xa4f5e892
0, 36, 36, 1, 230400, 0x6961fb90
0, 216000, 216000, 0, 230400, 0x6961fb90
1, 54316, 54316, 1468, 5872, 0x084bc696
0, 37, 37, 1, 230400, 0xbf67ad24
0, 222000, 222000, 0, 230400, 0xbf67ad24
1, 55784, 55784, 1468, 5872, 0x67fdafce
0, 38, 38, 1, 230400, 0x2270f328
0, 228000, 228000, 0, 230400, 0x2270f328
1, 57252, 57252, 1468, 5872, 0x8dfd249d
0, 39, 39, 1, 230400, 0xd0c345f6
0, 234000, 234000, 0, 230400, 0xd0c345f6
1, 58720, 58720, 1468, 5872, 0x514184ee
0, 40, 40, 1, 230400, 0xfd159212
0, 240000, 240000, 0, 230400, 0xfd159212
1, 60188, 60188, 1468, 5872, 0xc0090b0d
0, 41, 41, 1, 230400, 0x085578ff
0, 246000, 246000, 0, 230400, 0x085578ff
1, 61656, 61656, 1468, 5872, 0xc1171cc8
0, 42, 42, 1, 230400, 0xcca8afa6
0, 252000, 252000, 0, 230400, 0xcca8afa6
1, 63124, 63124, 1468, 5872, 0x7d7dd07e
0, 43, 43, 1, 230400, 0x901ec91c
0, 258000, 258000, 0, 230400, 0x901ec91c
1, 64592, 64592, 1468, 5872, 0xe6aa619c
0, 44, 44, 1, 230400, 0xf1cb99f3
0, 264000, 264000, 0, 230400, 0xf1cb99f3
1, 66060, 66060, 1468, 5872, 0xd5aac0df
0, 45, 45, 1, 230400, 0x86d98f0c
0, 270000, 270000, 0, 230400, 0x86d98f0c
1, 67528, 67528, 1468, 5872, 0x3b68b390
0, 46, 46, 1, 230400, 0x52970700
0, 276000, 276000, 0, 230400, 0x52970700
#tb 0: 1/15
#tb 0: 1/90000
#tb 1: 1/22050
0, 0, 0, 1, 192000, 0xdfc2f225
0, 0, 0, 0, 192000, 0xdfc2f225
1, 0, 0, 736, 2944, 0x00000000
1, 736, 736, 1472, 5888, 0x5ae3c2a4
0, 1, 1, 1, 192000, 0x059b57bd
0, 6000, 6000, 0, 192000, 0x059b57bd
1, 2208, 2208, 1472, 5888, 0x158fbcb4
0, 2, 2, 1, 192000, 0x766cb086
0, 12000, 12000, 0, 192000, 0x766cb086
1, 3680, 3680, 1472, 5888, 0x3fc85d35
0, 3, 3, 1, 192000, 0x459e3bac
0, 18000, 18000, 0, 192000, 0x459e3bac
1, 5152, 5152, 1472, 5888, 0x4667ec2b
0, 4, 4, 1, 192000, 0x5293e622
0, 24000, 24000, 0, 192000, 0x5293e622
1, 6624, 6624, 1472, 5888, 0x82744494
0, 5, 5, 1, 192000, 0x898b03f4
0, 30000, 30000, 0, 192000, 0x898b03f4
1, 8096, 8096, 1472, 5888, 0x3b0cb86f
0, 6, 6, 1, 192000, 0xb184a627
0, 36000, 36000, 0, 192000, 0xb184a627
1, 9568, 9568, 1472, 5888, 0x29493fbb
0, 7, 7, 1, 192000, 0xa3fc650a
0, 42000, 42000, 0, 192000, 0xa3fc650a
1, 11040, 11040, 1472, 5888, 0xaa2d8595
0, 8, 8, 1, 192000, 0xea448589
0, 48000, 48000, 0, 192000, 0xea448589
1, 12512, 12512, 1472, 5888, 0x2e563de6
0, 9, 9, 1, 192000, 0x700e2b76
0, 54000, 54000, 0, 192000, 0x700e2b76
1, 13984, 13984, 1472, 5888, 0x225cca99
0, 10, 10, 1, 192000, 0xa1a1d66d
0, 60000, 60000, 0, 192000, 0xa1a1d66d
1, 15456, 15456, 1472, 5888, 0x2b577599
0, 11, 11, 1, 192000, 0xd63bc8a1
0, 66000, 66000, 0, 192000, 0xd63bc8a1
1, 16928, 16928, 1472, 5888, 0x3d967f32
0, 12, 12, 1, 192000, 0x5f08c023
0, 72000, 72000, 0, 192000, 0x5f08c023
1, 18400, 18400, 1472, 5888, 0x16639a84
0, 13, 13, 1, 192000, 0x8b75ec3b
0, 78000, 78000, 0, 192000, 0x8b75ec3b
1, 19872, 19872, 1472, 5888, 0x90549ba0
0, 14, 14, 1, 192000, 0x62728ce4
0, 84000, 84000, 0, 192000, 0x62728ce4
1, 21344, 21344, 1472, 5888, 0xf46e6644
0, 15, 15, 1, 192000, 0xaa007941
0, 90000, 90000, 0, 192000, 0xaa007941
1, 22816, 22816, 1472, 5888, 0x39a073ec
0, 16, 16, 1, 192000, 0x55dc5b3b
0, 96000, 96000, 0, 192000, 0x55dc5b3b
1, 24288, 24288, 1472, 5888, 0xb1d7a93a
0, 17, 17, 1, 192000, 0x72d836c2
0, 102000, 102000, 0, 192000, 0x72d836c2
1, 25760, 25760, 1472, 5888, 0x25e9795b
0, 18, 18, 1, 192000, 0x1f2de2fc
0, 108000, 108000, 0, 192000, 0x1f2de2fc
1, 27232, 27232, 1472, 5888, 0xbbc07644
0, 19, 19, 1, 192000, 0xb295dfdb
0, 114000, 114000, 0, 192000, 0xb295dfdb
1, 28704, 28704, 1472, 5888, 0x323f6a1b
0, 20, 20, 1, 192000, 0xe5c5f634
0, 120000, 120000, 0, 192000, 0xe5c5f634
1, 30176, 30176, 1472, 5888, 0x7cae130b
0, 21, 21, 1, 192000, 0x455a0464
0, 126000, 126000, 0, 192000, 0x455a0464
1, 31648, 31648, 1472, 5888, 0xd23bf9c6
0, 22, 22, 1, 192000, 0x3bf2340d
0, 132000, 132000, 0, 192000, 0x3bf2340d
1, 33120, 33120, 1472, 5888, 0x5f73ef35
0, 23, 23, 1, 192000, 0xe368f0fc
0, 138000, 138000, 0, 192000, 0xe368f0fc
1, 34592, 34592, 1472, 5888, 0xc66026be
0, 24, 24, 1, 192000, 0xfa7549c0
0, 144000, 144000, 0, 192000, 0xfa7549c0
1, 36064, 36064, 1472, 5888, 0xc8fdb539
0, 25, 25, 1, 192000, 0x4dd76f3d
0, 150000, 150000, 0, 192000, 0x4dd76f3d
1, 37536, 37536, 1472, 5888, 0x94c6bfbd
0, 26, 26, 1, 192000, 0x50a49f6c
0, 156000, 156000, 0, 192000, 0x50a49f6c
1, 39008, 39008, 1472, 5888, 0xb77e1b83
0, 27, 27, 1, 192000, 0xb6072f65
0, 162000, 162000, 0, 192000, 0xb6072f65
1, 40480, 40480, 1472, 5888, 0x6c6d6693
0, 28, 28, 1, 192000, 0x093ce1a8
0, 168000, 168000, 0, 192000, 0x093ce1a8
1, 41952, 41952, 1472, 5888, 0xd9f064d4
0, 29, 29, 1, 192000, 0x55afe3db
0, 174000, 174000, 0, 192000, 0x55afe3db
1, 43424, 43424, 1472, 5888, 0x85dd990d
0, 30, 30, 1, 192000, 0x81c3bfab
0, 180000, 180000, 0, 192000, 0x81c3bfab
1, 44896, 44896, 1472, 5888, 0x385e021b
0, 31, 31, 1, 192000, 0x583ebd3d
0, 186000, 186000, 0, 192000, 0x583ebd3d
1, 46368, 46368, 1472, 5888, 0xac09fd02
0, 32, 32, 1, 192000, 0x2504f003
0, 192000, 192000, 0, 192000, 0x2504f003
1, 47840, 47840, 1472, 5888, 0xc6dcdff2
0, 33, 33, 1, 192000, 0x44ade2af
0, 198000, 198000, 0, 192000, 0x44ade2af
1, 49312, 49312, 1472, 5888, 0x86a6944d
0, 34, 34, 1, 192000, 0x77cbcfd8
0, 204000, 204000, 0, 192000, 0x77cbcfd8
1, 50784, 50784, 1472, 5888, 0x8587b964
0, 35, 35, 1, 192000, 0xac7ddfa1
0, 210000, 210000, 0, 192000, 0xac7ddfa1
1, 52256, 52256, 1472, 5888, 0x2b0355ff
0, 36, 36, 1, 192000, 0x79f7cfe8
0, 216000, 216000, 0, 192000, 0x79f7cfe8
1, 53728, 53728, 1472, 5888, 0xe4148a85
0, 37, 37, 1, 192000, 0xdf2898fd
0, 222000, 222000, 0, 192000, 0xdf2898fd
1, 55200, 55200, 1472, 5888, 0xdf02ed4f
1, 56672, 56672, 1472, 5888, 0x87a54b15
1, 58144, 58144, 1472, 5888, 0x3ad2be45
......
This diff is collapsed.
This diff is collapsed.
#tb 0: 1/10
#tb 0: 1/600
0, 0, 0, 1, 21600, 0x845098fc
0, 1, 1, 1, 21600, 0xc28e8bf0
0, 2, 2, 1, 21600, 0x2f418fb4
0, 3, 3, 1, 21600, 0x051d7a0e
0, 4, 4, 1, 21600, 0x1b36aa7c
0, 5, 5, 1, 21600, 0xb9e2ad38
0, 6, 6, 1, 21600, 0x8dc99b60
0, 7, 7, 1, 21600, 0xa3fa789a
0, 8, 8, 1, 21600, 0x1fdbade2
0, 9, 9, 1, 21600, 0x4f4ac164
0, 10, 10, 1, 21600, 0x0ea5cb50
0, 11, 11, 1, 21600, 0xfb659528
0, 12, 12, 1, 21600, 0xac5790f8
0, 13, 13, 1, 21600, 0x9762beb4
0, 14, 14, 1, 21600, 0x29b0da0a
0, 15, 15, 1, 21600, 0x6d88b0da
0, 16, 16, 1, 21600, 0x687b8efa
0, 17, 17, 1, 21600, 0xcd726220
0, 18, 18, 1, 21600, 0xa1766598
0, 19, 19, 1, 21600, 0xff4b8074
0, 20, 20, 1, 21600, 0x845098fc
0, 21, 21, 1, 21600, 0xdb259e08
0, 22, 22, 1, 21600, 0xb6bda5a0
0, 23, 23, 1, 21600, 0xbb998962
0, 24, 24, 1, 21600, 0x28aa7b7c
0, 25, 25, 1, 21600, 0x1ad1a15c
0, 26, 26, 1, 21600, 0xb535a128
0, 27, 27, 1, 21600, 0x4dbf968a
0, 28, 28, 1, 21600, 0xfe90a8d6
0, 29, 29, 1, 21600, 0xf63fabf0
0, 30, 30, 1, 21600, 0xd6fabe58
0, 31, 31, 1, 21600, 0x172eb09c
0, 32, 32, 1, 21600, 0x44f8a8fe
0, 33, 33, 1, 21600, 0x29429a06
0, 34, 34, 1, 21600, 0xb12f8cc4
0, 35, 35, 1, 21600, 0xd0c78cb4
0, 36, 36, 1, 21600, 0x97e17e0c
0, 37, 37, 1, 21600, 0xf8ac6700
0, 38, 38, 1, 21600, 0xf9c17c94
0, 39, 39, 1, 21600, 0xb10e8c54
0, 60, 60, 1, 21600, 0xc28e8bf0
0, 120, 120, 1, 21600, 0x2f418fb4
0, 180, 180, 1, 21600, 0x051d7a0e
0, 240, 240, 1, 21600, 0x1b36aa7c
0, 300, 300, 1, 21600, 0xb9e2ad38
0, 360, 360, 1, 21600, 0x8dc99b60
0, 420, 420, 1, 21600, 0xa3fa789a
0, 480, 480, 1, 21600, 0x1fdbade2
0, 540, 540, 1, 21600, 0x4f4ac164
0, 600, 600, 1, 21600, 0x0ea5cb50
0, 660, 660, 1, 21600, 0xfb659528
0, 720, 720, 1, 21600, 0xac5790f8
0, 780, 780, 1, 21600, 0x9762beb4
0, 840, 840, 1, 21600, 0x29b0da0a
0, 900, 900, 1, 21600, 0x6d88b0da
0, 960, 960, 1, 21600, 0x687b8efa
0, 1020, 1020, 1, 21600, 0xcd726220
0, 1080, 1080, 1, 21600, 0xa1766598
0, 1140, 1140, 1, 21600, 0xff4b8074
0, 1200, 1200, 1, 21600, 0x845098fc
0, 1260, 1260, 1, 21600, 0xdb259e08
0, 1320, 1320, 1, 21600, 0xb6bda5a0
0, 1380, 1380, 1, 21600, 0xbb998962
0, 1440, 1440, 1, 21600, 0x28aa7b7c
0, 1500, 1500, 1, 21600, 0x1ad1a15c
0, 1560, 1560, 1, 21600, 0xb535a128
0, 1620, 1620, 1, 21600, 0x4dbf968a
0, 1680, 1680, 1, 21600, 0xfe90a8d6
0, 1740, 1740, 1, 21600, 0xf63fabf0
0, 1800, 1800, 1, 21600, 0xd6fabe58
0, 1860, 1860, 1, 21600, 0x172eb09c
0, 1920, 1920, 1, 21600, 0x44f8a8fe
0, 1980, 1980, 1, 21600, 0x29429a06
0, 2040, 2040, 1, 21600, 0xb12f8cc4
0, 2100, 2100, 1, 21600, 0xd0c78cb4
0, 2160, 2160, 1, 21600, 0x97e17e0c
0, 2220, 2220, 1, 21600, 0xf8ac6700
0, 2280, 2280, 1, 21600, 0xf9c17c94
0, 2340, 2340, 1, 21600, 0xb10e8c54
#tb 0: 417/12500
#tb 0: 1/1000000
#tb 1: 1/44100
0, 0, 0, 1, 614400, 0x00000000
0, 0, 0, 0, 614400, 0x00000000
1, 0, 0, 1447, 5788, 0x916d2db8
1, 1447, 1447, 1472, 5888, 0xc65cb069
0, 1, 1, 1, 614400, 0x00000000
0, 33360, 33360, 0, 614400, 0x00000000
1, 2919, 2919, 1472, 5888, 0xd8ec1acc
0, 2, 2, 1, 614400, 0xa17ea4ec
0, 66720, 66720, 0, 614400, 0xa17ea4ec
1, 4391, 4391, 1472, 5888, 0xb22af0d6
0, 3, 3, 1, 614400, 0x4fd207fb
0, 100080, 100080, 0, 614400, 0x4fd207fb
1, 5863, 5863, 1472, 5888, 0x86bb50d9
0, 4, 4, 1, 614400, 0xd7a510fb
0, 133440, 133440, 0, 614400, 0xd7a510fb
1, 7335, 7335, 1472, 5888, 0x7674d923
0, 5, 5, 1, 614400, 0xe901e2f4
0, 166800, 166800, 0, 614400, 0xe901e2f4
1, 8807, 8807, 1472, 5888, 0xb97c5500
0, 6, 6, 1, 614400, 0x4ac5d3c4
0, 200160, 200160, 0, 614400, 0x4ac5d3c4
1, 10279, 10279, 1472, 5888, 0xecea1249
0, 7, 7, 1, 614400, 0x32e3e99c
0, 233520, 233520, 0, 614400, 0x32e3e99c
1, 11751, 11751, 1472, 5888, 0x0f4fea81
0, 8, 8, 1, 614400, 0x7a2ff20c
0, 266880, 266880, 0, 614400, 0x7a2ff20c
1, 13223, 13223, 1472, 5888, 0x997914d8
0, 9, 9, 1, 614400, 0x59941193
0, 300240, 300240, 0, 614400, 0x59941193
1, 14695, 14695, 1472, 5888, 0xd012f03a
0, 10, 10, 1, 614400, 0x92773a2b
0, 333600, 333600, 0, 614400, 0x92773a2b
1, 16167, 16167, 1472, 5888, 0x03fd5248
0, 11, 11, 1, 614400, 0x4cd14313
0, 366960, 366960, 0, 614400, 0x4cd14313
1, 17639, 17639, 1472, 5888, 0x3041a288
0, 12, 12, 1, 614400, 0x2a093fa3
0, 400320, 400320, 0, 614400, 0x2a093fa3
1, 19111, 19111, 1472, 5888, 0xe6105de1
0, 13, 13, 1, 614400, 0xf68b8463
0, 433680, 433680, 0, 614400, 0xf68b8463
1, 20583, 20583, 1472, 5888, 0xaa38c7bd
0, 14, 14, 1, 614400, 0xa9e1969b
0, 467040, 467040, 0, 614400, 0xa9e1969b
1, 22055, 22055, 1472, 5888, 0xbfff702c
0, 15, 15, 1, 614400, 0x461996bb
0, 500400, 500400, 0, 614400, 0x461996bb
1, 23527, 23527, 1472, 5888, 0xbe4319a3
0, 16, 16, 1, 614400, 0xae58d053
0, 533760, 533760, 0, 614400, 0xae58d053
1, 24999, 24999, 1472, 5888, 0x2e89d262
0, 17, 17, 1, 614400, 0x7693015a
0, 567120, 567120, 0, 614400, 0x7693015a
1, 26471, 26471, 1472, 5888, 0x10992b9c
0, 18, 18, 1, 614400, 0x0b3507fa
0, 600480, 600480, 0, 614400, 0x0b3507fa
1, 27943, 27943, 1472, 5888, 0x972904bf
0, 19, 19, 1, 614400, 0xff5c2492
0, 633840, 633840, 0, 614400, 0xff5c2492
1, 29415, 29415, 1472, 5888, 0x0093501c
0, 20, 20, 1, 614400, 0x636e3e32
0, 667200, 667200, 0, 614400, 0x636e3e32
1, 30887, 30887, 1472, 5888, 0x8994ad0e
0, 21, 21, 1, 614400, 0x1acd6d0a
0, 700560, 700560, 0, 614400, 0x1acd6d0a
1, 32359, 32359, 1472, 5888, 0x9db37d21
0, 22, 22, 1, 614400, 0x67039232
0, 733920, 733920, 0, 614400, 0x67039232
1, 33831, 33831, 1472, 5888, 0xa8c7300f
0, 23, 23, 1, 614400, 0x8ab9c75a
0, 767280, 767280, 0, 614400, 0x8ab9c75a
1, 35303, 35303, 1472, 5888, 0x1b7073b5
0, 24, 24, 1, 614400, 0xe824bbe2
0, 800640, 800640, 0, 614400, 0xe824bbe2
1, 36775, 36775, 1472, 5888, 0x56ad7f7b
0, 25, 25, 1, 614400, 0x5133e9ea
0, 834000, 834000, 0, 614400, 0x5133e9ea
1, 38247, 38247, 1472, 5888, 0x9706a8fb
0, 26, 26, 1, 614400, 0xcecf1249
0, 867360, 867360, 0, 614400, 0xcecf1249
1, 39719, 39719, 1472, 5888, 0x16c9420e
0, 27, 27, 1, 614400, 0xe6d928c1
0, 900720, 900720, 0, 614400, 0xe6d928c1
1, 41191, 41191, 1472, 5888, 0x3e11be0a
0, 28, 28, 1, 614400, 0x8da46ff1
0, 934080, 934080, 0, 614400, 0x8da46ff1
1, 42663, 42663, 1472, 5888, 0x3e534a32
0, 29, 29, 1, 614400, 0x1c778319
0, 967440, 967440, 0, 614400, 0x1c778319
1, 44135, 44135, 1447, 5788, 0x0ffae5f4
0, 30, 30, 1, 614400, 0x35a19451
0, 1000800, 1000800, 0, 614400, 0x35a19451
1, 45582, 45582, 1472, 5888, 0xc2018f82
0, 31, 31, 1, 614400, 0x5145d1b9
0, 1034160, 1034160, 0, 614400, 0x5145d1b9
1, 47054, 47054, 1472, 5888, 0x2a11f529
0, 32, 32, 1, 614400, 0x146ee231
0, 1067520, 1067520, 0, 614400, 0x146ee231
1, 48526, 48526, 1472, 5888, 0xec282167
0, 33, 33, 1, 614400, 0xd9b33380
0, 1100880, 1100880, 0, 614400, 0xd9b33380
1, 49998, 49998, 1472, 5888, 0xd61b5a05
0, 34, 34, 1, 614400, 0x8b112ef8
0, 1134240, 1134240, 0, 614400, 0x8b112ef8
1, 51470, 51470, 1472, 5888, 0x61de2741
0, 35, 35, 1, 614400, 0xb9e79ab0
0, 1167600, 1167600, 0, 614400, 0xb9e79ab0
1, 52942, 52942, 1472, 5888, 0x17aaff8c
0, 36, 36, 1, 614400, 0x62d3a498
0, 1200960, 1200960, 0, 614400, 0x62d3a498
1, 54414, 54414, 1472, 5888, 0xd40cd7a6
0, 37, 37, 1, 614400, 0xaeaaaa58
0, 1234320, 1234320, 0, 614400, 0xaeaaaa58
1, 55886, 55886, 1472, 5888, 0x840840d4
0, 38, 38, 1, 614400, 0x8922c440
0, 1267680, 1267680, 0, 614400, 0x8922c440
1, 57358, 57358, 1472, 5888, 0x7c97ddcf
0, 39, 39, 1, 614400, 0xd62ef758
0, 1301040, 1301040, 0, 614400, 0xd62ef758
1, 58830, 58830, 1472, 5888, 0xed9150f7
0, 40, 40, 1, 614400, 0x2a53149f
0, 1334400, 1334400, 0, 614400, 0x2a53149f
1, 60302, 60302, 1472, 5888, 0xbccf973e
0, 41, 41, 1, 614400, 0x13da47df
0, 1367760, 1367760, 0, 614400, 0x13da47df
1, 61774, 61774, 1472, 5888, 0x74bda5ea
0, 42, 42, 1, 614400, 0x27c05c3f
0, 1401120, 1401120, 0, 614400, 0x27c05c3f
1, 63246, 63246, 1472, 5888, 0xd083892a
0, 43, 43, 1, 614400, 0x41ff7ca7
0, 1434480, 1434480, 0, 614400, 0x41ff7ca7
1, 64718, 64718, 1472, 5888, 0x16e444b2
0, 44, 44, 1, 614400, 0x6b0e8a07
0, 1467840, 1467840, 0, 614400, 0x6b0e8a07
1, 66190, 66190, 1472, 5888, 0x68a9cedb
0, 45, 45, 1, 614400, 0xa200ad9f
0, 1501200, 1501200, 0, 614400, 0xa200ad9f
1, 67662, 67662, 1472, 5888, 0x80849f36
0, 46, 46, 1, 614400, 0x9da7cc77
0, 1534560, 1534560, 0, 614400, 0x9da7cc77
1, 69134, 69134, 1472, 5888, 0x63cb7df9
0, 47, 47, 1, 614400, 0x2f5703be
0, 1567920, 1567920, 0, 614400, 0x2f5703be
1, 70606, 70606, 1472, 5888, 0xf90f754d
0, 48, 48, 1, 614400, 0x91c720f6
0, 1601280, 1601280, 0, 614400, 0x91c720f6
1, 72078, 72078, 1472, 5888, 0x9c2c867d
0, 49, 49, 1, 614400, 0x927a882e
0, 1634640, 1634640, 0, 614400, 0x927a882e
1, 73550, 73550, 1472, 5888, 0x337994a4
1, 75022, 75022, 1472, 5888, 0xf354a28d
1, 76494, 76494, 1472, 5888, 0x70933738
......
This diff is collapsed.
#tb 0: 1/12
0, 0, 0, 1, 38400, 0x45311080
0, 1, 1, 1, 38400, 0x9474f731
0, 2, 2, 1, 38400, 0x429ebb12
0, 3, 3, 1, 38400, 0x472c199a
0, 4, 4, 1, 38400, 0xefd49dae
0, 5, 5, 1, 38400, 0x78627fa9
0, 6, 6, 1, 38400, 0x2a8d9148
0, 7, 7, 1, 38400, 0x21cc6738
0, 8, 8, 1, 38400, 0x0bc4703f
0, 9, 9, 1, 38400, 0x1ddcc035
#tb 0: 1/1200
0, 0, 0, 0, 38400, 0x45311080
0, 100, 100, 0, 38400, 0x9474f731
0, 200, 200, 0, 38400, 0x429ebb12
0, 300, 300, 0, 38400, 0x472c199a
0, 400, 400, 0, 38400, 0xefd49dae
0, 500, 500, 0, 38400, 0x78627fa9
0, 600, 600, 0, 38400, 0x2a8d9148
0, 700, 700, 0, 38400, 0x21cc6738
0, 800, 800, 0, 38400, 0x0bc4703f
0, 900, 900, 0, 38400, 0x1ddcc035
#tb 0: 1/25
0, 9, 9, 1, 622080, 0xb3b66c5c
0, 10, 10, 1, 622080, 0x088ec02b
0, 11, 11, 1, 622080, 0x7a36db21
0, 12, 12, 1, 622080, 0x541b286f
0, 13, 13, 1, 622080, 0xb6c3e590
0, 14, 14, 1, 622080, 0x39dbed51
0, 15, 15, 1, 622080, 0x973dc728
0, 16, 16, 1, 622080, 0xd7a4f804
0, 17, 17, 1, 622080, 0xa2484762
0, 18, 18, 1, 622080, 0x0cd268d1
0, 19, 19, 1, 622080, 0x72eb663d
0, 20, 20, 1, 622080, 0x8fdbac59
0, 21, 21, 1, 622080, 0xa6f4feb9
0, 22, 22, 1, 622080, 0xadb828c6
0, 23, 23, 1, 622080, 0xea630a63
0, 24, 24, 1, 622080, 0xa901d925
0, 25, 25, 1, 622080, 0xac5e7087
0, 26, 26, 1, 622080, 0x10274a2b
0, 27, 27, 1, 622080, 0x143d541c
0, 28, 28, 1, 622080, 0xee94c93a
0, 29, 29, 1, 622080, 0xca030208
0, 30, 30, 1, 622080, 0x26f30ead
0, 31, 31, 1, 622080, 0xfc22f32c
0, 32, 32, 1, 622080, 0x940a5ff8
0, 33, 33, 1, 622080, 0x2164f805
0, 34, 34, 1, 622080, 0xa76f5aba
0, 35, 35, 1, 622080, 0x8c311471
0, 36, 36, 1, 622080, 0xa45e1d95
0, 37, 37, 1, 622080, 0x6cc61d6c
0, 38, 38, 1, 622080, 0x6983b417
0, 39, 39, 1, 622080, 0x982363c0
#tb 0: 1/90000
0, 32400, 32400, 0, 622080, 0xb3b66c5c
0, 36000, 36000, 0, 622080, 0x088ec02b
0, 39600, 39600, 0, 622080, 0x7a36db21
0, 43200, 43200, 0, 622080, 0x541b286f
0, 46800, 46800, 0, 622080, 0xb6c3e590
0, 50400, 50400, 0, 622080, 0x39dbed51
0, 54000, 54000, 0, 622080, 0x973dc728
0, 57600, 57600, 0, 622080, 0xd7a4f804
0, 61200, 61200, 0, 622080, 0xa2484762
0, 64800, 64800, 0, 622080, 0x0cd268d1
0, 68400, 68400, 0, 622080, 0x72eb663d
0, 72000, 72000, 0, 622080, 0x8fdbac59
0, 75600, 75600, 0, 622080, 0xa6f4feb9
0, 79200, 79200, 0, 622080, 0xadb828c6
0, 82800, 82800, 0, 622080, 0xea630a63
0, 86400, 86400, 0, 622080, 0xa901d925
0, 90000, 90000, 0, 622080, 0xac5e7087
0, 93600, 93600, 0, 622080, 0x10274a2b
0, 97200, 97200, 0, 622080, 0x143d541c
0, 100800, 100800, 0, 622080, 0xee94c93a
0, 104400, 104400, 0, 622080, 0xca030208
0, 108000, 108000, 0, 622080, 0x26f30ead
0, 111600, 111600, 0, 622080, 0xfc22f32c
0, 115200, 115200, 0, 622080, 0x940a5ff8
0, 118800, 118800, 0, 622080, 0x2164f805
0, 122400, 122400, 0, 622080, 0xa76f5aba
0, 126000, 126000, 0, 622080, 0x8c311471
0, 129600, 129600, 0, 622080, 0xa45e1d95
0, 133200, 133200, 0, 622080, 0x6cc61d6c
0, 136800, 136800, 0, 622080, 0x6983b417
0, 140400, 140400, 0, 622080, 0x982363c0
#tb 0: 100/2997
#tb 0: 1/1000
#tb 1: 1/44100
1, 0, 0, 1024, 4096, 0x00000000
1, 1024, 1024, 1024, 4096, 0x4dfae7a6
......@@ -6,23 +6,24 @@
1, 3072, 3072, 1024, 4096, 0x7b86e310
1, 4096, 4096, 1024, 4096, 0x611cece5
1, 5120, 5120, 1024, 4096, 0xb7d8e872
0, 4, 4, 1, 460800, 0x54aedafe
0, 118, 118, 0, 460800, 0x54aedafe
1, 6144, 6144, 1024, 4096, 0x072ef72b
0, 152, 152, 0, 460800, 0xb7aa8b56
1, 7168, 7168, 1024, 4096, 0xb3560144
0, 5, 5, 1, 460800, 0xb7aa8b56
0, 177, 177, 0, 460800, 0x283ea3b5
1, 8192, 8192, 1024, 4096, 0x0a3d119e
0, 6, 6, 1, 460800, 0x283ea3b5
0, 202, 202, 0, 460800, 0x283ea3b5
1, 9216, 9216, 1024, 4096, 0xbe391aa4
1, 10240, 10240, 1024, 4096, 0x28f7c6e5
0, 7, 7, 1, 460800, 0x10e577de
0, 235, 235, 0, 460800, 0x10e577de
1, 11264, 11264, 1024, 4096, 0xca9d9df2
0, 8, 8, 1, 460800, 0x4e091ee2
0, 269, 269, 0, 460800, 0x4e091ee2
1, 12288, 12288, 1024, 4096, 0x5c6b95a9
0, 9, 9, 1, 460800, 0x2ea88828
1, 13312, 13312, 1024, 4096, 0x0bdfc0bf
0, 302, 302, 0, 460800, 0x2ea88828
1, 14336, 14336, 1024, 4096, 0xd95a9277
0, 10, 10, 1, 460800, 0x4b7f4df0
0, 335, 335, 0, 460800, 0x4b7f4df0
1, 15360, 15360, 1024, 4096, 0xae2bef2c
0, 11, 11, 1, 460800, 0xb30eb322
0, 369, 369, 0, 460800, 0xb30eb322
1, 16384, 16384, 1024, 4096, 0xbf031e83
1, 17408, 17408, 1024, 4096, 0x4c83e2d1
#tb 0: 100/2997
0, 0, 0, 1, 8294400, 0xe8e9d448
0, 1, 1, 1, 8294400, 0xe8e9d448
#tb 0: 1/2997
0, 0, 0, 0, 8294400, 0xe8e9d448
0, 100, 100, 0, 8294400, 0xe8e9d448
#tb 0: 100/2997
0, 0, 0, 1, 8294400, 0x817063b0
0, 1, 1, 1, 8294400, 0x817063b0
#tb 0: 1/2997
0, 0, 0, 0, 8294400, 0x817063b0
0, 100, 100, 0, 8294400, 0x817063b0
#tb 0: 100/2997
0, 0, 0, 1, 8294400, 0xcd4ccde1
0, 1, 1, 1, 8294400, 0xcd4ccde1
#tb 0: 1/2997
0, 0, 0, 0, 8294400, 0xcd4ccde1
0, 100, 100, 0, 8294400, 0xcd4ccde1
#tb 0: 100/2997
0, 0, 0, 1, 8294400, 0x51d29320
0, 1, 1, 1, 8294400, 0x51d29320
#tb 0: 1/2997
0, 0, 0, 0, 8294400, 0x51d29320
0, 100, 100, 0, 8294400, 0x51d29320
#tb 0: 100/2997
0, 0, 0, 1, 12441600, 0x9d3dc525
0, 1, 1, 1, 12441600, 0x9d3dc525
#tb 0: 1/2997
0, 0, 0, 0, 12441600, 0x9d3dc525
0, 100, 100, 0, 12441600, 0x9d3dc525
#tb 0: 1/15
#tb 0: 1/600
0, 0, 0, 1, 57600, 0xe6b0a48c
0, 1, 1, 1, 57600, 0xe064d51c
0, 2, 2, 1, 57600, 0xbfce6b33
0, 3, 3, 1, 57600, 0x371bab02
0, 4, 4, 1, 57600, 0x0d2d7456
0, 5, 5, 1, 57600, 0x9184eecb
0, 6, 6, 1, 57600, 0xb482e8db
0, 7, 7, 1, 57600, 0x0f4cd4be
0, 8, 8, 1, 57600, 0xe276cccb
0, 9, 9, 1, 57600, 0x04c21c62
0, 10, 10, 1, 57600, 0x848960a2
0, 11, 11, 1, 57600, 0xc4c8cf03
0, 12, 12, 1, 57600, 0xb4094866
0, 13, 13, 1, 57600, 0xf22da043
0, 14, 14, 1, 57600, 0x6517b67b
0, 15, 15, 1, 57600, 0x23e39ccb
0, 16, 16, 1, 57600, 0x41525ca3
0, 17, 17, 1, 57600, 0xc3edc5f3
0, 18, 18, 1, 57600, 0x8ce81c7e
0, 19, 19, 1, 57600, 0x56829443
0, 20, 20, 1, 57600, 0x511ce287
0, 21, 21, 1, 57600, 0x8f029a5b
0, 22, 22, 1, 57600, 0x2b47cf43
0, 23, 23, 1, 57600, 0x8e7ecf4b
0, 24, 24, 1, 57600, 0xd620317e
0, 25, 25, 1, 57600, 0x5987646e
0, 26, 26, 1, 57600, 0xcfedb7df
0, 27, 27, 1, 57600, 0x33746e7b
0, 28, 28, 1, 57600, 0x1d318573
0, 29, 29, 1, 57600, 0xc851848b
0, 30, 30, 1, 57600, 0x939db1d7
0, 31, 31, 1, 57600, 0x1719aed3
0, 32, 32, 1, 57600, 0x1ba3e18c
0, 33, 33, 1, 57600, 0x04f355fb
0, 34, 34, 1, 57600, 0x6fafd5f4
0, 35, 35, 1, 57600, 0x434f800b
0, 36, 36, 1, 57600, 0xed42179b
0, 37, 37, 1, 57600, 0x3b33118b
0, 38, 38, 1, 57600, 0xf81880cb
0, 39, 39, 1, 57600, 0xd2c58e1b
0, 40, 40, 1, 57600, 0xd96f50eb
0, 41, 41, 1, 57600, 0x64ef63fb
0, 42, 42, 1, 57600, 0x7b14b6fc
0, 43, 43, 1, 57600, 0xeb1c9054
0, 44, 44, 1, 57600, 0x3b30c97c
0, 45, 45, 1, 57600, 0xc93e9484
0, 46, 46, 1, 57600, 0xe012c0cc
0, 47, 47, 1, 57600, 0x48e2dda4
0, 48, 48, 1, 57600, 0x13eb55fb
0, 49, 49, 1, 57600, 0xa5edbedc
0, 50, 50, 1, 57600, 0x0123a484
0, 51, 51, 1, 57600, 0xc624a7ac
0, 52, 52, 1, 57600, 0xd83cf45c
0, 53, 53, 1, 57600, 0x8f9bf4b4
0, 54, 54, 1, 57600, 0x2d494b8c
0, 55, 55, 1, 57600, 0xb246f07c
0, 56, 56, 1, 57600, 0x5750e67c
0, 57, 57, 1, 57600, 0x6643e9ac
0, 58, 58, 1, 57600, 0x8d3b86b3
0, 59, 59, 1, 57600, 0x4bb0546b
0, 60, 60, 1, 57600, 0xfe439333
0, 61, 61, 1, 57600, 0x0cc76233
0, 62, 62, 1, 57600, 0xb6fe40ae
0, 63, 63, 1, 57600, 0xf79fe0d7
0, 64, 64, 1, 57600, 0xdc90dcbb
0, 65, 65, 1, 57600, 0x371e7c2b
0, 66, 66, 1, 57600, 0x7c4590bb
0, 67, 67, 1, 57600, 0x66f5454b
0, 68, 68, 1, 57600, 0x1678ae5b
0, 69, 69, 1, 57600, 0x1ee8fdec
0, 70, 70, 1, 57600, 0x98d2a083
0, 71, 71, 1, 57600, 0x86d29e5b
0, 72, 72, 1, 57600, 0x23d2bc83
0, 73, 73, 1, 57600, 0x3fc729f2
0, 74, 74, 1, 57600, 0x821d61da
0, 75, 75, 1, 57600, 0xdd549e0e
0, 76, 76, 1, 57600, 0x641234e2
0, 77, 77, 1, 57600, 0x9a282112
0, 78, 78, 1, 57600, 0x6587e2fb
0, 79, 79, 1, 57600, 0x043d0cb2
0, 80, 80, 1, 57600, 0x90328707
0, 81, 81, 1, 57600, 0x5744d313
0, 82, 82, 1, 57600, 0x6e1b95cb
0, 40, 40, 1, 57600, 0xe064d51c
0, 80, 80, 1, 57600, 0xbfce6b33
0, 120, 120, 1, 57600, 0x371bab02
0, 160, 160, 1, 57600, 0x0d2d7456
0, 200, 200, 1, 57600, 0x9184eecb
0, 240, 240, 1, 57600, 0xb482e8db
0, 280, 280, 1, 57600, 0x0f4cd4be
0, 320, 320, 1, 57600, 0xe276cccb
0, 360, 360, 1, 57600, 0x04c21c62
0, 400, 400, 1, 57600, 0x848960a2
0, 440, 440, 1, 57600, 0xc4c8cf03
0, 480, 480, 1, 57600, 0xb4094866
0, 520, 520, 1, 57600, 0xf22da043
0, 560, 560, 1, 57600, 0x6517b67b
0, 600, 600, 1, 57600, 0x23e39ccb
0, 640, 640, 1, 57600, 0x41525ca3
0, 680, 680, 1, 57600, 0xc3edc5f3
0, 720, 720, 1, 57600, 0x8ce81c7e
0, 760, 760, 1, 57600, 0x56829443
0, 800, 800, 1, 57600, 0x511ce287
0, 840, 840, 1, 57600, 0x8f029a5b
0, 880, 880, 1, 57600, 0x2b47cf43
0, 920, 920, 1, 57600, 0x8e7ecf4b
0, 960, 960, 1, 57600, 0xd620317e
0, 1000, 1000, 1, 57600, 0x5987646e
0, 1040, 1040, 1, 57600, 0xcfedb7df
0, 1080, 1080, 1, 57600, 0x33746e7b
0, 1120, 1120, 1, 57600, 0x1d318573
0, 1160, 1160, 1, 57600, 0xc851848b
0, 1200, 1200, 1, 57600, 0x939db1d7
0, 1240, 1240, 1, 57600, 0x1719aed3
0, 1280, 1280, 1, 57600, 0x1ba3e18c
0, 1320, 1320, 1, 57600, 0x04f355fb
0, 1360, 1360, 1, 57600, 0x6fafd5f4
0, 1400, 1400, 1, 57600, 0x434f800b
0, 1440, 1440, 1, 57600, 0xed42179b
0, 1480, 1480, 1, 57600, 0x3b33118b
0, 1520, 1520, 1, 57600, 0xf81880cb
0, 1560, 1560, 1, 57600, 0xd2c58e1b
0, 1600, 1600, 1, 57600, 0xd96f50eb
0, 1640, 1640, 1, 57600, 0x64ef63fb
0, 1680, 1680, 1, 57600, 0x7b14b6fc
0, 1720, 1720, 1, 57600, 0xeb1c9054
0, 1760, 1760, 1, 57600, 0x3b30c97c
0, 1800, 1800, 1, 57600, 0xc93e9484
0, 1840, 1840, 1, 57600, 0xe012c0cc
0, 1880, 1880, 1, 57600, 0x48e2dda4
0, 1920, 1920, 1, 57600, 0x13eb55fb
0, 1960, 1960, 1, 57600, 0xa5edbedc
0, 2000, 2000, 1, 57600, 0x0123a484
0, 2040, 2040, 1, 57600, 0xc624a7ac
0, 2080, 2080, 1, 57600, 0xd83cf45c
0, 2120, 2120, 1, 57600, 0x8f9bf4b4
0, 2160, 2160, 1, 57600, 0x2d494b8c
0, 2200, 2200, 1, 57600, 0xb246f07c
0, 2240, 2240, 1, 57600, 0x5750e67c
0, 2280, 2280, 1, 57600, 0x6643e9ac
0, 2320, 2320, 1, 57600, 0x8d3b86b3
0, 2360, 2360, 1, 57600, 0x4bb0546b
0, 2400, 2400, 1, 57600, 0xfe439333
0, 2440, 2440, 1, 57600, 0x0cc76233
0, 2480, 2480, 1, 57600, 0xb6fe40ae
0, 2520, 2520, 1, 57600, 0xf79fe0d7
0, 2560, 2560, 1, 57600, 0xdc90dcbb
0, 2600, 2600, 1, 57600, 0x371e7c2b
0, 2640, 2640, 1, 57600, 0x7c4590bb
0, 2680, 2680, 1, 57600, 0x66f5454b
0, 2720, 2720, 1, 57600, 0x1678ae5b
0, 2760, 2760, 1, 57600, 0x1ee8fdec
0, 2800, 2800, 1, 57600, 0x98d2a083
0, 2840, 2840, 1, 57600, 0x86d29e5b
0, 2880, 2880, 1, 57600, 0x23d2bc83
0, 2920, 2920, 1, 57600, 0x3fc729f2
0, 2960, 2960, 1, 57600, 0x821d61da
0, 3000, 3000, 1, 57600, 0xdd549e0e
0, 3040, 3040, 1, 57600, 0x641234e2
0, 3080, 3080, 1, 57600, 0x9a282112
0, 3120, 3120, 1, 57600, 0x6587e2fb
0, 3160, 3160, 1, 57600, 0x043d0cb2
0, 3200, 3200, 1, 57600, 0x90328707
0, 3240, 3240, 1, 57600, 0x5744d313
0, 3280, 3280, 1, 57600, 0x6e1b95cb
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/15
#tb 0: 1/600
0, 0, 0, 1, 921600, 0xc0e68764
0, 2, 2, 1, 921600, 0x01a16629
0, 80, 80, 1, 921600, 0x01a16629
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/5
0, 0, 0, 1, 786432, 0x56654d61
#tb 0: 1/90000
0, 0, 0, 0, 786432, 0x56654d61
This diff is collapsed.
#tb 0: 1/15
0, 0, 0, 1, 4617600, 0x4ba6df50
0, 1, 1, 1, 4617600, 0x419fdeaf
0, 2, 2, 1, 4617600, 0xeb2edced
0, 3, 3, 1, 4617600, 0xa2bb3a1a
0, 4, 4, 1, 4617600, 0x411cfb36
0, 5, 5, 1, 4617600, 0xb2dc22ed
0, 6, 6, 1, 4617600, 0x236d23b5
0, 7, 7, 1, 4617600, 0x7fef275e
#tb 0: 1/1000
0, 0, 0, 0, 4617600, 0x4ba6df50
0, 66, 66, 0, 4617600, 0x419fdeaf
0, 132, 132, 0, 4617600, 0xeb2edced
0, 198, 198, 0, 4617600, 0xa2bb3a1a
0, 264, 264, 0, 4617600, 0x411cfb36
0, 330, 330, 0, 4617600, 0xb2dc22ed
0, 396, 396, 0, 4617600, 0x236d23b5
0, 462, 462, 0, 4617600, 0x7fef275e
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
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