Commit 7e944159 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge remote-tracking branch 'qatar/master'

* qatar/master: (25 commits)
  vcr1: Add vcr1_ prefixes to all static functions with generic names.
  vcr1: Fix return type of common_init to match the function pointer signature.
  vcr1enc: Replace obsolete get_bit_count by put_bits_count/flush_put_bits.
  motion-test: remove disabled code
  gxfenc: remove disabled half-implemented MJPEG tag
  x86: use more standard construct for setting ASM functions in FFT code
  fate: westwood-aud: disable decoding
  fate: caf: disable decoding
  fate: film-cvid: drop pcm audio and rename test
  fate: d-cinema-demux: drop unnecessary flags
  fate: split off dpcm-interplay from interplay-mve tests
  fate: rename funcom-iss to adpcm-ima-iss
  fate: rename cryo-apc to adpcm-ima-apc
  fate: rename adpcm-psx-str-v3 to adpcm-xa
  fate: split off adpcm-ms-mono test from dxa-feeble
  fate: split off adpcm-ima-ws test from vqa-cc
  fate: add adpcm-ima-smjpeg test
  fate: split off adpcm-ima-amv from amv test
  fate: separate bmv audio and video tests
  fate: separate delphine-cin audio and video tests
  ...

Conflicts:
	doc/platform.texi
	libavcodec/vcr1.c
	tests/fate/audio.mak
	tests/fate/demux.mak
	tests/fate/video.mak
	tests/ref/fate/ea-mad-pcm-planar
	tests/ref/fate/interplay-mve-16bit
	tests/ref/fate/interplay-mve-8bit
	tests/ref/fate/mtv
	tests/ref/fate/qtrle-1bit
	tests/ref/fate/qtrle-2bit
	tests/ref/fate/truemotion1-15
	tests/ref/fate/truemotion1-24
	tests/ref/fate/vqa-cc
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 281bde27 100c70b0
......@@ -89,7 +89,7 @@ section and the FAQ.
FFmpeg does not build out-of-the-box with the packages the automated MinGW
installer provides. It also requires coreutils to be installed and many other
packages updated to the latest version. The minimum version for some packages
packages updated to the latest version. The minimum versions for some packages
are listed below:
@itemize
......@@ -109,14 +109,11 @@ Notes:
@item Building natively using MSYS can be sped up by disabling implicit rules
in the Makefile by calling @code{make -r} instead of plain @code{make}. This
speed up is close to non-existent for normal one-off builds and is only
noticeable when running make for a second time (for example in
noticeable when running make for a second time (for example during
@code{make install}).
@item In order to compile FFplay, you must have the MinGW development library
of @uref{http://www.libsdl.org/, SDL}.
Edit the @file{bin/sdl-config} script so that it points to the correct prefix
where SDL was installed. Verify that @file{sdl-config} can be launched from
the MSYS command line.
of @uref{http://www.libsdl.org/, SDL} and @code{pkg-config} installed.
@item By using @code{./configure --enable-shared} when configuring FFmpeg,
you can build the FFmpeg libraries (e.g. libavutil, libavcodec,
......@@ -140,7 +137,7 @@ you might have to modify the procedures slightly.
@subsection Using static libraries
Assuming you have just built and installed FFmpeg in @file{/usr/local}.
Assuming you have just built and installed FFmpeg in @file{/usr/local}:
@enumerate
......@@ -288,14 +285,11 @@ are stored.
@item Generate new import libraries with @file{lib.exe}:
@example
lib /machine:i386 /def:..\lib\avcodec-53.def /out:avcodec.lib
lib /machine:i386 /def:..\lib\avdevice-53.def /out:avdevice.lib
lib /machine:i386 /def:..\lib\avfilter-2.def /out:avfilter.lib
lib /machine:i386 /def:..\lib\avformat-53.def /out:avformat.lib
lib /machine:i386 /def:..\lib\avutil-51.def /out:avutil.lib
lib /machine:i386 /def:..\lib\swscale-2.def /out:swscale.lib
lib /machine:i386 /def:..\lib\foo-version.def /out:foo.lib
@end example
Replace @code{foo-version} and @code{foo} with the respective library names.
@end enumerate
@anchor{Cross compilation for Windows with Linux}
......@@ -337,8 +331,8 @@ Then run
to make a static build.
The current @code{gcc4-core} package is buggy and needs this flag to build
shared libraries:
To build shared libraries add a special compiler flag to work around current
@code{gcc4-core} package bugs in addition to the normal configure flags:
@example
./configure --enable-shared --disable-static --extra-cflags=-fno-reorder-functions
......@@ -358,11 +352,8 @@ yasm, libSDL-devel, libfaac-devel, libaacplus-devel, libgsm-devel, libmp3lame-de
libschroedinger1.0-devel, speex-devel, libtheora-devel, libxvidcore-devel
@end example
The recommendation for libnut and x264 is to build them from source by
yourself, as they evolve too quickly for Cygwin Ports to be up to date.
Cygwin 1.7.x has IPv6 support. You can add IPv6 to Cygwin 1.5.x by means
of the @code{libgetaddrinfo-devel} package, available at Cygwin Ports.
The recommendation for x264 is to build it from source, as it evolves too
quickly for Cygwin Ports to be up to date.
@section Crosscompilation for Windows under Cygwin
......
......@@ -48,11 +48,7 @@ static void fill_random(uint8_t *tab, int size)
av_lfg_init(&prng, 1);
for(i=0;i<size;i++) {
#if 1
tab[i] = av_lfg_get(&prng) % 256;
#else
tab[i] = i;
#endif
}
}
......
......@@ -33,24 +33,26 @@ typedef struct VCR1Context {
int offset[4];
} VCR1Context;
static av_cold void common_init(AVCodecContext *avctx)
static av_cold int vcr1_common_init(AVCodecContext *avctx)
{
VCR1Context *const a = avctx->priv_data;
avctx->coded_frame = &a->picture;
avcodec_get_frame_defaults(&a->picture);
return 0;
}
static av_cold int decode_init(AVCodecContext *avctx)
static av_cold int vcr1_decode_init(AVCodecContext *avctx)
{
common_init(avctx);
vcr1_common_init(avctx);
avctx->pix_fmt = PIX_FMT_YUV410P;
return 0;
}
static av_cold int decode_end(AVCodecContext *avctx)
static av_cold int vcr1_decode_end(AVCodecContext *avctx)
{
VCR1Context *s = avctx->priv_data;
......@@ -60,8 +62,8 @@ static av_cold int decode_end(AVCodecContext *avctx)
return 0;
}
static int decode_frame(AVCodecContext *avctx, void *data,
int *data_size, AVPacket *avpkt)
static int vcr1_decode_frame(AVCodecContext *avctx, void *data,
int *data_size, AVPacket *avpkt)
{
const uint8_t *buf = avpkt->data;
int buf_size = avpkt->size;
......@@ -145,9 +147,9 @@ AVCodec ff_vcr1_decoder = {
.type = AVMEDIA_TYPE_VIDEO,
.id = CODEC_ID_VCR1,
.priv_data_size = sizeof(VCR1Context),
.init = decode_init,
.close = decode_end,
.decode = decode_frame,
.init = vcr1_decode_init,
.close = vcr1_decode_end,
.decode = vcr1_decode_frame,
.capabilities = CODEC_CAP_DR1,
.long_name = NULL_IF_CONFIG_SMALL("ATI VCR1"),
};
......@@ -157,8 +159,11 @@ AVCodec ff_vcr1_decoder = {
#define CONFIG_VCR1_ENCODER 0
#if CONFIG_VCR1_ENCODER
static int encode_frame(AVCodecContext *avctx, unsigned char *buf,
int buf_size, void *data)
#include "put_bits.h"
static int vcr1_encode_frame(AVCodecContext *avctx, unsigned char *buf,
int buf_size, void *data)
{
VCR1Context *const a = avctx->priv_data;
AVFrame *pict = data;
......@@ -170,10 +175,9 @@ static int encode_frame(AVCodecContext *avctx, unsigned char *buf,
p->key_frame = 1;
avpriv_align_put_bits(&a->pb);
while (get_bit_count(&a->pb) & 31)
put_bits(&a->pb, 8, 0);
flush_put_bits(&a->pb);
size = get_bit_count(&a->pb) / 32;
size = put_bits_count(&a->pb) / 32;
return size * 4;
}
......@@ -183,8 +187,8 @@ AVCodec ff_vcr1_encoder = {
.type = AVMEDIA_TYPE_VIDEO,
.id = CODEC_ID_VCR1,
.priv_data_size = sizeof(VCR1Context),
.init = common_init,
.encode = encode_frame,
.init = vcr1_common_init,
.encode = vcr1_encode_frame,
.long_name = NULL_IF_CONFIG_SMALL("ATI VCR1"),
};
#endif /* CONFIG_VCR1_ENCODER */
......@@ -25,30 +25,31 @@ av_cold void ff_fft_init_mmx(FFTContext *s)
{
#if HAVE_YASM
int has_vectors = av_get_cpu_flags();
if (has_vectors & AV_CPU_FLAG_AVX && HAVE_AVX && s->nbits >= 5) {
/* AVX for SB */
s->imdct_calc = ff_imdct_calc_sse;
s->imdct_half = ff_imdct_half_avx;
s->fft_permute = ff_fft_permute_sse;
s->fft_calc = ff_fft_calc_avx;
s->fft_permutation = FF_FFT_PERM_AVX;
} else if (has_vectors & AV_CPU_FLAG_SSE && HAVE_SSE) {
if (has_vectors & AV_CPU_FLAG_3DNOW && HAVE_AMD3DNOW) {
/* 3DNow! for K6-2/3 */
s->imdct_calc = ff_imdct_calc_3dn;
s->imdct_half = ff_imdct_half_3dn;
s->fft_calc = ff_fft_calc_3dn;
}
if (has_vectors & AV_CPU_FLAG_3DNOWEXT && HAVE_AMD3DNOWEXT) {
/* 3DNowEx for K7 */
s->imdct_calc = ff_imdct_calc_3dn2;
s->imdct_half = ff_imdct_half_3dn2;
s->fft_calc = ff_fft_calc_3dn2;
}
if (has_vectors & AV_CPU_FLAG_SSE && HAVE_SSE) {
/* SSE for P3/P4/K8 */
s->imdct_calc = ff_imdct_calc_sse;
s->imdct_half = ff_imdct_half_sse;
s->fft_permute = ff_fft_permute_sse;
s->fft_calc = ff_fft_calc_sse;
s->fft_permutation = FF_FFT_PERM_SWAP_LSBS;
} else if (has_vectors & AV_CPU_FLAG_3DNOWEXT && HAVE_AMD3DNOWEXT) {
/* 3DNowEx for K7 */
s->imdct_calc = ff_imdct_calc_3dn2;
s->imdct_half = ff_imdct_half_3dn2;
s->fft_calc = ff_fft_calc_3dn2;
} else if (has_vectors & AV_CPU_FLAG_3DNOW && HAVE_AMD3DNOW) {
/* 3DNow! for K6-2/3 */
s->imdct_calc = ff_imdct_calc_3dn;
s->imdct_half = ff_imdct_half_3dn;
s->fft_calc = ff_fft_calc_3dn;
}
if (has_vectors & AV_CPU_FLAG_AVX && HAVE_AVX && s->nbits >= 5) {
/* AVX for SB */
s->imdct_half = ff_imdct_half_avx;
s->fft_calc = ff_fft_calc_avx;
s->fft_permutation = FF_FFT_PERM_AVX;
}
#endif
}
......@@ -58,12 +59,12 @@ av_cold void ff_dct_init_mmx(DCTContext *s)
{
#if HAVE_YASM
int has_vectors = av_get_cpu_flags();
if (has_vectors & AV_CPU_FLAG_SSE && HAVE_SSE)
s->dct32 = ff_dct32_float_sse;
if (has_vectors & AV_CPU_FLAG_SSE2 && HAVE_SSE)
s->dct32 = ff_dct32_float_sse2;
if (has_vectors & AV_CPU_FLAG_AVX && HAVE_AVX)
s->dct32 = ff_dct32_float_avx;
else if (has_vectors & AV_CPU_FLAG_SSE2 && HAVE_SSE)
s->dct32 = ff_dct32_float_sse2;
else if (has_vectors & AV_CPU_FLAG_SSE && HAVE_SSE)
s->dct32 = ff_dct32_float_sse;
#endif
}
#endif
......@@ -555,17 +555,6 @@ static int gxf_write_umf_media_audio(AVIOContext *pb, GXFStreamContext *sc)
return 32;
}
#if 0
static int gxf_write_umf_media_mjpeg(AVIOContext *pb, GXFStreamContext *sc)
{
avio_wb64(pb, 0); /* FIXME FLOAT max chroma quant level */
avio_wb64(pb, 0); /* FIXME FLOAT max luma quant level */
avio_wb64(pb, 0); /* FIXME FLOAT min chroma quant level */
avio_wb64(pb, 0); /* FIXME FLOAT min luma quant level */
return 32;
}
#endif
static int gxf_write_umf_media_description(AVFormatContext *s)
{
GXFContext *gxf = s->priv_data;
......
......@@ -28,6 +28,12 @@ fate-adpcm-ea-maxis-xa: CMD = framecrc -i $(SAMPLES)/maxis-xa/SC2KBUG.XA -frames
FATE_ADPCM += fate-adpcm-ea-r1
fate-adpcm-ea-r1: CMD = framecrc -i $(SAMPLES)/ea-mad/NFS6LogoE.mad -vn
FATE_ADPCM += fate-adpcm-ima-amv
fate-adpcm-ima-amv: CMD = framecrc -i $(SAMPLES)/amv/MTV_high_res_320x240_sample_Penguin_Joke_MTV_from_WMV.amv -t 10 -vn
FATE_ADPCM += fate-adpcm-ima-apc
fate-adpcm-ima-apc: CMD = md5 -i $(SAMPLES)/cryo-apc/cine007.APC -f s16le
FATE_ADPCM += fate-adpcm-ima-dk3
fate-adpcm-ima-dk3: CMD = md5 -i $(SAMPLES)/duck/sop-audio-only.avi -f s16le
......@@ -40,15 +46,27 @@ fate-adpcm-ima-ea-eacs: CMD = framecrc -i $(SAMPLES)/ea-tgv/INTRO8K-partial.TGV
FATE_ADPCM += fate-adpcm-ima-ea-sead
fate-adpcm-ima-ea-sead: CMD = framecrc -i $(SAMPLES)/ea-tgv/INTEL_S.TGV -vn
FATE_ADPCM += fate-adpcm-ima-iss
fate-adpcm-ima-iss: CMD = md5 -i $(SAMPLES)/funcom-iss/0004010100.iss -f s16le
FATE_ADPCM += fate-adpcm-ima-smjpeg
fate-adpcm-ima-smjpeg: CMD = framecrc -i $(SAMPLES)/smjpeg/scenwin.mjpg -vn
FATE_ADPCM += fate-adpcm-ima_wav-stereo
fate-adpcm-ima_wav-stereo: CMD = md5 -i $(SAMPLES)/qt-surge-suite/surge-2-16-L-ms11.mov -f s16le
FATE_ADPCM += fate-adpcm-psx-str-v3
fate-adpcm-psx-str-v3: CMD = framecrc -i $(SAMPLES)/psx-str/abc000_cut.str -vn
FATE_ADPCM += fate-adpcm-ima-ws
fate-adpcm-ima-ws: CMD = framecrc -i $(SAMPLES)/vqa/cc-demo1-partial.vqa -vn
FATE_ADPCM += fate-adpcm-ms-mono
fate-adpcm-ms-mono: CMD = framecrc -i $(SAMPLES)/dxa/meetsquid.dxa -t 2 -vn
FATE_ADPCM += fate-adpcm-thp
fate-adpcm-thp: CMD = framecrc -i $(SAMPLES)/thp/pikmin2-opening1-partial.thp -vn
FATE_ADPCM += fate-adpcm-xa
fate-adpcm-xa: CMD = framecrc -i $(SAMPLES)/psx-str/abc000_cut.str -vn
FATE_ADPCM += fate-adpcm_ms-stereo
fate-adpcm_ms-stereo: CMD = md5 -i $(SAMPLES)/qt-surge-suite/surge-2-16-L-ms02.mov -f s16le
......
......@@ -13,6 +13,12 @@ fate-binkaudio-rdft: FUZZ = 2
FATE_AUDIO += $(FATE_BINKAUDIO)
fate-binkaudio: $(FATE_BINKAUDIO)
FATE_AUDIO += fate-bmv-audio
fate-bmv-audio: CMD = framecrc -i $(SAMPLES)/bmv/SURFING-partial.BMV -vn
FATE_AUDIO += fate-delphine-cin-audio
fate-delphine-cin-audio: CMD = framecrc -i $(SAMPLES)/delphine-cin/LOGO-partial.CIN -vn
FATE_AUDIO += fate-dts
fate-dts: CMD = pcm -i $(SAMPLES)/dts/dts.ts
fate-dts: CMP = oneoff
......
......@@ -10,29 +10,14 @@ fate-aea-demux: CMD = crc -i $(SAMPLES)/aea/chirp.aea -acodec copy
FATE_DEMUX += fate-bink-demux
fate-bink-demux: CMD = crc -i $(SAMPLES)/bink/Snd0a7d9b58.dee -vn -acodec copy
FATE_DEMUX += fate-bmv
fate-bmv: CMD = framecrc -i $(SAMPLES)/bmv/SURFING-partial.BMV -pix_fmt rgb24
FATE_DEMUX += fate-caf
fate-caf: CMD = crc -i $(SAMPLES)/caf/caf-pcm16.caf
fate-caf: CMD = crc -i $(SAMPLES)/caf/caf-pcm16.caf -c copy
FATE_DEMUX += fate-cdxl-demux
fate-cdxl-demux: CMD = framecrc -i $(SAMPLES)/cdxl/mirage.cdxl -vcodec copy -acodec copy
FATE_DEMUX += fate-cryo-apc
fate-cryo-apc: CMD = md5 -i $(SAMPLES)/cryo-apc/cine007.APC -f s16le
FATE_DEMUX += fate-d-cinema-demux
fate-d-cinema-demux: CMD = framecrc -i $(SAMPLES)/d-cinema/THX_Science_FLT_1920-partial.302 -acodec copy -pix_fmt rgb24
FATE_DEMUX += fate-funcom-iss
fate-funcom-iss: CMD = md5 -i $(SAMPLES)/funcom-iss/0004010100.iss -f s16le
FATE_DEMUX += fate-interplay-mve-16bit
fate-interplay-mve-16bit: CMD = framecrc -i $(SAMPLES)/interplay-mve/descent3-level5-16bit-partial.mve -pix_fmt rgb24
FATE_DEMUX += fate-interplay-mve-8bit
fate-interplay-mve-8bit: CMD = framecrc -i $(SAMPLES)/interplay-mve/interplay-logo-2MB.mve -pix_fmt rgb24
fate-d-cinema-demux: CMD = framecrc -i $(SAMPLES)/d-cinema/THX_Science_FLT_1920-partial.302 -acodec copy
FATE_DEMUX += fate-iv8-demux
fate-iv8-demux: CMD = framecrc -i $(SAMPLES)/iv8/zzz-partial.mpg -vcodec copy
......@@ -44,7 +29,7 @@ FATE_DEMUX += fate-maxis-xa
fate-maxis-xa: CMD = framecrc -i $(SAMPLES)/maxis-xa/SC2KBUG.XA -frames:a 30 -c:a copy
FATE_DEMUX += fate-mtv
fate-mtv: CMD = framecrc -i $(SAMPLES)/mtv/comedian_auto-partial.mtv -acodec copy -pix_fmt rgb24
fate-mtv: CMD = framecrc -i $(SAMPLES)/mtv/comedian_auto-partial.mtv -c copy
FATE_DEMUX += fate-mxf-demux
fate-mxf-demux: CMD = framecrc -i $(SAMPLES)/mxf/C0023S01.mxf -acodec copy -vcodec copy
......@@ -83,7 +68,7 @@ FATE_DEMUX += fate-smjpeg
fate-smjpeg: CMD = framecrc -i $(SAMPLES)/smjpeg/scenwin.mjpg -vcodec copy
FATE_DEMUX += fate-westwood-aud
fate-westwood-aud: CMD = md5 -i $(SAMPLES)/westwood-aud/excellent.aud -f s16le
fate-westwood-aud: CMD = framecrc -i $(SAMPLES)/westwood-aud/excellent.aud -c copy
FATE_DEMUX += fate-wtv-demux
fate-wtv-demux: CMD = framecrc -i $(SAMPLES)/wtv/law-and-order-partial.wtv -vcodec copy -acodec copy
......
FATE_DPCM += fate-dpcm-idroq
fate-dpcm-idroq: CMD = framecrc -i $(SAMPLES)/idroq/idlogo.roq -vn
FATE_DPCM += fate-dpcm-interplay
fate-dpcm-interplay: CMD = framecrc -i $(SAMPLES)/interplay-mve/interplay-logo-2MB.mve -vn
FATE_DPCM += fate-dpcm-sierra
fate-dpcm-sierra: CMD = md5 -i $(SAMPLES)/sol/lsl7sample.sol -f s16le
......
FATE_PCM += fate-ea-mad-pcm-planar
fate-ea-mad-pcm-planar: CMD = framecrc -i $(SAMPLES)/ea-mad/xeasport.mad
FATE_PCM += fate-film-cvid-pcm-stereo-8bit
fate-film-cvid-pcm-stereo-8bit: CMD = framecrc -i $(SAMPLES)/film/logo-capcom.cpk
FATE_PCM += fate-iff-pcm
fate-iff-pcm: CMD = md5 -i $(SAMPLES)/iff/Bells -f s16le
FATE_PCM += fate-pcm_dvd
fate-pcm_dvd: CMD = framecrc -i $(SAMPLES)/pcm-dvd/coolitnow-partial.vob -vn
FATE_PCM += fate-pcm-planar
fate-pcm-planar: CMD = framecrc -i $(SAMPLES)/ea-mad/xeasport.mad -vn
FATE_PCM += fate-pcm_s16be-stereo
fate-pcm_s16be-stereo: CMD = md5 -i $(SAMPLES)/qt-surge-suite/surge-2-16-B-twos.mov -f s16le
......
FATE_QTRLE += fate-qtrle-1bit
fate-qtrle-1bit: CMD = framecrc -i $(SAMPLES)/qtrle/Animation-Monochrome.mov
fate-qtrle-1bit: CMD = framecrc -i $(SAMPLES)/qtrle/Animation-Monochrome.mov -an
FATE_QTRLE += fate-qtrle-2bit
fate-qtrle-2bit: CMD = framecrc -i $(SAMPLES)/qtrle/Animation-4Greys.mov -pix_fmt rgb24
fate-qtrle-2bit: CMD = framecrc -i $(SAMPLES)/qtrle/Animation-4Greys.mov -pix_fmt rgb24 -an
FATE_QTRLE += fate-qtrle-4bit
fate-qtrle-4bit: CMD = framecrc -i $(SAMPLES)/qtrle/Animation-16Greys.mov -pix_fmt rgb24 -an
......
......@@ -14,7 +14,7 @@ FATE_VIDEO += fate-alg-mm
fate-alg-mm: CMD = framecrc -i $(SAMPLES)/alg-mm/ibmlogo.mm -an -pix_fmt rgb24
FATE_VIDEO += fate-amv
fate-amv: CMD = framecrc -idct simple -i $(SAMPLES)/amv/MTV_high_res_320x240_sample_Penguin_Joke_MTV_from_WMV.amv -t 10
fate-amv: CMD = framecrc -idct simple -i $(SAMPLES)/amv/MTV_high_res_320x240_sample_Penguin_Joke_MTV_from_WMV.amv -t 10 -an
FATE_VIDEO += fate-ansi
fate-ansi: CMD = framecrc -chars_per_frame 44100 -i $(SAMPLES)/ansi/TRE-IOM5.ANS -pix_fmt rgb24
......@@ -37,6 +37,9 @@ fate-bfi: CMD = framecrc -i $(SAMPLES)/bfi/2287.bfi -pix_fmt rgb24
FATE_VIDEO += fate-bink-video
fate-bink-video: CMD = framecrc -i $(SAMPLES)/bink/hol2br.bik
FATE_VIDEO += fate-bmv-video
fate-bmv-video: CMD = framecrc -i $(SAMPLES)/bmv/SURFING-partial.BMV -pix_fmt rgb24 -an
FATE_VIDEO += fate-cdgraphics
fate-cdgraphics: CMD = framecrc -i $(SAMPLES)/cdgraphics/BrotherJohn.cdg -pix_fmt rgb24 -t 1
......@@ -67,17 +70,17 @@ fate-cyberia-c93: CMD = framecrc -i $(SAMPLES)/cyberia-c93/intro1.c93 -t 3 -pix_
FATE_VIDEO += fate-cyuv
fate-cyuv: CMD = framecrc -i $(SAMPLES)/cyuv/cyuv.avi
FATE_VIDEO += fate-delphine-cin
fate-delphine-cin: CMD = framecrc -i $(SAMPLES)/delphine-cin/LOGO-partial.CIN -pix_fmt rgb24
FATE_VIDEO += fate-delphine-cin-video
fate-delphine-cin-video: CMD = framecrc -i $(SAMPLES)/delphine-cin/LOGO-partial.CIN -pix_fmt rgb24 -an
FATE_VIDEO += fate-deluxepaint-anm
fate-deluxepaint-anm: CMD = framecrc -i $(SAMPLES)/deluxepaint-anm/INTRO1.ANM -pix_fmt rgb24
FATE_TRUEMOTION1 += fate-truemotion1-15
fate-truemotion1-15: CMD = framecrc -i $(SAMPLES)/duck/phant2-940.duk -pix_fmt rgb24
fate-truemotion1-15: CMD = framecrc -i $(SAMPLES)/duck/phant2-940.duk -pix_fmt rgb24 -an
FATE_TRUEMOTION1 += fate-truemotion1-24
fate-truemotion1-24: CMD = framecrc -i $(SAMPLES)/duck/sonic3dblast_intro-partial.avi -pix_fmt rgb24
fate-truemotion1-24: CMD = framecrc -i $(SAMPLES)/duck/sonic3dblast_intro-partial.avi -pix_fmt rgb24 -an
FATE_VIDEO += $(FATE_TRUEMOTION1)
fate-truemotion1: $(FATE_TRUEMOTION1)
......@@ -86,7 +89,7 @@ FATE_VIDEO += fate-truemotion2
fate-truemotion2: CMD = framecrc -i $(SAMPLES)/duck/tm20.avi
FATE_DXA += fate-dxa-feeble
fate-dxa-feeble: CMD = framecrc -i $(SAMPLES)/dxa/meetsquid.dxa -t 2 -pix_fmt rgb24
fate-dxa-feeble: CMD = framecrc -i $(SAMPLES)/dxa/meetsquid.dxa -t 2 -pix_fmt rgb24 -an
FATE_DXA += fate-dxa-scummvm
fate-dxa-scummvm: CMD = framecrc -i $(SAMPLES)/dxa/scummvm.dxa -pix_fmt rgb24
......@@ -94,6 +97,9 @@ fate-dxa-scummvm: CMD = framecrc -i $(SAMPLES)/dxa/scummvm.dxa -pix_fmt rgb24
FATE_VIDEO += $(FATE_DXA)
fate-dxa: $(FATE_DXA)
FATE_PCM += fate-film-cvid
fate-film-cvid: CMD = framecrc -i $(SAMPLES)/film/logo-capcom.cpk -an
FATE_FLIC += fate-flic-af11-palette-change
fate-flic-af11-palette-change: CMD = framecrc -i $(SAMPLES)/fli/fli-engines.fli -t 3.3 -pix_fmt rgb24
......@@ -127,6 +133,12 @@ fate-iff-ilbm: CMD = framecrc -i $(SAMPLES)/iff/lms-matriks.ilbm -pix_fmt rgb24
FATE_VIDEO += $(FATE_IFF)
fate-iff: $(FATE_IFF)
FATE_VIDEO += fate-interplay-mve-8bit
fate-interplay-mve-8bit: CMD = framecrc -i $(SAMPLES)/interplay-mve/interplay-logo-2MB.mve -pix_fmt rgb24 -an
FATE_VIDEO += fate-interplay-mve-16bit
fate-interplay-mve-16bit: CMD = framecrc -i $(SAMPLES)/interplay-mve/descent3-level5-16bit-partial.mve -pix_fmt rgb24 -an
FATE_VIDEO += fate-kgv1
fate-kgv1: CMD = framecrc -i $(SAMPLES)/kega/kgv1.avi -pix_fmt rgb555le -an
......@@ -214,7 +226,7 @@ FATE_VIDEO += fate-videoxl
fate-videoxl: CMD = framecrc -i $(SAMPLES)/vixl/pig-vixl.avi
FATE_VIDEO += fate-vqa-cc
fate-vqa-cc: CMD = framecrc -i $(SAMPLES)/vqa/cc-demo1-partial.vqa -pix_fmt rgb24
fate-vqa-cc: CMD = framecrc -i $(SAMPLES)/vqa/cc-demo1-partial.vqa -pix_fmt rgb24 -an
FATE_VIDEO += fate-wc3movie-xan
fate-wc3movie-xan: CMD = framecrc -i $(SAMPLES)/wc3movie/SC_32-part.MVE -pix_fmt rgb24
......
#tb 0: 1/22050
0, 0, 0, 1378, 2756, 0x0af35034
0, 1378, 1378, 1378, 2756, 0x8462443f
0, 2756, 2756, 1378, 2756, 0x9f493ba6
0, 4134, 4134, 1378, 2756, 0x634e5f06
0, 5512, 5512, 1380, 2760, 0x51f35cd4
0, 6891, 6891, 1378, 2756, 0x011c51e5
0, 8269, 8269, 1378, 2756, 0x8c2c198c
0, 9647, 9647, 1378, 2756, 0x2b4a3397
0, 11025, 11025, 1378, 2756, 0x63794f22
0, 12403, 12403, 1378, 2756, 0xfc363898
0, 13781, 13781, 1378, 2756, 0x0da5486e
0, 15159, 15159, 1378, 2756, 0xbae17a5f
0, 16538, 16538, 1380, 2760, 0xba266e1b
0, 17916, 17916, 1378, 2756, 0xdfb61002
0, 19294, 19294, 1378, 2756, 0x15d029da
0, 20672, 20672, 1378, 2756, 0x7bc82012
0, 22050, 22050, 1378, 2756, 0x002e6999
0, 23428, 23428, 1378, 2756, 0x96346ba6
0, 24806, 24806, 1378, 2756, 0x3d54543b
0, 26184, 26184, 1380, 2760, 0x601786e1
0, 27562, 27562, 1378, 2756, 0xf22a5793
0, 28941, 28941, 1378, 2756, 0x21f54d49
0, 30319, 30319, 1378, 2756, 0x0c6d4399
0, 31697, 31697, 1378, 2756, 0x17282f8e
0, 33075, 33075, 1378, 2756, 0xeb698f75
0, 34453, 34453, 1378, 2756, 0x935e1de2
0, 35831, 35831, 1380, 2760, 0xb6fb4293
0, 37209, 37209, 1378, 2756, 0x485053dc
0, 38588, 38588, 1378, 2756, 0x24c35027
0, 39966, 39966, 1378, 2756, 0x09f323ee
0, 41344, 41344, 1378, 2756, 0xbc7d58d5
0, 42722, 42722, 1378, 2756, 0xaefd487c
0, 44100, 44100, 1378, 2756, 0xaca16cc0
0, 45478, 45478, 1380, 2760, 0x98a76091
0, 46856, 46856, 1378, 2756, 0x5d357141
0, 48234, 48234, 1378, 2756, 0x65ea2657
0, 49612, 49612, 1378, 2756, 0xb5e1334a
0, 50991, 50991, 1378, 2756, 0x32cd5d91
0, 52369, 52369, 1378, 2756, 0xdc23722b
0, 53747, 53747, 1378, 2756, 0x2ba34684
0, 55125, 55125, 1378, 2756, 0xf9755ba8
0, 56503, 56503, 1380, 2760, 0x24221ddb
0, 57881, 57881, 1378, 2756, 0xef843aa4
0, 59259, 59259, 1378, 2756, 0x420442fe
0, 60638, 60638, 1378, 2756, 0x5a0933cb
0, 62016, 62016, 1378, 2756, 0xef5f6d61
0, 63394, 63394, 1378, 2756, 0xe57e6dc0
0, 64772, 64772, 1378, 2756, 0xc0f0495a
0, 66150, 66150, 1380, 2760, 0x2c3b55df
0, 67528, 67528, 1378, 2756, 0x39c2586c
0, 68906, 68906, 1378, 2756, 0x7ffc46e5
0, 70284, 70284, 1378, 2756, 0xa2766664
0, 71662, 71662, 1378, 2756, 0xacb50c6c
0, 73041, 73041, 1378, 2756, 0x7f659084
0, 74419, 74419, 1378, 2756, 0xc72e6a12
0, 75797, 75797, 1380, 2760, 0xdb6944df
0, 77175, 77175, 1378, 2756, 0x954f45c1
0, 78553, 78553, 1378, 2756, 0xa9484240
0, 79931, 79931, 1378, 2756, 0x1d595349
0, 81309, 81309, 1378, 2756, 0xcf2a565e
0, 82688, 82688, 1378, 2756, 0x391028d5
0, 84066, 84066, 1378, 2756, 0x348db7ad
0, 85444, 85444, 1380, 2760, 0xb69b5e3a
0, 86822, 86822, 1378, 2756, 0xe3635fbe
0, 88200, 88200, 1378, 2756, 0xdcad3654
0, 89578, 89578, 1378, 2756, 0x5c17abef
0, 90956, 90956, 1378, 2756, 0xb3235184
0, 92334, 92334, 1378, 2756, 0xdabb64a6
0, 93712, 93712, 1378, 2756, 0xa95dc58d
0, 95091, 95091, 1380, 2760, 0x8e7ac9eb
0, 96469, 96469, 1378, 2756, 0x492b658e
0, 97847, 97847, 1378, 2756, 0x377483ab
0, 99225, 99225, 1378, 2756, 0x2c250279
0, 100603, 100603, 1378, 2756, 0x704dbdb3
0, 101981, 101981, 1378, 2756, 0x800d7da2
0, 103359, 103359, 1378, 2756, 0x872aa32e
0, 104738, 104738, 1378, 2756, 0x2d4837fe
0, 106116, 106116, 1380, 2760, 0xc89ea57e
0, 107494, 107494, 1378, 2756, 0x6447d7ef
0, 108872, 108872, 1378, 2756, 0x144f59cc
0, 110250, 110250, 1378, 2756, 0xc667154e
0, 111628, 111628, 1378, 2756, 0xf0de66ae
0, 113006, 113006, 1378, 2756, 0xeabf3c32
0, 114384, 114384, 1378, 2756, 0xe98e81d1
0, 115762, 115762, 1380, 2760, 0x56aa5889
0, 117141, 117141, 1378, 2756, 0x4fd34c0e
0, 118519, 118519, 1378, 2756, 0x67cf6912
0, 119897, 119897, 1378, 2756, 0xfa944def
0, 121275, 121275, 1378, 2756, 0xc12f23b2
0, 122653, 122653, 1378, 2756, 0x5ea325a2
0, 124031, 124031, 1378, 2756, 0x2b245824
0, 125409, 125409, 1380, 2760, 0x90ac533e
0, 126788, 126788, 1378, 2756, 0xcca34d26
0, 128166, 128166, 1378, 2756, 0xb5f820d0
0, 129544, 129544, 1378, 2756, 0x27f24335
0, 130922, 130922, 1378, 2756, 0x4a9e87b7
0, 132300, 132300, 1378, 2756, 0xbd076129
0, 133678, 133678, 1378, 2756, 0x2e0e3f2e
0, 135056, 135056, 1380, 2760, 0xdf534478
0, 136434, 136434, 1378, 2756, 0xca000a2e
0, 137812, 137812, 1378, 2756, 0x87472df3
0, 139191, 139191, 1378, 2756, 0x16733810
0, 140569, 140569, 1378, 2756, 0xfa0734b4
0, 141947, 141947, 1378, 2756, 0x5eff3fc4
0, 143325, 143325, 1378, 2756, 0xf35346bd
0, 144703, 144703, 1378, 2756, 0xac6411c5
0, 146081, 146081, 1380, 2760, 0x478c3c56
0, 147459, 147459, 1378, 2756, 0xebd30bdd
0, 148838, 148838, 1378, 2756, 0xaef95a31
0, 150216, 150216, 1378, 2756, 0x8aad29d1
0, 151594, 151594, 1378, 2756, 0x626863f0
0, 152972, 152972, 1378, 2756, 0x68c05707
0, 154350, 154350, 1378, 2756, 0x437c5e8d
0, 155728, 155728, 1380, 2760, 0x8eca4bdb
0, 157106, 157106, 1378, 2756, 0x62bd4162
0, 158484, 158484, 1378, 2756, 0x9f744aa4
0, 159862, 159862, 1378, 2756, 0x0f3f6409
0, 161241, 161241, 1378, 2756, 0x3fee827a
0, 162619, 162619, 1378, 2756, 0x48a0ac19
0, 163997, 163997, 1378, 2756, 0x8e4ce0d0
0, 165375, 165375, 1380, 2760, 0xcda82236
0, 166753, 166753, 1378, 2756, 0x0e523255
0, 168131, 168131, 1378, 2756, 0x84103d30
0, 169509, 169509, 1378, 2756, 0x13941cde
0, 170888, 170888, 1378, 2756, 0x9fc834c5
0, 172266, 172266, 1378, 2756, 0xc0217a77
0, 173644, 173644, 1378, 2756, 0x3f643659
0, 175022, 175022, 1380, 2760, 0x9dbd6002
0, 176400, 176400, 1378, 2756, 0x94f046fb
0, 177778, 177778, 1378, 2756, 0xab01fb12
0, 179156, 179156, 1378, 2756, 0x04cffe5c
0, 180534, 180534, 1378, 2756, 0xef661c5e
0, 181912, 181912, 1378, 2756, 0x094c5fc5
0, 183291, 183291, 1378, 2756, 0xe0c1486a
0, 184669, 184669, 1380, 2760, 0x8c3535b7
0, 186047, 186047, 1378, 2756, 0x594934aa
0, 187425, 187425, 1378, 2756, 0x74007238
0, 188803, 188803, 1378, 2756, 0x61f1394d
0, 190181, 190181, 1378, 2756, 0x72584f07
0, 191559, 191559, 1378, 2756, 0xced9acf9
0, 192938, 192938, 1378, 2756, 0x7d2e3ea1
0, 194316, 194316, 1378, 2756, 0x56c06897
0, 195694, 195694, 1380, 2760, 0x19983bbf
0, 197072, 197072, 1378, 2756, 0x4f884f27
0, 198450, 198450, 1378, 2756, 0x81ab2f63
0, 199828, 199828, 1378, 2756, 0x448e681d
0, 201206, 201206, 1378, 2756, 0x0ba9826e
0, 202584, 202584, 1378, 2756, 0x049f36fa
0, 203962, 203962, 1378, 2756, 0x096a2b62
0, 205341, 205341, 1380, 2760, 0x579e2035
0, 206719, 206719, 1378, 2756, 0xd13e30e1
0, 208097, 208097, 1378, 2756, 0x30b6412b
0, 209475, 209475, 1378, 2756, 0xbb1c3268
0, 210853, 210853, 1378, 2756, 0xbc175b6a
0, 212231, 212231, 1378, 2756, 0xf8d160e2
0, 213609, 213609, 1378, 2756, 0xc1048154
0, 214988, 214988, 1380, 2760, 0xb83548f4
0, 216366, 216366, 1378, 2756, 0x22647962
0, 217744, 217744, 1378, 2756, 0x14ca54d3
0, 219122, 219122, 1378, 2756, 0x58754b3a
This diff is collapsed.
#tb 0: 1/22050
0, 0, 0, 11024, 22048, 0x0665d7f4
0, 11024, 11024, 1470, 2940, 0x0f3c64cb
0, 12494, 12494, 1470, 2940, 0xc90b9e78
0, 13964, 13964, 1470, 2940, 0x146246a3
0, 15434, 15434, 1470, 2940, 0xd22c714e
0, 16904, 16904, 1470, 2940, 0xd86b681e
0, 18374, 18374, 1470, 2940, 0x12ec8186
0, 19844, 19844, 1470, 2940, 0x69aa85b6
0, 21314, 21314, 1470, 2940, 0xb24d33b0
0, 22784, 22784, 1470, 2940, 0x3f7b0f0d
0, 24254, 24254, 1470, 2940, 0x64f10f7e
0, 25724, 25724, 1470, 2940, 0xd6ea379a
0, 27194, 27194, 1470, 2940, 0x7c38e830
0, 28664, 28664, 1470, 2940, 0xc28ff132
0, 30134, 30134, 1470, 2940, 0xe7b11629
0, 31604, 31604, 1470, 2940, 0xeb86fdcb
0, 33074, 33074, 1470, 2940, 0x5508f586
0, 34544, 34544, 1470, 2940, 0xf4fa1f1b
0, 36014, 36014, 1470, 2940, 0x9e5ff976
0, 37484, 37484, 1470, 2940, 0xcfc4e08f
0, 38954, 38954, 1470, 2940, 0x74bde7ed
0, 40424, 40424, 1470, 2940, 0x3e4ae245
0, 41894, 41894, 1470, 2940, 0x4c6a8e56
0, 43364, 43364, 1470, 2940, 0xa09d86ab
0, 44834, 44834, 1470, 2940, 0xc8531912
0, 46304, 46304, 1470, 2940, 0xa5f266aa
0, 47774, 47774, 1470, 2940, 0x587a4187
0, 49244, 49244, 1470, 2940, 0x14752d45
0, 50714, 50714, 1470, 2940, 0x558cde10
0, 52184, 52184, 1470, 2940, 0x735fee38
0, 53654, 53654, 1470, 2940, 0xac8bb6c8
0, 55124, 55124, 1470, 2940, 0xa503c73b
0, 56594, 56594, 1470, 2940, 0x7cd588a3
0, 58064, 58064, 1470, 2940, 0xa6974b04
0, 59534, 59534, 1470, 2940, 0xbf448241
0, 61004, 61004, 1470, 2940, 0x2a5c2759
0, 62474, 62474, 1470, 2940, 0xd0de5ce0
0, 63944, 63944, 1470, 2940, 0xc0486649
0, 65414, 65414, 1470, 2940, 0x48b040af
0, 66884, 66884, 1470, 2940, 0x82a338a9
#tb 0: 1/11025
0, 0, 0, 500, 1000, 0x64cd9403
0, 500, 500, 500, 1000, 0xa4ef8a9d
0, 1000, 1000, 500, 1000, 0x75c19868
0, 1500, 1500, 500, 1000, 0x93db6f79
0, 2000, 2000, 500, 1000, 0x6835625d
0, 2500, 2500, 500, 1000, 0xb3affa8f
0, 3000, 3000, 500, 1000, 0x159fdcc8
0, 3500, 3500, 500, 1000, 0x79f9f7f1
0, 4000, 4000, 500, 1000, 0xd7d1131e
0, 4500, 4500, 500, 1000, 0x52a6f797
0, 5000, 5000, 500, 1000, 0x748202ca
0, 5500, 5500, 500, 1000, 0x0ef92449
0, 6000, 6000, 500, 1000, 0x6a3760ab
0, 6500, 6500, 500, 1000, 0xce5c5abf
0, 7000, 7000, 500, 1000, 0x23396792
0, 7500, 7500, 500, 1000, 0xa5276238
0, 8000, 8000, 500, 1000, 0x288adf1b
0, 8500, 8500, 500, 1000, 0xe7de6fb2
0, 9000, 9000, 500, 1000, 0x2c2c707f
0, 9500, 9500, 500, 1000, 0xd66d6daf
0, 10000, 10000, 500, 1000, 0xbcea7d64
0, 10500, 10500, 500, 1000, 0x766feea5
0, 11000, 11000, 500, 1000, 0xd2e1d63a
0, 11500, 11500, 500, 1000, 0x2f7ef4ed
0, 12000, 12000, 500, 1000, 0xb655cba4
0, 12500, 12500, 500, 1000, 0x4507d37b
0, 13000, 13000, 500, 1000, 0x0c57f794
0, 13500, 13500, 500, 1000, 0x0ecbe5cc
0, 14000, 14000, 500, 1000, 0x9bf6e345
0, 14500, 14500, 500, 1000, 0xc461443c
0, 15000, 15000, 500, 1000, 0xad9657bf
0, 15500, 15500, 500, 1000, 0x466fe91c
0, 16000, 16000, 500, 1000, 0x9ee377fe
0, 16500, 16500, 500, 1000, 0x09956428
0, 17000, 17000, 500, 1000, 0x9b285f0a
0, 17500, 17500, 500, 1000, 0x0a3e61a6
0, 18000, 18000, 500, 1000, 0xacc25d6b
0, 18500, 18500, 500, 1000, 0x377be319
0, 19000, 19000, 500, 1000, 0xe4890504
0, 19500, 19500, 500, 1000, 0xe90a6497
0, 20000, 20000, 500, 1000, 0xd00fe950
0, 20500, 20500, 500, 1000, 0xf195eb44
0, 21000, 21000, 500, 1000, 0xa491f3ef
0, 21500, 21500, 500, 1000, 0x2c036e18
0, 22000, 22000, 500, 1000, 0x52d65e2a
This diff is collapsed.
#tb 0: 1/22050
0, 0, 0, 1856, 7424, 0x18540b36
0, 1856, 1856, 1824, 7296, 0x5acd2484
0, 3680, 3680, 1856, 7424, 0xa1bc5c5a
0, 5536, 5536, 1824, 7296, 0x71a02ad1
0, 7360, 7360, 1856, 7424, 0x09cc32f2
0, 9216, 9216, 1824, 7296, 0xa3451726
0, 11040, 11040, 1824, 7296, 0x1eb40a18
0, 12864, 12864, 1856, 7424, 0xc55a2acf
0, 14720, 14720, 1824, 7296, 0x5b9fad3f
0, 16544, 16544, 1856, 7424, 0xea651ae7
0, 18400, 18400, 1824, 7296, 0x2bd5ddb6
0, 20224, 20224, 1856, 7424, 0xde4243b4
0, 22080, 22080, 1824, 7296, 0x358806d3
0, 23904, 23904, 1824, 7296, 0x511a144e
0, 25728, 25728, 1856, 7424, 0x887a3e84
0, 27584, 27584, 1824, 7296, 0xfeae2a0c
0, 29408, 29408, 1856, 7424, 0xa4ea5d22
0, 31264, 31264, 1824, 7296, 0xb3adf7fa
0, 33088, 33088, 1856, 7424, 0xce995dcc
0, 34944, 34944, 1824, 7296, 0x5b4cf574
0, 36768, 36768, 1824, 7296, 0x8a70eaf0
#tb 0: 1/12
#tb 1: 1/22050
0, 0, 0, 1, 823680, 0xddb8a306
1, 0, 0, 1856, 7424, 0x18540b36
0, 1, 1, 1, 823680, 0xa95375c8
1, 1856, 1856, 1824, 7296, 0x5acd2484
0, 2, 2, 1, 823680, 0xa95375c8
1, 3680, 3680, 1856, 7424, 0xa1bc5c5a
0, 3, 3, 1, 823680, 0xb6f78afe
1, 5536, 5536, 1824, 7296, 0x71a02ad1
0, 4, 4, 1, 823680, 0xb6f78afe
1, 7360, 7360, 1856, 7424, 0x09cc32f2
0, 5, 5, 1, 823680, 0x45b9c8f0
1, 9216, 9216, 1824, 7296, 0xa3451726
0, 6, 6, 1, 823680, 0x45b9c8f0
1, 11040, 11040, 1824, 7296, 0x1eb40a18
0, 7, 7, 1, 823680, 0x7653d8e9
1, 12864, 12864, 1856, 7424, 0xc55a2acf
0, 8, 8, 1, 823680, 0x7653d8e9
1, 14720, 14720, 1824, 7296, 0x5b9fad3f
0, 9, 9, 1, 823680, 0xf1e2fd73
1, 16544, 16544, 1856, 7424, 0xea651ae7
0, 10, 10, 1, 823680, 0xf1e2fd73
1, 18400, 18400, 1824, 7296, 0x2bd5ddb6
0, 11, 11, 1, 823680, 0x6d2deab3
1, 20224, 20224, 1856, 7424, 0xde4243b4
0, 12, 12, 1, 823680, 0x6d2deab3
1, 22080, 22080, 1824, 7296, 0x358806d3
0, 13, 13, 1, 823680, 0x37fd33ce
1, 23904, 23904, 1824, 7296, 0x511a144e
0, 14, 14, 1, 823680, 0x37fd33ce
1, 25728, 25728, 1856, 7424, 0x887a3e84
0, 15, 15, 1, 823680, 0x0a8e0ab9
1, 27584, 27584, 1824, 7296, 0xfeae2a0c
0, 16, 16, 1, 823680, 0x0a8e0ab9
1, 29408, 29408, 1856, 7424, 0xa4ea5d22
0, 17, 17, 1, 823680, 0x991bb2b0
1, 31264, 31264, 1824, 7296, 0xb3adf7fa
0, 18, 18, 1, 823680, 0x991bb2b0
1, 33088, 33088, 1856, 7424, 0xce995dcc
0, 19, 19, 1, 823680, 0xb8397c8c
1, 34944, 34944, 1824, 7296, 0x5b4cf574
0, 20, 20, 1, 823680, 0xb8397c8c
1, 36768, 36768, 1824, 7296, 0x8a70eaf0
CRC=0x5b74195c
CRC=0xd0d7195c
#tb 0: 1/22050
0, 0, 0, 88224, 176448, 0x541ddc55
0, 88224, 88224, 1838, 3676, 0xaf455081
0, 90062, 90062, 1838, 3676, 0x27ef4e91
0, 91900, 91900, 1838, 3676, 0xd1d986a3
0, 93738, 93738, 1838, 3676, 0xaaa2b589
0, 95576, 95576, 1838, 3676, 0x6e794ff9
0, 97414, 97414, 1838, 3676, 0x266351f1
0, 99252, 99252, 1838, 3676, 0xdeae50b2
0, 101090, 101090, 1838, 3676, 0x90f1f96a
0, 102928, 102928, 1838, 3676, 0xea07adf9
0, 104766, 104766, 1838, 3676, 0xb80a8925
0, 106604, 106604, 1838, 3676, 0xc392a1da
0, 108442, 108442, 1838, 3676, 0xa076bdda
0, 110280, 110280, 1838, 3676, 0x8f40b4cc
0, 112118, 112118, 1838, 3676, 0x4227fe30
0, 113956, 113956, 1838, 3676, 0x82b31ec8
0, 115794, 115794, 1838, 3676, 0x3ba04042
0, 117632, 117632, 1838, 3676, 0x6fe7440a
0, 119470, 119470, 1838, 3676, 0x23e33177
0, 121308, 121308, 1838, 3676, 0x1f14242c
0, 123146, 123146, 1838, 3676, 0x72931fb0
0, 124984, 124984, 1838, 3676, 0x2b1351c2
0, 126822, 126822, 1838, 3676, 0x6aee7070
0, 128660, 128660, 1838, 3676, 0x237658fa
0, 130498, 130498, 1838, 3676, 0xac001143
0, 132336, 132336, 1838, 3676, 0x1921ee21
0, 134174, 134174, 1838, 3676, 0x80186091
0, 136012, 136012, 1838, 3676, 0xb7f37ede
0, 137850, 137850, 1838, 3676, 0x355227ef
0, 139688, 139688, 1838, 3676, 0xb0411f35
0, 141526, 141526, 1838, 3676, 0xe7c4fe0e
0, 143364, 143364, 1838, 3676, 0x0425984d
0, 145202, 145202, 1838, 3676, 0xfd59dea1
0, 147040, 147040, 1838, 3676, 0xa53d5aab
0, 148878, 148878, 1838, 3676, 0x8bc403c2
0, 150716, 150716, 1838, 3676, 0x7dd638c2
0, 152554, 152554, 1838, 3676, 0x284913eb
0, 154392, 154392, 1838, 3676, 0xec17e83c
0, 156230, 156230, 1838, 3676, 0x40543463
0, 158068, 158068, 1838, 3676, 0x92d81bf8
0, 159906, 159906, 1838, 3676, 0x44ef161d
0, 161744, 161744, 1838, 3676, 0x499df3d5
0, 163582, 163582, 1838, 3676, 0xf98f4d75
0, 165420, 165420, 1838, 3676, 0x8ffe2681
0, 167258, 167258, 1838, 3676, 0x84093bfd
0, 169096, 169096, 1838, 3676, 0x5f9c2e32
0, 170934, 170934, 1838, 3676, 0x8f93c29b
0, 172772, 172772, 1838, 3676, 0xf0ada687
0, 174610, 174610, 1838, 3676, 0x30019db2
0, 176448, 176448, 1838, 3676, 0x06ebace3
0, 178286, 178286, 1838, 3676, 0xc293d944
0, 180124, 180124, 1838, 3676, 0x789ff65e
0, 181962, 181962, 1838, 3676, 0xa2ae13c1
0, 183800, 183800, 1838, 3676, 0xb64f1cd9
0, 185638, 185638, 1838, 3676, 0x18f4e36a
0, 187476, 187476, 1838, 3676, 0xe9ccd0f0
0, 189314, 189314, 1838, 3676, 0xc215b4ab
0, 191152, 191152, 1838, 3676, 0x45b5c410
0, 192990, 192990, 1838, 3676, 0xf84a9939
0, 194828, 194828, 1838, 3676, 0xc8aff71e
0, 196666, 196666, 1838, 3676, 0x76cc3afc
0, 198504, 198504, 1838, 3676, 0x524e1dd6
0, 200342, 200342, 1838, 3676, 0x115a3f10
0, 202180, 202180, 1838, 3676, 0xd2bb51d1
0, 204018, 204018, 1838, 3676, 0xe1dbfca5
0, 205856, 205856, 1838, 3676, 0xc428f070
0, 207694, 207694, 1838, 3676, 0x6aa4dddf
0, 209532, 209532, 1838, 3676, 0xa0428f08
0, 211370, 211370, 1838, 3676, 0x8fd7e256
0, 213208, 213208, 1838, 3676, 0x41cb1787
0, 215046, 215046, 1838, 3676, 0xe348568e
0, 216884, 216884, 1838, 3676, 0x79091a0c
0, 218722, 218722, 1838, 3676, 0x592f6f2e
0, 220560, 220560, 1838, 3676, 0xa151448f
0, 222398, 222398, 1838, 3676, 0xb3402e7a
0, 224236, 224236, 1838, 3676, 0x74112e27
0, 226074, 226074, 1838, 3676, 0xba090659
0, 227912, 227912, 1838, 3676, 0xa0451f81
0, 229750, 229750, 1838, 3676, 0x09c7393a
0, 231588, 231588, 1838, 3676, 0xceb4e340
0, 233426, 233426, 1838, 3676, 0x0440291a
0, 235264, 235264, 1838, 3676, 0xb7b930c4
0, 237102, 237102, 1838, 3676, 0x1a2afa4a
0, 238940, 238940, 1838, 3676, 0x414fee56
0, 240778, 240778, 1838, 3676, 0x5e26bc97
0, 242616, 242616, 1838, 3676, 0x780e0481
0, 244454, 244454, 1838, 3676, 0xb6dfb9c5
0, 246292, 246292, 1838, 3676, 0x447b36ca
0, 248130, 248130, 1838, 3676, 0x601c3067
0, 249968, 249968, 1838, 3676, 0x199f2f8d
0, 251806, 251806, 1838, 3676, 0x98645b08
#tb 0: 1/12
#tb 1: 1/22050
0, 0, 0, 1, 153600, 0x00000000
1, 0, 0, 88224, 176448, 0x541ddc55
0, 1, 1, 1, 153600, 0x9c77862c
0, 2, 2, 1, 153600, 0xd487c33c
0, 3, 3, 1, 153600, 0x5c00c01c
......@@ -50,136 +48,46 @@
0, 46, 46, 1, 153600, 0xc0bc6080
0, 47, 47, 1, 153600, 0xb8d968ed
0, 48, 48, 1, 153600, 0x893e2348
1, 88224, 88224, 1838, 3676, 0xaf455081
0, 49, 49, 1, 153600, 0x6cd01834
1, 90062, 90062, 1838, 3676, 0x27ef4e91
0, 50, 50, 1, 153600, 0x9e6926c5
1, 91900, 91900, 1838, 3676, 0xd1d986a3
0, 51, 51, 1, 153600, 0x4b57a4ea
1, 93738, 93738, 1838, 3676, 0xaaa2b589
0, 52, 52, 1, 153600, 0xaab2cfcd
1, 95576, 95576, 1838, 3676, 0x6e794ff9
0, 53, 53, 1, 153600, 0xffbb334d
1, 97414, 97414, 1838, 3676, 0x266351f1
0, 54, 54, 1, 153600, 0x4b37e5a9
1, 99252, 99252, 1838, 3676, 0xdeae50b2
0, 55, 55, 1, 153600, 0x3486dee0
1, 101090, 101090, 1838, 3676, 0x90f1f96a
0, 56, 56, 1, 153600, 0xa7185454
1, 102928, 102928, 1838, 3676, 0xea07adf9
0, 57, 57, 1, 153600, 0xec29b8c2
1, 104766, 104766, 1838, 3676, 0xb80a8925
0, 58, 58, 1, 153600, 0x01e562ba
1, 106604, 106604, 1838, 3676, 0xc392a1da
0, 59, 59, 1, 153600, 0xe695cda3
1, 108442, 108442, 1838, 3676, 0xa076bdda
0, 60, 60, 1, 153600, 0xf6b59dac
1, 110280, 110280, 1838, 3676, 0x8f40b4cc
0, 61, 61, 1, 153600, 0xb308206b
1, 112118, 112118, 1838, 3676, 0x4227fe30
0, 62, 62, 1, 153600, 0xcc6ede4a
1, 113956, 113956, 1838, 3676, 0x82b31ec8
0, 63, 63, 1, 153600, 0xd9f8071c
1, 115794, 115794, 1838, 3676, 0x3ba04042
0, 64, 64, 1, 153600, 0xfb434821
1, 117632, 117632, 1838, 3676, 0x6fe7440a
0, 65, 65, 1, 153600, 0x84c97077
1, 119470, 119470, 1838, 3676, 0x23e33177
0, 66, 66, 1, 153600, 0x82dc5217
1, 121308, 121308, 1838, 3676, 0x1f14242c
0, 67, 67, 1, 153600, 0xdbfd0ba8
1, 123146, 123146, 1838, 3676, 0x72931fb0
0, 68, 68, 1, 153600, 0x3d71058e
1, 124984, 124984, 1838, 3676, 0x2b1351c2
0, 69, 69, 1, 153600, 0x3027b928
1, 126822, 126822, 1838, 3676, 0x6aee7070
0, 70, 70, 1, 153600, 0x792ae3bd
1, 128660, 128660, 1838, 3676, 0x237658fa
0, 71, 71, 1, 153600, 0x36db00a7
1, 130498, 130498, 1838, 3676, 0xac001143
0, 72, 72, 1, 153600, 0x4484e720
1, 132336, 132336, 1838, 3676, 0x1921ee21
0, 73, 73, 1, 153600, 0xfaa76cdc
1, 134174, 134174, 1838, 3676, 0x80186091
0, 74, 74, 1, 153600, 0x9f1e4c7e
1, 136012, 136012, 1838, 3676, 0xb7f37ede
0, 75, 75, 1, 153600, 0x4b545d88
1, 137850, 137850, 1838, 3676, 0x355227ef
0, 76, 76, 1, 153600, 0xa11cfd15
1, 139688, 139688, 1838, 3676, 0xb0411f35
0, 77, 77, 1, 153600, 0x9f5d49c4
1, 141526, 141526, 1838, 3676, 0xe7c4fe0e
0, 78, 78, 1, 153600, 0x7a496740
1, 143364, 143364, 1838, 3676, 0x0425984d
0, 79, 79, 1, 153600, 0x98477803
1, 145202, 145202, 1838, 3676, 0xfd59dea1
0, 80, 80, 1, 153600, 0xa5fc20f8
1, 147040, 147040, 1838, 3676, 0xa53d5aab
0, 81, 81, 1, 153600, 0x344ff96e
1, 148878, 148878, 1838, 3676, 0x8bc403c2
0, 82, 82, 1, 153600, 0x20c91746
1, 150716, 150716, 1838, 3676, 0x7dd638c2
0, 83, 83, 1, 153600, 0x7c59b379
1, 152554, 152554, 1838, 3676, 0x284913eb
0, 84, 84, 1, 153600, 0x38e3b86d
1, 154392, 154392, 1838, 3676, 0xec17e83c
0, 85, 85, 1, 153600, 0xff25a440
1, 156230, 156230, 1838, 3676, 0x40543463
0, 86, 86, 1, 153600, 0xa1f66533
1, 158068, 158068, 1838, 3676, 0x92d81bf8
0, 87, 87, 1, 153600, 0xe136260a
1, 159906, 159906, 1838, 3676, 0x44ef161d
0, 88, 88, 1, 153600, 0x048ccf56
1, 161744, 161744, 1838, 3676, 0x499df3d5
0, 89, 89, 1, 153600, 0x65f68a24
1, 163582, 163582, 1838, 3676, 0xf98f4d75
0, 90, 90, 1, 153600, 0xf32b385a
1, 165420, 165420, 1838, 3676, 0x8ffe2681
0, 91, 91, 1, 153600, 0x3e930a8f
1, 167258, 167258, 1838, 3676, 0x84093bfd
1, 169096, 169096, 1838, 3676, 0x5f9c2e32
1, 170934, 170934, 1838, 3676, 0x8f93c29b
1, 172772, 172772, 1838, 3676, 0xf0ada687
1, 174610, 174610, 1838, 3676, 0x30019db2
1, 176448, 176448, 1838, 3676, 0x06ebace3
1, 178286, 178286, 1838, 3676, 0xc293d944
1, 180124, 180124, 1838, 3676, 0x789ff65e
1, 181962, 181962, 1838, 3676, 0xa2ae13c1
1, 183800, 183800, 1838, 3676, 0xb64f1cd9
1, 185638, 185638, 1838, 3676, 0x18f4e36a
1, 187476, 187476, 1838, 3676, 0xe9ccd0f0
1, 189314, 189314, 1838, 3676, 0xc215b4ab
1, 191152, 191152, 1838, 3676, 0x45b5c410
1, 192990, 192990, 1838, 3676, 0xf84a9939
1, 194828, 194828, 1838, 3676, 0xc8aff71e
1, 196666, 196666, 1838, 3676, 0x76cc3afc
1, 198504, 198504, 1838, 3676, 0x524e1dd6
1, 200342, 200342, 1838, 3676, 0x115a3f10
1, 202180, 202180, 1838, 3676, 0xd2bb51d1
1, 204018, 204018, 1838, 3676, 0xe1dbfca5
1, 205856, 205856, 1838, 3676, 0xc428f070
1, 207694, 207694, 1838, 3676, 0x6aa4dddf
1, 209532, 209532, 1838, 3676, 0xa0428f08
1, 211370, 211370, 1838, 3676, 0x8fd7e256
1, 213208, 213208, 1838, 3676, 0x41cb1787
1, 215046, 215046, 1838, 3676, 0xe348568e
1, 216884, 216884, 1838, 3676, 0x79091a0c
1, 218722, 218722, 1838, 3676, 0x592f6f2e
1, 220560, 220560, 1838, 3676, 0xa151448f
1, 222398, 222398, 1838, 3676, 0xb3402e7a
1, 224236, 224236, 1838, 3676, 0x74112e27
1, 226074, 226074, 1838, 3676, 0xba090659
1, 227912, 227912, 1838, 3676, 0xa0451f81
1, 229750, 229750, 1838, 3676, 0x09c7393a
1, 231588, 231588, 1838, 3676, 0xceb4e340
1, 233426, 233426, 1838, 3676, 0x0440291a
1, 235264, 235264, 1838, 3676, 0xb7b930c4
1, 237102, 237102, 1838, 3676, 0x1a2afa4a
1, 238940, 238940, 1838, 3676, 0x414fee56
1, 240778, 240778, 1838, 3676, 0x5e26bc97
1, 242616, 242616, 1838, 3676, 0x780e0481
1, 244454, 244454, 1838, 3676, 0xb6dfb9c5
1, 246292, 246292, 1838, 3676, 0x447b36ca
1, 248130, 248130, 1838, 3676, 0x601c3067
1, 249968, 249968, 1838, 3676, 0x199f2f8d
1, 251806, 251806, 1838, 3676, 0x98645b08
#tb 0: 1/22050
0, 0, 0, 1462, 5848, 0xea04292b
0, 1462, 1462, 1472, 5888, 0x0e59e942
0, 2934, 2934, 1472, 5888, 0x56d480f6
0, 4406, 4406, 1472, 5888, 0xcb560b22
0, 5878, 5878, 1472, 5888, 0xca26865b
0, 7350, 7350, 1472, 5888, 0xa434392f
0, 8822, 8822, 1472, 5888, 0xa0615fe4
0, 10294, 10294, 1472, 5888, 0x85b241cd
0, 11766, 11766, 1472, 5888, 0x2c417a43
0, 13238, 13238, 1472, 5888, 0x2d5ed665
0, 14710, 14710, 1472, 5888, 0x37267a2d
0, 16182, 16182, 1472, 5888, 0x1f803c67
0, 17654, 17654, 1472, 5888, 0xfb7940ef
0, 19126, 19126, 1472, 5888, 0x1a5371e8
0, 20598, 20598, 1472, 5888, 0x37e29b21
0, 22070, 22070, 1462, 5848, 0x70065769
0, 23532, 23532, 1472, 5888, 0xaf624f3d
0, 25004, 25004, 1472, 5888, 0x8f5e5b57
0, 26476, 26476, 1472, 5888, 0x93545968
0, 27948, 27948, 1472, 5888, 0x915f268f
0, 29420, 29420, 1472, 5888, 0x9cd48ac4
0, 30892, 30892, 1472, 5888, 0x812c8e13
0, 32364, 32364, 1472, 5888, 0xe794a2a7
0, 33836, 33836, 1472, 5888, 0x4a056e4b
0, 35308, 35308, 1472, 5888, 0xa3589992
0, 36780, 36780, 1472, 5888, 0x19ea7ec5
0, 38252, 38252, 1472, 5888, 0x422d5097
0, 39724, 39724, 1472, 5888, 0xc9fd963f
0, 41196, 41196, 1472, 5888, 0xc556a5ea
0, 42668, 42668, 1472, 5888, 0x51557e0f
0, 44140, 44140, 1462, 5848, 0x4903ad21
0, 45602, 45602, 1472, 5888, 0xb1c85e85
0, 47074, 47074, 1472, 5888, 0x68963d65
0, 48546, 48546, 1472, 5888, 0x62a3124e
0, 50018, 50018, 1472, 5888, 0x4ff1878f
0, 51490, 51490, 1472, 5888, 0x8b09ac18
0, 52962, 52962, 1472, 5888, 0x67d85338
0, 54434, 54434, 1472, 5888, 0x82eca0a6
0, 55906, 55906, 1472, 5888, 0x81a17eb8
0, 57378, 57378, 1472, 5888, 0x7108478c
0, 58850, 58850, 1472, 5888, 0xbfc18b09
0, 60322, 60322, 1472, 5888, 0xad93711f
0, 61794, 61794, 1472, 5888, 0xf8d25e39
0, 63266, 63266, 1472, 5888, 0x41edd04e
0, 64738, 64738, 1472, 5888, 0xa6557ee2
0, 66210, 66210, 1462, 5848, 0xc14d5456
0, 67672, 67672, 1472, 5888, 0x20a7821f
0, 69144, 69144, 1472, 5888, 0x9f1a8f9d
0, 70616, 70616, 1472, 5888, 0x2f3c6cc8
0, 72088, 72088, 1472, 5888, 0x757c894a
0, 73560, 73560, 1472, 5888, 0x483e98bb
0, 75032, 75032, 1472, 5888, 0x84289c75
0, 76504, 76504, 1472, 5888, 0xf79d5a91
0, 77976, 77976, 1472, 5888, 0x395b5228
0, 79448, 79448, 1472, 5888, 0x9c937a14
0, 80920, 80920, 1472, 5888, 0x40c169cf
0, 82392, 82392, 1472, 5888, 0x3e7f99b0
0, 83864, 83864, 1472, 5888, 0xd4de993e
0, 85336, 85336, 1472, 5888, 0xae856b09
0, 86808, 86808, 1472, 5888, 0xa2369c95
0, 88280, 88280, 1462, 5848, 0x992d516b
0, 89742, 89742, 1472, 5888, 0xcd785ba9
0, 91214, 91214, 1472, 5888, 0x55ea3bce
0, 92686, 92686, 1472, 5888, 0xf06d4bbf
0, 94158, 94158, 1472, 5888, 0x2a9d4c1a
0, 95630, 95630, 1472, 5888, 0xd5e348a3
0, 97102, 97102, 1472, 5888, 0x6431a24c
0, 98574, 98574, 1472, 5888, 0x41f9908c
0, 100046, 100046, 1472, 5888, 0x0ed99656
0, 101518, 101518, 1472, 5888, 0x635a6392
0, 102990, 102990, 1472, 5888, 0x690c750c
0, 104462, 104462, 1472, 5888, 0xf9d97b23
0, 105934, 105934, 1472, 5888, 0x75e1606b
0, 107406, 107406, 1472, 5888, 0x1bcb43b0
0, 108878, 108878, 1472, 5888, 0x48c295cb
0, 110350, 110350, 1462, 5848, 0xe47f7b5d
0, 111812, 111812, 1472, 5888, 0x20be7f3e
0, 113284, 113284, 1472, 5888, 0x8c2428c4
0, 114756, 114756, 1472, 5888, 0x851379af
0, 116228, 116228, 1472, 5888, 0x5916647d
0, 117700, 117700, 1472, 5888, 0xef9c6281
0, 119172, 119172, 1472, 5888, 0x49660d32
0, 120644, 120644, 1472, 5888, 0x62cf36a1
0, 122116, 122116, 1472, 5888, 0x56dff39c
0, 123588, 123588, 1472, 5888, 0x4e6b5b02
0, 125060, 125060, 1472, 5888, 0xb8697067
0, 126532, 126532, 1472, 5888, 0xcb4e2706
0, 128004, 128004, 1472, 5888, 0x6eaa9669
0, 129476, 129476, 1472, 5888, 0xfd9d7dba
0, 130948, 130948, 1472, 5888, 0xfe137923
0, 132420, 132420, 1462, 5848, 0x1931296f
0, 133882, 133882, 1472, 5888, 0xa09a7c03
0, 135354, 135354, 1472, 5888, 0xded9802d
0, 136826, 136826, 1472, 5888, 0x9f6723b7
0, 138298, 138298, 1472, 5888, 0x3ad02476
0, 139770, 139770, 1472, 5888, 0xa1647e32
0, 141242, 141242, 1472, 5888, 0x728672da
0, 142714, 142714, 1472, 5888, 0x9c098090
0, 144186, 144186, 1472, 5888, 0x32a65ea3
0, 145658, 145658, 1472, 5888, 0xdde141d5
0, 147130, 147130, 1472, 5888, 0x816c5fb4
0, 148602, 148602, 1472, 5888, 0x75e17581
0, 150074, 150074, 1472, 5888, 0x59035469
0, 151546, 151546, 1472, 5888, 0x20d340cd
0, 153018, 153018, 1472, 5888, 0xa89a8790
0, 154490, 154490, 1462, 5848, 0x12b74c34
0, 155952, 155952, 1472, 5888, 0xcd3b3bef
0, 157424, 157424, 1472, 5888, 0xe5c44bf3
0, 158896, 158896, 1472, 5888, 0xb82c4fa4
0, 160368, 160368, 1472, 5888, 0x05b2443a
0, 161840, 161840, 1472, 5888, 0x78028172
0, 163312, 163312, 1472, 5888, 0xdfcac19a
0, 164784, 164784, 1472, 5888, 0x0761a0b9
0, 166256, 166256, 1472, 5888, 0x77d88607
0, 167728, 167728, 1472, 5888, 0xdd7f4d77
0, 169200, 169200, 1472, 5888, 0x366bf58a
0, 170672, 170672, 1472, 5888, 0x9a3d59b5
0, 172144, 172144, 1472, 5888, 0x16cb777f
0, 173616, 173616, 1472, 5888, 0x1d4afe64
0, 175088, 175088, 1472, 5888, 0xc0fe1e73
0, 176560, 176560, 1462, 5848, 0xcceb69c8
0, 178022, 178022, 1472, 5888, 0x89449643
0, 179494, 179494, 1472, 5888, 0x5fe595b7
0, 180966, 180966, 1472, 5888, 0x400a8c77
#tb 0: 1/10
#tb 1: 1/11025
0, 0, 0, 1, 921600, 0x0d03844f
1, 0, 0, 500, 1000, 0x64cd9403
1, 500, 500, 500, 1000, 0xa4ef8a9d
1, 1000, 1000, 500, 1000, 0x75c19868
0, 1, 1, 1, 921600, 0x0d03844f
1, 1500, 1500, 500, 1000, 0x93db6f79
1, 2000, 2000, 500, 1000, 0x6835625d
0, 2, 2, 1, 921600, 0x649cdcea
1, 2500, 2500, 500, 1000, 0xb3affa8f
1, 3000, 3000, 500, 1000, 0x159fdcc8
0, 3, 3, 1, 921600, 0x649cdcea
1, 3500, 3500, 500, 1000, 0x79f9f7f1
1, 4000, 4000, 500, 1000, 0xd7d1131e
0, 4, 4, 1, 921600, 0x9c7f22e8
1, 4500, 4500, 500, 1000, 0x52a6f797
1, 5000, 5000, 500, 1000, 0x748202ca
1, 5500, 5500, 500, 1000, 0x0ef92449
0, 5, 5, 1, 921600, 0x9c7f22e8
1, 6000, 6000, 500, 1000, 0x6a3760ab
1, 6500, 6500, 500, 1000, 0xce5c5abf
0, 6, 6, 1, 921600, 0x3451514a
1, 7000, 7000, 500, 1000, 0x23396792
1, 7500, 7500, 500, 1000, 0xa5276238
0, 7, 7, 1, 921600, 0x3451514a
1, 8000, 8000, 500, 1000, 0x288adf1b
1, 8500, 8500, 500, 1000, 0xe7de6fb2
0, 8, 8, 1, 921600, 0x8f19f600
1, 9000, 9000, 500, 1000, 0x2c2c707f
1, 9500, 9500, 500, 1000, 0xd66d6daf
0, 9, 9, 1, 921600, 0x8f19f600
1, 10000, 10000, 500, 1000, 0xbcea7d64
1, 10500, 10500, 500, 1000, 0x766feea5
1, 11000, 11000, 500, 1000, 0xd2e1d63a
0, 10, 10, 1, 921600, 0x07e7445b
1, 11500, 11500, 500, 1000, 0x2f7ef4ed
1, 12000, 12000, 500, 1000, 0xb655cba4
0, 11, 11, 1, 921600, 0x07e7445b
1, 12500, 12500, 500, 1000, 0x4507d37b
1, 13000, 13000, 500, 1000, 0x0c57f794
0, 12, 12, 1, 921600, 0x873d1227
1, 13500, 13500, 500, 1000, 0x0ecbe5cc
1, 14000, 14000, 500, 1000, 0x9bf6e345
0, 13, 13, 1, 921600, 0x873d1227
1, 14500, 14500, 500, 1000, 0xc461443c
1, 15000, 15000, 500, 1000, 0xad9657bf
0, 14, 14, 1, 921600, 0xbef62d86
1, 15500, 15500, 500, 1000, 0x466fe91c
1, 16000, 16000, 500, 1000, 0x9ee377fe
1, 16500, 16500, 500, 1000, 0x09956428
0, 15, 15, 1, 921600, 0xbef62d86
1, 17000, 17000, 500, 1000, 0x9b285f0a
1, 17500, 17500, 500, 1000, 0x0a3e61a6
0, 16, 16, 1, 921600, 0xcf84fee4
1, 18000, 18000, 500, 1000, 0xacc25d6b
1, 18500, 18500, 500, 1000, 0x377be319
0, 17, 17, 1, 921600, 0xcf84fee4
1, 19000, 19000, 500, 1000, 0xe4890504
1, 19500, 19500, 500, 1000, 0xe90a6497
0, 18, 18, 1, 921600, 0x5639e670
1, 20000, 20000, 500, 1000, 0xd00fe950
1, 20500, 20500, 500, 1000, 0xf195eb44
0, 19, 19, 1, 921600, 0x5639e670
1, 21000, 21000, 500, 1000, 0xa491f3ef
1, 21500, 21500, 500, 1000, 0x2c036e18
1, 22000, 22000, 500, 1000, 0x52d65e2a
This diff is collapsed.
#tb 0: 1/30
#tb 1: 1/44100
0, 0, 0, 1, 107520, 0xa6c9fdd2
1, 0, 0, 22048, 88192, 0x23bb50ae
0, 2, 2, 1, 107520, 0x61eb28c1
0, 4, 4, 1, 107520, 0x45e20af7
0, 6, 6, 1, 107520, 0x366970fc
......@@ -9,133 +7,105 @@
0, 10, 10, 1, 107520, 0xcf7bac98
0, 12, 12, 1, 107520, 0x222eba53
0, 14, 14, 1, 107520, 0x74e255a1
1, 22048, 22048, 11028, 44112, 0x79600f01
0, 16, 16, 1, 107520, 0xc19eec6f
0, 18, 18, 1, 107520, 0xa3880681
0, 20, 20, 1, 107520, 0x957878db
0, 22, 22, 1, 107520, 0x18340692
1, 33076, 33076, 11024, 44096, 0x09dbf7aa
0, 24, 24, 1, 107520, 0x9970f24d
0, 26, 26, 1, 107520, 0xf08618aa
0, 28, 28, 1, 107520, 0xee7324f0
0, 30, 30, 1, 107520, 0xe15025b3
1, 44100, 44100, 11028, 44112, 0x18fed048
0, 32, 32, 1, 107520, 0x8afa312e
0, 34, 34, 1, 107520, 0x717a7d0f
0, 36, 36, 1, 107520, 0x355c6e23
1, 55128, 55128, 11028, 44112, 0x030d35ef
0, 38, 38, 1, 107520, 0x7015a50f
0, 40, 40, 1, 107520, 0xcdfc1a16
0, 42, 42, 1, 107520, 0x38d929e7
0, 44, 44, 1, 107520, 0x52913423
1, 66156, 66156, 11028, 44112, 0xc23154d5
0, 46, 46, 1, 107520, 0xe2c91c10
0, 48, 48, 1, 107520, 0x85516e9c
0, 50, 50, 1, 107520, 0xd1626030
0, 52, 52, 1, 107520, 0xea7b16de
1, 77184, 77184, 11016, 44064, 0xe4713ee7
0, 54, 54, 1, 107520, 0xa33eaa0d
0, 56, 56, 1, 107520, 0x8e3be6a6
0, 58, 58, 1, 107520, 0x14147bd6
0, 60, 60, 1, 107520, 0x07d54bec
1, 88200, 88200, 11028, 44112, 0xddc19d91
0, 62, 62, 1, 107520, 0xe287a0a7
0, 64, 64, 1, 107520, 0xc023a14d
0, 66, 66, 1, 107520, 0x2437085d
1, 99228, 99228, 11028, 44112, 0x9591522d
0, 68, 68, 1, 107520, 0x63823918
0, 70, 70, 1, 107520, 0xbc17e198
0, 72, 72, 1, 107520, 0x9d99bc81
0, 74, 74, 1, 107520, 0x7e4ec71e
1, 110256, 110256, 11028, 44112, 0x90deb013
0, 76, 76, 1, 107520, 0x55b98376
0, 78, 78, 1, 107520, 0x356d8e9e
0, 80, 80, 1, 107520, 0xf77e8a61
0, 82, 82, 1, 107520, 0x5ae7c8c7
1, 121284, 121284, 11016, 44064, 0x3842d420
0, 84, 84, 1, 107520, 0x8acf9322
0, 86, 86, 1, 107520, 0x40a9177e
0, 88, 88, 1, 107520, 0x3e0e4d8d
0, 90, 90, 1, 107520, 0xd268865b
1, 132300, 132300, 11028, 44112, 0x99c8c3d9
0, 92, 92, 1, 107520, 0x89a4efeb
0, 94, 94, 1, 107520, 0x70ca2478
0, 96, 96, 1, 107520, 0xcc9ec981
1, 143328, 143328, 11028, 44112, 0xffaf3824
0, 98, 98, 1, 107520, 0xf0648459
0, 100, 100, 1, 107520, 0x7e4a4cca
0, 102, 102, 1, 107520, 0xb315dc65
0, 104, 104, 1, 107520, 0x2aecc7b4
1, 154356, 154356, 11028, 44112, 0x3dbe1aef
0, 106, 106, 1, 107520, 0x81742f51
0, 108, 108, 1, 107520, 0x3a1d7571
0, 110, 110, 1, 107520, 0x3a1d7571
0, 112, 112, 1, 107520, 0x3a1d7571
1, 165384, 165384, 11016, 44064, 0xed2c7dfb
0, 114, 114, 1, 107520, 0x3a1d7571
0, 116, 116, 1, 107520, 0x3a1d7571
0, 118, 118, 1, 107520, 0x3a1d7571
0, 120, 120, 1, 107520, 0x3a1d7571
1, 176400, 176400, 11028, 44112, 0x9e475274
0, 122, 122, 1, 107520, 0xe974733e
0, 124, 124, 1, 107520, 0x999c6fbf
0, 126, 126, 1, 107520, 0x26b56b6e
1, 187428, 187428, 11028, 44112, 0x541f05d4
0, 128, 128, 1, 107520, 0xc9f9647b
0, 130, 130, 1, 107520, 0x6d025d00
0, 132, 132, 1, 107520, 0xf9c056c1
0, 134, 134, 1, 107520, 0xa5cc4d0b
1, 198456, 198456, 11028, 44112, 0x09e39025
0, 136, 136, 1, 107520, 0x1a4c4236
0, 138, 138, 1, 107520, 0xa9d538b6
0, 140, 140, 1, 107520, 0x14682d00
0, 142, 142, 1, 107520, 0x6236204f
1, 209484, 209484, 11016, 44064, 0xdc111087
0, 144, 144, 1, 107520, 0x303e14aa
0, 146, 146, 1, 107520, 0x943b0837
0, 148, 148, 1, 107520, 0xfce5fd07
0, 150, 150, 1, 107520, 0xd993f193
1, 220500, 220500, 11028, 44112, 0xb8f86e48
0, 152, 152, 1, 107520, 0x4d48e7b4
0, 154, 154, 1, 107520, 0x61ccdf83
0, 156, 156, 1, 107520, 0xfb4fd608
1, 231528, 231528, 11028, 44112, 0xa1e0c75c
0, 158, 158, 1, 107520, 0x5efdcdb3
0, 160, 160, 1, 107520, 0xb03ec886
0, 162, 162, 1, 107520, 0xf464c343
0, 164, 164, 1, 107520, 0xf464c343
1, 242556, 242556, 11028, 44112, 0x0654dcb0
0, 166, 166, 1, 107520, 0xf464c343
0, 168, 168, 1, 107520, 0xf464c343
0, 170, 170, 1, 107520, 0xf464c343
0, 172, 172, 1, 107520, 0xf464c343
1, 253584, 253584, 11016, 44064, 0xb921e11a
0, 174, 174, 1, 107520, 0xf464c343
0, 176, 176, 1, 107520, 0xf464c343
0, 178, 178, 1, 107520, 0xf464c343
0, 180, 180, 1, 107520, 0xf464c343
1, 264600, 264600, 11028, 44112, 0xe0ac619f
0, 182, 182, 1, 107520, 0xf464c343
0, 184, 184, 1, 107520, 0xf2b2c712
0, 186, 186, 1, 107520, 0xf2b2c712
1, 275628, 275628, 11028, 44112, 0xb07aa65c
0, 188, 188, 1, 107520, 0xf2b2c712
0, 190, 190, 1, 107520, 0xf2b2c712
0, 192, 192, 1, 107520, 0xb95e6bc8
0, 194, 194, 1, 107520, 0x33feee37
1, 286656, 286656, 11028, 44112, 0x24610ff0
0, 196, 196, 1, 107520, 0x36ee3cd5
0, 198, 198, 1, 107520, 0x59096471
0, 200, 200, 1, 107520, 0x53b470c6
0, 202, 202, 1, 107520, 0xdb7c64ff
1, 297684, 297684, 11016, 44064, 0x00000000
0, 204, 204, 1, 107520, 0xe5a1596a
0, 206, 206, 1, 107520, 0x8c8942eb
0, 208, 208, 1, 107520, 0x5ecc379e
0, 210, 210, 1, 107520, 0xea09432a
1, 308700, 308700, 11028, 44112, 0x00000000
0, 212, 212, 1, 107520, 0xe01e6b73
0, 214, 214, 1, 107520, 0x1d13bba8
0, 216, 216, 1, 107520, 0x3a993a6c
1, 319728, 319728, 2200, 8800, 0x00000000
0, 218, 218, 1, 107520, 0x2ede041a
#tb 0: 417/12500
#tb 1: 1/44100
0, 0, 0, 1, 614400, 0x00000000
1, 0, 0, 1447, 5788, 0x916d2db8
1, 1447, 1447, 1472, 5888, 0xc65cb069
0, 1, 1, 1, 614400, 0x00000000
1, 2919, 2919, 1472, 5888, 0xd8ec1acc
0, 2, 2, 1, 614400, 0x3c4ce011
1, 4391, 4391, 1472, 5888, 0xb22af0d6
0, 3, 3, 1, 614400, 0x16e83922
1, 5863, 5863, 1472, 5888, 0x86bb50d9
0, 4, 4, 1, 614400, 0x657a3d4d
1, 7335, 7335, 1472, 5888, 0x7674d923
0, 5, 5, 1, 614400, 0x933a08b0
1, 8807, 8807, 1472, 5888, 0xb97c5500
0, 6, 6, 1, 614400, 0xfcd5f76e
1, 10279, 10279, 1472, 5888, 0xecea1249
0, 7, 7, 1, 614400, 0xd0990cf8
1, 11751, 11751, 1472, 5888, 0x0f4fea81
0, 8, 8, 1, 614400, 0x02131686
1, 13223, 13223, 1472, 5888, 0x997914d8
0, 9, 9, 1, 614400, 0x4cf53656
1, 14695, 14695, 1472, 5888, 0xd012f03a
0, 10, 10, 1, 614400, 0x7d1960c0
1, 16167, 16167, 1472, 5888, 0x03fd5248
0, 11, 11, 1, 614400, 0x5d9f696f
1, 17639, 17639, 1472, 5888, 0x3041a288
0, 12, 12, 1, 614400, 0x54e06663
1, 19111, 19111, 1472, 5888, 0xe6105de1
0, 13, 13, 1, 614400, 0x4c1eade1
1, 20583, 20583, 1472, 5888, 0xaa38c7bd
0, 14, 14, 1, 614400, 0x4bd3bfff
1, 22055, 22055, 1472, 5888, 0xbfff702c
0, 15, 15, 1, 614400, 0xab86c041
1, 23527, 23527, 1472, 5888, 0xbe4319a3
0, 16, 16, 1, 614400, 0xbb2bfbf4
1, 24999, 24999, 1472, 5888, 0x2e89d262
0, 17, 17, 1, 614400, 0x43822e15
1, 26471, 26471, 1472, 5888, 0x10992b9c
0, 18, 18, 1, 614400, 0x835e352c
1, 27943, 27943, 1472, 5888, 0x972904bf
0, 19, 19, 1, 614400, 0x72cc538f
1, 29415, 29415, 1472, 5888, 0x0093501c
0, 20, 20, 1, 614400, 0x20bb6e30
1, 30887, 30887, 1472, 5888, 0x8994ad0e
0, 21, 21, 1, 614400, 0xfb079f52
1, 32359, 32359, 1472, 5888, 0x9db37d21
0, 22, 22, 1, 614400, 0x759bc4d6
1, 33831, 33831, 1472, 5888, 0xa8c7300f
0, 23, 23, 1, 614400, 0xd116fc3b
1, 35303, 35303, 1472, 5888, 0x1b7073b5
0, 24, 24, 1, 614400, 0x5c06efd2
1, 36775, 36775, 1472, 5888, 0x56ad7f7b
0, 25, 25, 1, 614400, 0x61641ecd
1, 38247, 38247, 1472, 5888, 0x9706a8fb
0, 26, 26, 1, 614400, 0x6c8d48a0
1, 39719, 39719, 1472, 5888, 0x16c9420e
0, 27, 27, 1, 614400, 0x64725eed
1, 41191, 41191, 1472, 5888, 0x3e11be0a
0, 28, 28, 1, 614400, 0x88f9a8ca
1, 42663, 42663, 1472, 5888, 0x3e534a32
0, 29, 29, 1, 614400, 0xcf1cbcd9
1, 44135, 44135, 1447, 5788, 0x0ffae5f4
0, 30, 30, 1, 614400, 0x75a3ce24
1, 45582, 45582, 1472, 5888, 0xc2018f82
0, 31, 31, 1, 614400, 0x3bf80ce7
1, 47054, 47054, 1472, 5888, 0x2a11f529
0, 32, 32, 1, 614400, 0xd4011d7c
1, 48526, 48526, 1472, 5888, 0xec282167
0, 33, 33, 1, 614400, 0xd569716b
1, 49998, 49998, 1472, 5888, 0xd61b5a05
0, 34, 34, 1, 614400, 0xfd626b6b
1, 51470, 51470, 1472, 5888, 0x61de2741
0, 35, 35, 1, 614400, 0xc856dbaf
1, 52942, 52942, 1472, 5888, 0x17aaff8c
0, 36, 36, 1, 614400, 0x0e56e68e
1, 54414, 54414, 1472, 5888, 0xd40cd7a6
0, 37, 37, 1, 614400, 0x5b29ecc9
1, 55886, 55886, 1472, 5888, 0x840840d4
0, 38, 38, 1, 614400, 0xe83c0804
1, 57358, 57358, 1472, 5888, 0x7c97ddcf
0, 39, 39, 1, 614400, 0xebdd3d61
1, 58830, 58830, 1472, 5888, 0xed9150f7
0, 40, 40, 1, 614400, 0x7f4c5b56
1, 60302, 60302, 1472, 5888, 0xbccf973e
0, 41, 41, 1, 614400, 0xb4019155
1, 61774, 61774, 1472, 5888, 0x74bda5ea
0, 42, 42, 1, 614400, 0xffdda515
1, 63246, 63246, 1472, 5888, 0xd083892a
0, 43, 43, 1, 614400, 0x5271c695
1, 64718, 64718, 1472, 5888, 0x16e444b2
0, 44, 44, 1, 614400, 0x8526d3c1
1, 66190, 66190, 1472, 5888, 0x68a9cedb
0, 45, 45, 1, 614400, 0x5accf7a6
1, 67662, 67662, 1472, 5888, 0x80849f36
0, 46, 46, 1, 614400, 0x959017aa
1, 69134, 69134, 1472, 5888, 0x63cb7df9
0, 47, 47, 1, 614400, 0x22f450f6
1, 70606, 70606, 1472, 5888, 0xf90f754d
0, 48, 48, 1, 614400, 0x2e3d6f37
1, 72078, 72078, 1472, 5888, 0x9c2c867d
0, 49, 49, 1, 614400, 0x0db9d89f
1, 73550, 73550, 1472, 5888, 0x337994a4
1, 75022, 75022, 1472, 5888, 0xf354a28d
1, 76494, 76494, 1472, 5888, 0x70933738
1, 77966, 77966, 1472, 5888, 0x3c019219
1, 79438, 79438, 1472, 5888, 0xe0c21295
1, 80910, 80910, 1472, 5888, 0x21869515
1, 82382, 82382, 1472, 5888, 0xe9b1ec7d
1, 83854, 83854, 1472, 5888, 0x57825497
1, 85326, 85326, 1472, 5888, 0xae02ebeb
1, 86798, 86798, 1472, 5888, 0x0c62e14f
1, 88270, 88270, 1447, 5788, 0x8a255f8f
1, 89717, 89717, 1472, 5888, 0x38993359
1, 91189, 91189, 1472, 5888, 0x390baf95
1, 92661, 92661, 1472, 5888, 0xb72c72ea
1, 94133, 94133, 1472, 5888, 0xbbd3c6fe
1, 95605, 95605, 1472, 5888, 0xefb26f0a
1, 97077, 97077, 1472, 5888, 0xcc404dd0
1, 98549, 98549, 1472, 5888, 0xffa23082
1, 100021, 100021, 1472, 5888, 0xd0c43567
1, 101493, 101493, 1472, 5888, 0x4d3b7958
1, 102965, 102965, 1472, 5888, 0x47125aa1
1, 104437, 104437, 1472, 5888, 0x99286cf3
1, 105909, 105909, 1472, 5888, 0x478d61e2
1, 107381, 107381, 1472, 5888, 0xac65b47e
1, 108853, 108853, 1472, 5888, 0x333c1d1a
1, 110325, 110325, 1472, 5888, 0x8f960ecf
1, 111797, 111797, 1472, 5888, 0x58f76aec
1, 113269, 113269, 1472, 5888, 0xb5e0dded
1, 114741, 114741, 1472, 5888, 0xaf1a8f9a
This diff is collapsed.
This diff is collapsed.
#tb 0: 1/44100
0, 0, 0, 1471, 5884, 0x00000000
0, 1471, 1471, 1471, 5884, 0x00000000
0, 2942, 2942, 1472, 5888, 0x00000000
0, 4414, 4414, 1471, 5884, 0x00000000
0, 5885, 5885, 1472, 5888, 0x00000000
0, 7357, 7357, 1471, 5884, 0x00000000
0, 8828, 8828, 1472, 5888, 0x00000000
0, 10300, 10300, 1471, 5884, 0x00000000
0, 11771, 11771, 1472, 5888, 0x00000000
0, 13243, 13243, 1471, 5884, 0x00000000
0, 14714, 14714, 1472, 5888, 0x174b2bd4
0, 16186, 16186, 1471, 5884, 0xfab9563d
0, 17657, 17657, 1472, 5888, 0x0129a4f5
0, 19129, 19129, 1471, 5884, 0xf12b15dd
0, 20600, 20600, 1472, 5888, 0x60c8c922
0, 22072, 22072, 1471, 5884, 0x85693c81
0, 23543, 23543, 1472, 5888, 0xcefcf0e0
0, 25015, 25015, 1471, 5884, 0x243974ff
0, 26486, 26486, 1471, 5884, 0x9101b901
0, 27957, 27957, 1472, 5888, 0xe3c68cb9
0, 29429, 29429, 1471, 5884, 0x80f2ff5f
0, 30900, 30900, 1472, 5888, 0xfc2d19dc
0, 32372, 32372, 1471, 5884, 0xb6e0af21
0, 33843, 33843, 1472, 5888, 0x476e74ff
0, 35315, 35315, 1471, 5884, 0x3921bc7f
0, 36786, 36786, 1472, 5888, 0x44180a3f
0, 38258, 38258, 1471, 5884, 0x01b5a119
0, 39729, 39729, 1472, 5888, 0xdd7ad621
0, 41201, 41201, 1471, 5884, 0xadabe898
0, 42672, 42672, 1472, 5888, 0x2141ff8e
0, 44144, 44144, 1471, 5884, 0xfb5118fb
0, 45615, 45615, 1472, 5888, 0x06d31461
0, 47087, 47087, 1471, 5884, 0x80ce34c1
0, 48558, 48558, 1472, 5888, 0x72bf392f
0, 50030, 50030, 1471, 5884, 0x9d9237cf
0, 51501, 51501, 1471, 5884, 0xf5c9ce23
0, 52972, 52972, 1472, 5888, 0x12a05dc5
0, 54444, 54444, 1471, 5884, 0xd3ed5d4b
0, 55915, 55915, 1472, 5888, 0x06557401
0, 57387, 57387, 1471, 5884, 0x53d81662
0, 58858, 58858, 1472, 5888, 0xd7e0d98d
0, 60330, 60330, 1471, 5884, 0xdf00752e
0, 61801, 61801, 1472, 5888, 0x82f1d7a9
0, 63273, 63273, 1471, 5884, 0x9cb3aba9
0, 64744, 64744, 1472, 5888, 0xd6f98e91
0, 66216, 66216, 1471, 5884, 0xaa7f7c09
0, 67687, 67687, 1472, 5888, 0xb97a82a7
0, 69159, 69159, 1471, 5884, 0x375a3d53
0, 70630, 70630, 1472, 5888, 0xa0a460cb
0, 72102, 72102, 1471, 5884, 0xe05efbab
0, 73573, 73573, 1472, 5888, 0x95e151f0
0, 75045, 75045, 1471, 5884, 0x44ac688d
0, 76516, 76516, 1471, 5884, 0xfc6d929f
0, 77987, 77987, 1472, 5888, 0x6406c5f1
0, 79459, 79459, 1471, 5884, 0x4ee9e48c
0, 80930, 80930, 1472, 5888, 0xd55d43d0
0, 82402, 82402, 1471, 5884, 0xcae69baf
0, 83873, 83873, 1472, 5888, 0x4c01f1f5
0, 85345, 85345, 1471, 5884, 0xf7d6dab6
0, 86816, 86816, 1472, 5888, 0x1affdeb5
0, 88288, 88288, 1471, 5884, 0x6db72487
0, 89759, 89759, 1472, 5888, 0x4f344e49
0, 91231, 91231, 1471, 5884, 0x2df3827b
0, 92702, 92702, 1472, 5888, 0x1d1fc283
0, 94174, 94174, 1471, 5884, 0x22eb1dd5
0, 95645, 95645, 1472, 5888, 0x734e7093
0, 97117, 97117, 1471, 5884, 0x357c9531
0, 98588, 98588, 1472, 5888, 0x108c102d
0, 100060, 100060, 1471, 5884, 0x96ad26c6
0, 101531, 101531, 1472, 5888, 0x7bea1996
0, 103003, 103003, 1471, 5884, 0x124a1f8e
0, 104474, 104474, 1471, 5884, 0x08d272fb
0, 105945, 105945, 1472, 5888, 0x88832c6b
0, 107417, 107417, 1471, 5884, 0xedf41493
0, 108888, 108888, 1472, 5888, 0xc4f226d7
0, 110360, 110360, 1471, 5884, 0x97730397
0, 111831, 111831, 1472, 5888, 0xbc3540e9
0, 113303, 113303, 1471, 5884, 0x8adfa135
0, 114774, 114774, 1472, 5888, 0x6d4be121
0, 116246, 116246, 1471, 5884, 0xc3daea85
0, 117717, 117717, 1472, 5888, 0x5498e9f0
0, 119189, 119189, 1471, 5884, 0xa0eb691f
0, 120660, 120660, 1472, 5888, 0x775c7c59
0, 122132, 122132, 1471, 5884, 0x9f108fd1
0, 123603, 123603, 1472, 5888, 0x72d53062
0, 125075, 125075, 1471, 5884, 0x13a93faa
0, 126546, 126546, 1472, 5888, 0x64773c8e
0, 128018, 128018, 1471, 5884, 0xaf696999
0, 129489, 129489, 1471, 5884, 0xf45e7e81
0, 130960, 130960, 1472, 5888, 0x00000000
0, 132432, 132432, 1471, 5884, 0x00000000
0, 133903, 133903, 1472, 5888, 0x00000000
0, 135375, 135375, 1471, 5884, 0x00000000
0, 136846, 136846, 1472, 5888, 0x00000000
0, 138318, 138318, 1471, 5884, 0x00000000
0, 139789, 139789, 1472, 5888, 0x00000000
0, 141261, 141261, 1471, 5884, 0x00000000
0, 142732, 142732, 1472, 5888, 0x00000000
0, 144204, 144204, 1471, 5884, 0x00000000
0, 145675, 145675, 1472, 5888, 0x00000000
0, 147147, 147147, 1471, 5884, 0x00000000
0, 148618, 148618, 1472, 5888, 0x00000000
0, 150090, 150090, 1471, 5884, 0x00000000
0, 151561, 151561, 1472, 5888, 0x00000000
0, 153033, 153033, 1471, 5884, 0x00000000
0, 154504, 154504, 1471, 5884, 0x00000000
0, 155975, 155975, 1472, 5888, 0x00000000
0, 157447, 157447, 1471, 5884, 0x00000000
0, 158918, 158918, 1472, 5888, 0x00000000
0, 160390, 160390, 1471, 5884, 0x00000000
0, 161861, 161861, 1472, 5888, 0x00000000
0, 163333, 163333, 1471, 5884, 0x00000000
0, 164804, 164804, 1472, 5888, 0x00000000
0, 166276, 166276, 1471, 5884, 0x00000000
0, 167747, 167747, 1472, 5888, 0x00000000
0, 169219, 169219, 1471, 5884, 0x00000000
0, 170690, 170690, 1472, 5888, 0x00000000
0, 172162, 172162, 1471, 5884, 0xfe4b2bd4
0, 173633, 173633, 1472, 5888, 0x00000000
0, 175105, 175105, 1471, 5884, 0x00000000
0, 176576, 176576, 1472, 5888, 0x00000000
0, 178048, 178048, 1471, 5884, 0x00000000
0, 179519, 179519, 1471, 5884, 0x00000000
0, 180990, 180990, 1472, 5888, 0x00000000
0, 182462, 182462, 1471, 5884, 0x00000000
0, 183933, 183933, 1472, 5888, 0x00000000
0, 185405, 185405, 1471, 5884, 0x00000000
0, 186876, 186876, 1472, 5888, 0x00000000
0, 188348, 188348, 1471, 5884, 0x00000000
0, 189819, 189819, 1472, 5888, 0x00000000
0, 191291, 191291, 1471, 5884, 0x00000000
0, 192762, 192762, 1472, 5888, 0x00000000
0, 194234, 194234, 1471, 5884, 0x00000000
0, 195705, 195705, 1472, 5888, 0x00000000
0, 197177, 197177, 1471, 5884, 0x00000000
0, 198648, 198648, 1472, 5888, 0x00000000
0, 200120, 200120, 1471, 5884, 0x00000000
0, 201591, 201591, 1472, 5888, 0x00000000
0, 203063, 203063, 1471, 5884, 0x00000000
0, 204534, 204534, 1472, 5888, 0x00000000
0, 206006, 206006, 1471, 5884, 0x00000000
0, 207477, 207477, 1262, 5048, 0x00000000
#tb 0: 1/12
#tb 1: 1/22050
0, 0, 0, 1, 9600, 0xc5921aa2
1, 0, 0, 1020, 2040, 0x0a157db4
1, 1020, 1020, 1020, 2040, 0x00c63e08
0, 1, 1, 1, 9600, 0x9032fc52
1, 2040, 2040, 1020, 2040, 0xacf2a25b
1, 3060, 3060, 1020, 2040, 0xd6189e85
0, 2, 2, 1, 9600, 0x7db0038e
1, 4080, 4080, 1020, 2040, 0x8276f843
1, 5100, 5100, 1020, 2040, 0xadebae73
0, 3, 3, 1, 9600, 0x95b73c41
1, 6120, 6120, 1020, 2040, 0x5da76697
1, 7140, 7140, 1020, 2040, 0x469d0ea7
0, 4, 4, 1, 9600, 0x531e4189
1, 8160, 8160, 1020, 2040, 0x0d7412e1
1, 9180, 9180, 1020, 2040, 0x2f2cc63f
0, 5, 5, 1, 9600, 0xb73390ec
1, 10200, 10200, 1020, 2040, 0x10106eb7
0, 6, 6, 1, 9600, 0x958e8221
1, 11220, 11220, 1020, 2040, 0x300124c7
1, 12240, 12240, 1020, 2040, 0xa329f8e8
0, 7, 7, 1, 9600, 0xd393f8a6
1, 13260, 13260, 1020, 2040, 0xcea35ca5
1, 14280, 14280, 1020, 2040, 0x55105aef
0, 8, 8, 1, 9600, 0xa085da1c
1, 15300, 15300, 1020, 2040, 0x08980ce1
1, 16320, 16320, 1020, 2040, 0x367faf24
0, 9, 9, 1, 9600, 0x57ace74f
1, 17340, 17340, 1020, 2040, 0x75bfef06
1, 18360, 18360, 1020, 2040, 0x34f1daf4
0, 10, 10, 1, 9600, 0x5d11a308
1, 19380, 19380, 1020, 2040, 0x97050317
0, 11, 11, 1, 9600, 0x13e133b7
1, 20400, 20400, 1020, 2040, 0xd297c536
1, 21420, 21420, 1020, 2040, 0xa8abad5a
0, 12, 12, 1, 9600, 0x494edb86
1, 22440, 22440, 1020, 2040, 0x445ce8e0
1, 23460, 23460, 1020, 2040, 0xa3f4d940
0, 13, 13, 1, 9600, 0x43a448ea
1, 24480, 24480, 1020, 2040, 0x0ebb7b26
1, 25500, 25500, 1020, 2040, 0x4372f6f6
0, 14, 14, 1, 9600, 0x3562d35b
1, 26520, 26520, 1020, 2040, 0xd4365079
1, 27540, 27540, 1020, 2040, 0x56f902f7
0, 15, 15, 1, 9600, 0x0bc655d2
1, 28560, 28560, 1020, 2040, 0x4153938a
0, 16, 16, 1, 9600, 0xbece73a1
1, 29580, 29580, 1020, 2040, 0x14996d86
1, 30600, 30600, 1020, 2040, 0x3f99c318
0, 17, 17, 1, 9600, 0x82e7cfa1
1, 31620, 31620, 1020, 2040, 0x939978a5
1, 32640, 32640, 1020, 2040, 0x7086bd44
0, 18, 18, 1, 9600, 0xda29fd8f
1, 33660, 33660, 138, 276, 0x25b89d22
1, 33798, 33798, 1020, 2040, 0xf3edb106
1, 34818, 34818, 1020, 2040, 0x0ca61430
0, 19, 19, 1, 9600, 0x70fb700b
1, 35838, 35838, 1020, 2040, 0x7229c458
0, 20, 20, 1, 9600, 0xaf57a6b0
1, 36858, 36858, 1020, 2040, 0xc37edd31
1, 37878, 37878, 1020, 2040, 0xa3da98b4
0, 21, 21, 1, 9600, 0x0a5ed9b9
1, 38898, 38898, 1020, 2040, 0x69704803
1, 39918, 39918, 1020, 2040, 0xa79bf334
0, 22, 22, 1, 9600, 0xf7c62c38
1, 40938, 40938, 1020, 2040, 0x59d8d4c4
1, 41958, 41958, 1020, 2040, 0xf9ff0271
0, 23, 23, 1, 9600, 0x0aa2ccfd
1, 42978, 42978, 1020, 2040, 0xc4ced9d6
1, 43998, 43998, 1020, 2040, 0x859f1912
0, 24, 24, 1, 9600, 0xc9adabae
1, 45018, 45018, 1020, 2040, 0xe7955aa6
0, 25, 25, 1, 9600, 0x67ff0aba
1, 46038, 46038, 1020, 2040, 0x374624fd
1, 47058, 47058, 1020, 2040, 0x52121097
0, 26, 26, 1, 9600, 0xea79a465
1, 48078, 48078, 1020, 2040, 0x660fe645
1, 49098, 49098, 1020, 2040, 0xf624176a
0, 27, 27, 1, 9600, 0x8928c626
1, 50118, 50118, 1020, 2040, 0x1f2246dd
1, 51138, 51138, 1020, 2040, 0x940e0a32
0, 28, 28, 1, 9600, 0x8dab4111
1, 52158, 52158, 1020, 2040, 0x9c6d338c
1, 53178, 53178, 1020, 2040, 0xfce0d30a
0, 29, 29, 1, 9600, 0x81ef63f9
1, 54198, 54198, 1020, 2040, 0xd0ec9aa5
0, 30, 30, 1, 9600, 0xf977bc5e
1, 55218, 55218, 1020, 2040, 0x58012141
1, 56238, 56238, 1020, 2040, 0xde67fc43
0, 31, 31, 1, 9600, 0x9e6a3f4a
1, 57258, 57258, 1020, 2040, 0x6baa0450
1, 58278, 58278, 1020, 2040, 0xf4f80252
0, 32, 32, 1, 9600, 0x77c92865
1, 59298, 59298, 1020, 2040, 0x0cd47ee3
1, 60318, 60318, 1020, 2040, 0x129cbaa7
0, 33, 33, 1, 9600, 0x3915170d
1, 61338, 61338, 1020, 2040, 0x5ef5c0a1
1, 62358, 62358, 1020, 2040, 0xf660baa7
0, 34, 34, 1, 9600, 0xbe19b995
1, 63378, 63378, 1020, 2040, 0xe48bc0a1
0, 35, 35, 1, 9600, 0x3e8a3077
1, 64398, 64398, 1020, 2040, 0xdfeabaa7
1, 65418, 65418, 1020, 2040, 0xed04c0a1
0, 36, 36, 1, 9600, 0x1331342e
1, 66438, 66438, 1020, 2040, 0xd771baa7
1, 67458, 67458, 150, 300, 0x521f24e9
1, 67608, 67608, 738, 1476, 0x9b9394b1
0, 37, 37, 1, 9600, 0x4d692175
#tb 0: 1/12
#tb 1: 1/22050
0, 0, 0, 1, 230400, 0xb1ee55dc
1, 0, 0, 1020, 2040, 0x0a157db4
1, 1020, 1020, 1020, 2040, 0x00c63e08
0, 1, 1, 1, 230400, 0x97c580bf
1, 2040, 2040, 1020, 2040, 0xacf2a25b
1, 3060, 3060, 1020, 2040, 0xd6189e85
0, 2, 2, 1, 230400, 0xd4bd57e8
1, 4080, 4080, 1020, 2040, 0x8276f843
1, 5100, 5100, 1020, 2040, 0xadebae73
0, 3, 3, 1, 230400, 0x412b79aa
1, 6120, 6120, 1020, 2040, 0x5da76697
1, 7140, 7140, 1020, 2040, 0x469d0ea7
0, 4, 4, 1, 230400, 0x928a44d1
1, 8160, 8160, 1020, 2040, 0x0d7412e1
1, 9180, 9180, 1020, 2040, 0x2f2cc63f
0, 5, 5, 1, 230400, 0x6bbdc0e4
1, 10200, 10200, 1020, 2040, 0x10106eb7
0, 6, 6, 1, 230400, 0x382e960f
1, 11220, 11220, 1020, 2040, 0x300124c7
1, 12240, 12240, 1020, 2040, 0xa329f8e8
0, 7, 7, 1, 230400, 0x62c863ea
1, 13260, 13260, 1020, 2040, 0xcea35ca5
1, 14280, 14280, 1020, 2040, 0x55105aef
0, 8, 8, 1, 230400, 0xbfccd3ce
1, 15300, 15300, 1020, 2040, 0x08980ce1
1, 16320, 16320, 1020, 2040, 0x367faf24
0, 9, 9, 1, 230400, 0x1987cdd4
1, 17340, 17340, 1020, 2040, 0x75bfef06
1, 18360, 18360, 1020, 2040, 0x34f1daf4
0, 10, 10, 1, 230400, 0x40279727
1, 19380, 19380, 1020, 2040, 0x97050317
0, 11, 11, 1, 230400, 0x9d4f6746
1, 20400, 20400, 1020, 2040, 0xd297c536
1, 21420, 21420, 1020, 2040, 0xa8abad5a
0, 12, 12, 1, 230400, 0x7b8a77ec
1, 22440, 22440, 1020, 2040, 0x445ce8e0
1, 23460, 23460, 1020, 2040, 0xa3f4d940
0, 13, 13, 1, 230400, 0x2ce7a781
1, 24480, 24480, 1020, 2040, 0x0ebb7b26
1, 25500, 25500, 1020, 2040, 0x4372f6f6
0, 14, 14, 1, 230400, 0xb749815e
1, 26520, 26520, 1020, 2040, 0xd4365079
1, 27540, 27540, 1020, 2040, 0x56f902f7
0, 15, 15, 1, 230400, 0x61c88610
1, 28560, 28560, 1020, 2040, 0x4153938a
0, 16, 16, 1, 230400, 0x8449114d
1, 29580, 29580, 1020, 2040, 0x14996d86
1, 30600, 30600, 1020, 2040, 0x3f99c318
0, 17, 17, 1, 230400, 0x5f73e666
1, 31620, 31620, 1020, 2040, 0x939978a5
1, 32640, 32640, 1020, 2040, 0x7086bd44
0, 18, 18, 1, 230400, 0xbde53ce6
1, 33660, 33660, 138, 276, 0x25b89d22
1, 33798, 33798, 1020, 2040, 0xf3edb106
1, 34818, 34818, 1020, 2040, 0x0ca61430
0, 19, 19, 1, 230400, 0x8c7406fd
1, 35838, 35838, 1020, 2040, 0x7229c458
0, 20, 20, 1, 230400, 0xf9e9a3ef
1, 36858, 36858, 1020, 2040, 0xc37edd31
1, 37878, 37878, 1020, 2040, 0xa3da98b4
0, 21, 21, 1, 230400, 0x7e0a3077
1, 38898, 38898, 1020, 2040, 0x69704803
1, 39918, 39918, 1020, 2040, 0xa79bf334
0, 22, 22, 1, 230400, 0xd9245c5f
1, 40938, 40938, 1020, 2040, 0x59d8d4c4
1, 41958, 41958, 1020, 2040, 0xf9ff0271
0, 23, 23, 1, 230400, 0x6d077ea2
1, 42978, 42978, 1020, 2040, 0xc4ced9d6
1, 43998, 43998, 1020, 2040, 0x859f1912
0, 24, 24, 1, 230400, 0xf622bb2a
1, 45018, 45018, 1020, 2040, 0xe7955aa6
0, 25, 25, 1, 230400, 0x35292dc8
1, 46038, 46038, 1020, 2040, 0x374624fd
1, 47058, 47058, 1020, 2040, 0x52121097
0, 26, 26, 1, 230400, 0xc0cea946
1, 48078, 48078, 1020, 2040, 0x660fe645
1, 49098, 49098, 1020, 2040, 0xf624176a
0, 27, 27, 1, 230400, 0x98b27b60
1, 50118, 50118, 1020, 2040, 0x1f2246dd
1, 51138, 51138, 1020, 2040, 0x940e0a32
0, 28, 28, 1, 230400, 0x668ef6bd
1, 52158, 52158, 1020, 2040, 0x9c6d338c
1, 53178, 53178, 1020, 2040, 0xfce0d30a
0, 29, 29, 1, 230400, 0x6c07a31c
1, 54198, 54198, 1020, 2040, 0xd0ec9aa5
0, 30, 30, 1, 230400, 0x0b4a6ae1
1, 55218, 55218, 1020, 2040, 0x58012141
1, 56238, 56238, 1020, 2040, 0xde67fc43
0, 31, 31, 1, 230400, 0x945b9878
1, 57258, 57258, 1020, 2040, 0x6baa0450
1, 58278, 58278, 1020, 2040, 0xf4f80252
0, 32, 32, 1, 230400, 0xab28031c
1, 59298, 59298, 1020, 2040, 0x0cd47ee3
1, 60318, 60318, 1020, 2040, 0x129cbaa7
0, 33, 33, 1, 230400, 0x977252b0
1, 61338, 61338, 1020, 2040, 0x5ef5c0a1
1, 62358, 62358, 1020, 2040, 0xf660baa7
0, 34, 34, 1, 230400, 0x6c3d9706
1, 63378, 63378, 1020, 2040, 0xe48bc0a1
0, 35, 35, 1, 230400, 0xe053bc2a
1, 64398, 64398, 1020, 2040, 0xdfeabaa7
1, 65418, 65418, 1020, 2040, 0xed04c0a1
0, 36, 36, 1, 230400, 0x4cf2fc7c
1, 66438, 66438, 1020, 2040, 0xd771baa7
1, 67458, 67458, 150, 300, 0x521f24e9
1, 67608, 67608, 738, 1476, 0x9b9394b1
0, 37, 37, 1, 230400, 0x610beda7
This diff is collapsed.
#tb 0: 1/15
#tb 1: 1/44100
0, 0, 0, 1, 69120, 0x68beb30f
1, 0, 0, 2708, 10832, 0x1597b4c8
1, 2708, 2708, 2708, 10832, 0xf9479f8b
0, 1, 1, 1, 69120, 0x3976f5cf
1, 5416, 5416, 2708, 10832, 0x8db50e74
0, 2, 2, 1, 69120, 0xf815bc3c
1, 8124, 8124, 2708, 10832, 0x2b33ecbb
0, 3, 3, 1, 69120, 0xa7cc0ae6
1, 10832, 10832, 2708, 10832, 0x8d0f537b
0, 4, 4, 1, 69120, 0xd85ac282
1, 13540, 13540, 2708, 10832, 0x922081c7
0, 5, 5, 1, 69120, 0xf7fd7edb
1, 16248, 16248, 2708, 10832, 0x40291f19
0, 6, 6, 1, 69120, 0x433bb6f6
1, 18956, 18956, 2708, 10832, 0x88f5271a
0, 7, 7, 1, 69120, 0xdbac8bee
1, 21665, 21665, 2708, 10832, 0x55c6bbe5
0, 8, 8, 1, 69120, 0x88e2a799
1, 24373, 24373, 2708, 10832, 0x9b51ae82
0, 9, 9, 1, 69120, 0x49617b26
1, 27081, 27081, 2708, 10832, 0xcdf2409b
0, 10, 10, 1, 69120, 0xeb44ca01
1, 29789, 29789, 2708, 10832, 0x0933b1a4
0, 11, 11, 1, 69120, 0x6fea37e8
1, 32497, 32497, 2708, 10832, 0x24b77006
1, 35205, 35205, 2708, 10832, 0xf612fa8a
0, 12, 12, 1, 69120, 0xf55d74c7
1, 37913, 37913, 2708, 10832, 0x99884b06
0, 13, 13, 1, 69120, 0xb5082ca7
1, 40621, 40621, 2708, 10832, 0x3c746fbe
0, 14, 14, 1, 69120, 0x5876d758
1, 43329, 43329, 2708, 10832, 0x05f3b08a
0, 15, 15, 1, 69120, 0x45e7dd5c
1, 46037, 46037, 2708, 10832, 0xa6560483
1, 48745, 48745, 2708, 10832, 0xd98a8e19
1, 51453, 51453, 2708, 10832, 0xf98a0b2e
1, 54161, 54161, 2708, 10832, 0xb1039582
1, 56869, 56869, 2708, 10832, 0x85dd5c3f
1, 59578, 59578, 2708, 10832, 0x19fc801a
1, 62286, 62286, 2708, 10832, 0x95805089
1, 64994, 64994, 2708, 10832, 0x576fdec3
1, 67702, 67702, 2708, 10832, 0x704a0905
1, 70410, 70410, 2708, 10832, 0xf87ce1fa
1, 73118, 73118, 2708, 10832, 0xfc0076b9
#tb 0: 1/15
#tb 1: 1/22050
0, 0, 0, 1, 192000, 0x00000000
1, 0, 0, 11024, 22048, 0x0665d7f4
0, 1, 1, 1, 192000, 0x00000000
0, 2, 2, 1, 192000, 0x00000000
0, 3, 3, 1, 192000, 0x00000000
......@@ -9,72 +7,33 @@
0, 5, 5, 1, 192000, 0x67256507
0, 6, 6, 1, 192000, 0x74c70e87
0, 7, 7, 1, 192000, 0x8ecdce9a
1, 11024, 11024, 1470, 2940, 0x0f3c64cb
0, 8, 8, 1, 192000, 0xc40f8efd
1, 12494, 12494, 1470, 2940, 0xc90b9e78
0, 9, 9, 1, 192000, 0xb8107dfb
1, 13964, 13964, 1470, 2940, 0x146246a3
0, 10, 10, 1, 192000, 0xb4e504eb
1, 15434, 15434, 1470, 2940, 0xd22c714e
0, 11, 11, 1, 192000, 0x0c7fdb95
1, 16904, 16904, 1470, 2940, 0xd86b681e
0, 12, 12, 1, 192000, 0x58c9f045
1, 18374, 18374, 1470, 2940, 0x12ec8186
0, 13, 13, 1, 192000, 0xcba9d0e9
1, 19844, 19844, 1470, 2940, 0x69aa85b6
0, 14, 14, 1, 192000, 0x392a20f6
1, 21314, 21314, 1470, 2940, 0xb24d33b0
0, 15, 15, 1, 192000, 0xc37905cc
1, 22784, 22784, 1470, 2940, 0x3f7b0f0d
0, 16, 16, 1, 192000, 0xe278cf95
1, 24254, 24254, 1470, 2940, 0x64f10f7e
0, 17, 17, 1, 192000, 0x3d03b01d
1, 25724, 25724, 1470, 2940, 0xd6ea379a
0, 18, 18, 1, 192000, 0x16a26f28
1, 27194, 27194, 1470, 2940, 0x7c38e830
0, 19, 19, 1, 192000, 0xdd17f51c
1, 28664, 28664, 1470, 2940, 0xc28ff132
0, 20, 20, 1, 192000, 0x19703b85
1, 30134, 30134, 1470, 2940, 0xe7b11629
0, 21, 21, 1, 192000, 0xe51f0e70
1, 31604, 31604, 1470, 2940, 0xeb86fdcb
0, 22, 22, 1, 192000, 0x6f94ad2a
1, 33074, 33074, 1470, 2940, 0x5508f586
0, 23, 23, 1, 192000, 0x71e449f1
1, 34544, 34544, 1470, 2940, 0xf4fa1f1b
0, 24, 24, 1, 192000, 0x1dcacc52
1, 36014, 36014, 1470, 2940, 0x9e5ff976
0, 25, 25, 1, 192000, 0x49c23f58
1, 37484, 37484, 1470, 2940, 0xcfc4e08f
0, 26, 26, 1, 192000, 0x4ce61551
1, 38954, 38954, 1470, 2940, 0x74bde7ed
0, 27, 27, 1, 192000, 0xe54832d5
1, 40424, 40424, 1470, 2940, 0x3e4ae245
0, 28, 28, 1, 192000, 0xbae28a59
1, 41894, 41894, 1470, 2940, 0x4c6a8e56
0, 29, 29, 1, 192000, 0xe8a4efbe
1, 43364, 43364, 1470, 2940, 0xa09d86ab
0, 30, 30, 1, 192000, 0xe9e96883
1, 44834, 44834, 1470, 2940, 0xc8531912
0, 31, 31, 1, 192000, 0xa5468c49
1, 46304, 46304, 1470, 2940, 0xa5f266aa
0, 32, 32, 1, 192000, 0x7ec6936a
1, 47774, 47774, 1470, 2940, 0x587a4187
0, 33, 33, 1, 192000, 0x46e53ee4
1, 49244, 49244, 1470, 2940, 0x14752d45
0, 34, 34, 1, 192000, 0x937b168a
1, 50714, 50714, 1470, 2940, 0x558cde10
0, 35, 35, 1, 192000, 0xed76cec4
1, 52184, 52184, 1470, 2940, 0x735fee38
0, 36, 36, 1, 192000, 0x4b9f454d
1, 53654, 53654, 1470, 2940, 0xac8bb6c8
0, 37, 37, 1, 192000, 0xb58c1566
1, 55124, 55124, 1470, 2940, 0xa503c73b
1, 56594, 56594, 1470, 2940, 0x7cd588a3
1, 58064, 58064, 1470, 2940, 0xa6974b04
1, 59534, 59534, 1470, 2940, 0xbf448241
1, 61004, 61004, 1470, 2940, 0x2a5c2759
1, 62474, 62474, 1470, 2940, 0xd0de5ce0
1, 63944, 63944, 1470, 2940, 0xc0486649
1, 65414, 65414, 1470, 2940, 0x48b040af
1, 66884, 66884, 1470, 2940, 0x82a338a9
5c2528488729035c17c21486797a2a23
#tb 0: 1/22050
0, 0, 0, 1024, 512, 0x6694cc55
0, 1024, 1024, 1024, 512, 0xdbc5cb22
0, 2048, 2048, 1024, 512, 0x8e5bcbfd
0, 3072, 3072, 1024, 512, 0x7b2ac519
0, 4096, 4096, 1024, 512, 0x6ae0cb0c
0, 5120, 5120, 1024, 512, 0x055ec435
0, 6144, 6144, 1024, 512, 0x9424c8d6
0, 7168, 7168, 1024, 512, 0x58fccb7d
0, 8192, 8192, 1024, 512, 0x348fd253
0, 9216, 9216, 1024, 512, 0xe1b1c24e
0, 10240, 10240, 192, 96, 0x95f81350
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