main.c
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:23k
源码类别:

Windows CE

开发平台:

C/C++

  1. /* test_streams - Simple test pattern generator
  2.  * Copyright (C) 2000,2001,2002,2003,2004,2005  Josh Coalson
  3.  *
  4.  * This program is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU General Public License
  6.  * as published by the Free Software Foundation; either version 2
  7.  * of the License, or (at your option) any later version.
  8.  *
  9.  * This program is distributed in the hope that it will be useful,
  10.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  * GNU General Public License for more details.
  13.  *
  14.  * You should have received a copy of the GNU General Public License
  15.  * along with this program; if not, write to the Free Software
  16.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  17.  */
  18. #include <math.h>
  19. #include <stdio.h>
  20. #include <stdlib.h>
  21. #if defined _MSC_VER || defined __MINGW32__
  22. #include <time.h>
  23. #else
  24. #include <sys/time.h>
  25. #endif
  26. #include "FLAC/assert.h"
  27. #include "FLAC/ordinals.h"
  28. #ifndef M_PI
  29. /* math.h in VC++ doesn't seem to have this (how Microsoft is that?) */
  30. #define M_PI 3.14159265358979323846
  31. #endif
  32. #ifdef _WIN32
  33. static const char *mode = "wb";
  34. #else
  35. static const char *mode = "w";
  36. #endif
  37. static FLAC__bool is_big_endian_host;
  38. static FLAC__bool write_little_endian_uint16(FILE *f, FLAC__uint16 x)
  39. {
  40. return
  41. fputc(x, f) != EOF &&
  42. fputc(x >> 8, f) != EOF
  43. ;
  44. }
  45. static FLAC__bool write_little_endian_int16(FILE *f, FLAC__int16 x)
  46. {
  47. return write_little_endian_uint16(f, (FLAC__uint16)x);
  48. }
  49. static FLAC__bool write_little_endian_uint24(FILE *f, FLAC__uint32 x)
  50. {
  51. return
  52. fputc(x, f) != EOF &&
  53. fputc(x >> 8, f) != EOF &&
  54. fputc(x >> 16, f) != EOF
  55. ;
  56. }
  57. static FLAC__bool write_little_endian_int24(FILE *f, FLAC__int32 x)
  58. {
  59. return write_little_endian_uint24(f, (FLAC__uint32)x);
  60. }
  61. static FLAC__bool write_little_endian_uint32(FILE *f, FLAC__uint32 x)
  62. {
  63. return
  64. fputc(x, f) != EOF &&
  65. fputc(x >> 8, f) != EOF &&
  66. fputc(x >> 16, f) != EOF &&
  67. fputc(x >> 24, f) != EOF
  68. ;
  69. }
  70. #if 0
  71. /* @@@ not used (yet) */
  72. static FLAC__bool write_little_endian_int32(FILE *f, FLAC__int32 x)
  73. {
  74. return write_little_endian_uint32(f, (FLAC__uint32)x);
  75. }
  76. #endif
  77. static FLAC__bool write_big_endian_uint16(FILE *f, FLAC__uint16 x)
  78. {
  79. return
  80. fputc(x >> 8, f) != EOF &&
  81. fputc(x, f) != EOF
  82. ;
  83. }
  84. #if 0
  85. /* @@@ not used (yet) */
  86. static FLAC__bool write_big_endian_int16(FILE *f, FLAC__int16 x)
  87. {
  88. return write_big_endian_uint16(f, (FLAC__uint16)x);
  89. }
  90. #endif
  91. #if 0
  92. /* @@@ not used (yet) */
  93. static FLAC__bool write_big_endian_uint24(FILE *f, FLAC__uint32 x)
  94. {
  95. return
  96. fputc(x >> 16, f) != EOF &&
  97. fputc(x >> 8, f) != EOF &&
  98. fputc(x, f) != EOF
  99. ;
  100. }
  101. #endif
  102. #if 0
  103. /* @@@ not used (yet) */
  104. static FLAC__bool write_big_endian_int24(FILE *f, FLAC__int32 x)
  105. {
  106. return write_big_endian_uint24(f, (FLAC__uint32)x);
  107. }
  108. #endif
  109. static FLAC__bool write_big_endian_uint32(FILE *f, FLAC__uint32 x)
  110. {
  111. return
  112. fputc(x >> 24, f) != EOF &&
  113. fputc(x >> 16, f) != EOF &&
  114. fputc(x >> 8, f) != EOF &&
  115. fputc(x, f) != EOF
  116. ;
  117. }
  118. #if 0
  119. /* @@@ not used (yet) */
  120. static FLAC__bool write_big_endian_int32(FILE *f, FLAC__int32 x)
  121. {
  122. return write_big_endian_uint32(f, (FLAC__uint32)x);
  123. }
  124. #endif
  125. static FLAC__bool write_sane_extended(FILE *f, unsigned val)
  126. /* Write to 'f' a SANE extended representation of 'val'.  Return false if
  127. * the write succeeds; return true otherwise.
  128. *
  129. * SANE extended is an 80-bit IEEE-754 representation with sign bit, 15 bits
  130. * of exponent, and 64 bits of significand (mantissa).  Unlike most IEEE-754
  131. * representations, it does not imply a 1 above the MSB of the significand.
  132. *
  133. * Preconditions:
  134. *  val!=0U
  135. */
  136. {
  137. unsigned int shift, exponent;
  138. FLAC__ASSERT(val!=0U); /* handling 0 would require a special case */
  139. for(shift= 0U; (val>>(31-shift))==0U; ++shift)
  140. ;
  141. val<<= shift;
  142. exponent= 63U-(shift+32U); /* add 32 for unused second word */
  143. if(!write_big_endian_uint16(f, (FLAC__uint16)(exponent+0x3FFF)))
  144. return false;
  145. if(!write_big_endian_uint32(f, val))
  146. return false;
  147. if(!write_big_endian_uint32(f, 0)) /* unused second word */
  148. return false;
  149. return true;
  150. }
  151. /* a mono one-sample 16bps stream */
  152. static FLAC__bool generate_01()
  153. {
  154. FILE *f;
  155. FLAC__int16 x = -32768;
  156. if(0 == (f = fopen("test01.raw", mode)))
  157. return false;
  158. if(!write_little_endian_int16(f, x))
  159. goto foo;
  160. fclose(f);
  161. return true;
  162. foo:
  163. fclose(f);
  164. return false;
  165. }
  166. /* a stereo one-sample 16bps stream */
  167. static FLAC__bool generate_02()
  168. {
  169. FILE *f;
  170. FLAC__int16 xl = -32768, xr = 32767;
  171. if(0 == (f = fopen("test02.raw", mode)))
  172. return false;
  173. if(!write_little_endian_int16(f, xl))
  174. goto foo;
  175. if(!write_little_endian_int16(f, xr))
  176. goto foo;
  177. fclose(f);
  178. return true;
  179. foo:
  180. fclose(f);
  181. return false;
  182. }
  183. /* a mono five-sample 16bps stream */
  184. static FLAC__bool generate_03()
  185. {
  186. FILE *f;
  187. FLAC__int16 x[] = { -25, 0, 25, 50, 100 };
  188. unsigned i;
  189. if(0 == (f = fopen("test03.raw", mode)))
  190. return false;
  191. for(i = 0; i < 5; i++)
  192. if(!write_little_endian_int16(f, x[i]))
  193. goto foo;
  194. fclose(f);
  195. return true;
  196. foo:
  197. fclose(f);
  198. return false;
  199. }
  200. /* a stereo five-sample 16bps stream */
  201. static FLAC__bool generate_04()
  202. {
  203. FILE *f;
  204. FLAC__int16 x[] = { -25, 500, 0, 400, 25, 300, 50, 200, 100, 100 };
  205. unsigned i;
  206. if(0 == (f = fopen("test04.raw", mode)))
  207. return false;
  208. for(i = 0; i < 10; i++)
  209. if(!write_little_endian_int16(f, x[i]))
  210. goto foo;
  211. fclose(f);
  212. return true;
  213. foo:
  214. fclose(f);
  215. return false;
  216. }
  217. /* a mono full-scale deflection 8bps stream */
  218. static FLAC__bool generate_fsd8(const char *fn, const int pattern[], unsigned reps)
  219. {
  220. FILE *f;
  221. unsigned rep, p;
  222. FLAC__ASSERT(pattern != 0);
  223. if(0 == (f = fopen(fn, mode)))
  224. return false;
  225. for(rep = 0; rep < reps; rep++) {
  226. for(p = 0; pattern[p]; p++) {
  227. signed char x = pattern[p] > 0? 127 : -128;
  228. if(fwrite(&x, sizeof(x), 1, f) < 1)
  229. goto foo;
  230. }
  231. }
  232. fclose(f);
  233. return true;
  234. foo:
  235. fclose(f);
  236. return false;
  237. }
  238. /* a mono full-scale deflection 16bps stream */
  239. static FLAC__bool generate_fsd16(const char *fn, const int pattern[], unsigned reps)
  240. {
  241. FILE *f;
  242. unsigned rep, p;
  243. FLAC__ASSERT(pattern != 0);
  244. if(0 == (f = fopen(fn, mode)))
  245. return false;
  246. for(rep = 0; rep < reps; rep++) {
  247. for(p = 0; pattern[p]; p++) {
  248. FLAC__int16 x = pattern[p] > 0? 32767 : -32768;
  249. if(!write_little_endian_int16(f, x))
  250. goto foo;
  251. }
  252. }
  253. fclose(f);
  254. return true;
  255. foo:
  256. fclose(f);
  257. return false;
  258. }
  259. /* a stereo wasted-bits-per-sample 16bps stream */
  260. static FLAC__bool generate_wbps16(const char *fn, unsigned samples)
  261. {
  262. FILE *f;
  263. unsigned sample;
  264. if(0 == (f = fopen(fn, mode)))
  265. return false;
  266. for(sample = 0; sample < samples; sample++) {
  267. FLAC__int16 l = (sample % 2000) << 2;
  268. FLAC__int16 r = (sample % 1000) << 3;
  269. if(!write_little_endian_int16(f, l))
  270. goto foo;
  271. if(!write_little_endian_int16(f, r))
  272. goto foo;
  273. }
  274. fclose(f);
  275. return true;
  276. foo:
  277. fclose(f);
  278. return false;
  279. }
  280. /* a mono full-scale deflection 24bps stream */
  281. static FLAC__bool generate_fsd24(const char *fn, const int pattern[], unsigned reps)
  282. {
  283. FILE *f;
  284. unsigned rep, p;
  285. FLAC__ASSERT(pattern != 0);
  286. if(0 == (f = fopen(fn, mode)))
  287. return false;
  288. for(rep = 0; rep < reps; rep++) {
  289. for(p = 0; pattern[p]; p++) {
  290. FLAC__int32 x = pattern[p] > 0? 8388607 : -8388608;
  291. if(!write_little_endian_int24(f, x))
  292. goto foo;
  293. }
  294. }
  295. fclose(f);
  296. return true;
  297. foo:
  298. fclose(f);
  299. return false;
  300. }
  301. /* a mono sine-wave 8bps stream */
  302. static FLAC__bool generate_sine8_1(const char *fn, const double sample_rate, const unsigned samples, const double f1, const double a1, const double f2, const double a2)
  303. {
  304. const FLAC__int8 full_scale = 127;
  305. const double delta1 = 2.0 * M_PI / ( sample_rate / f1);
  306. const double delta2 = 2.0 * M_PI / ( sample_rate / f2);
  307. FILE *f;
  308. double theta1, theta2;
  309. unsigned i;
  310. if(0 == (f = fopen(fn, mode)))
  311. return false;
  312. for(i = 0, theta1 = theta2 = 0.0; i < samples; i++, theta1 += delta1, theta2 += delta2) {
  313. double val = (a1*sin(theta1) + a2*sin(theta2))*(double)full_scale;
  314. FLAC__int8 v = (FLAC__int8)(val + 0.5);
  315. if(fwrite(&v, sizeof(v), 1, f) < 1)
  316. goto foo;
  317. }
  318. fclose(f);
  319. return true;
  320. foo:
  321. fclose(f);
  322. return false;
  323. }
  324. /* a stereo sine-wave 8bps stream */
  325. static FLAC__bool generate_sine8_2(const char *fn, const double sample_rate, const unsigned samples, const double f1, const double a1, const double f2, const double a2, double fmult)
  326. {
  327. const FLAC__int8 full_scale = 127;
  328. const double delta1 = 2.0 * M_PI / ( sample_rate / f1);
  329. const double delta2 = 2.0 * M_PI / ( sample_rate / f2);
  330. FILE *f;
  331. double theta1, theta2;
  332. unsigned i;
  333. if(0 == (f = fopen(fn, mode)))
  334. return false;
  335. for(i = 0, theta1 = theta2 = 0.0; i < samples; i++, theta1 += delta1, theta2 += delta2) {
  336. double val = (a1*sin(theta1) + a2*sin(theta2))*(double)full_scale;
  337. FLAC__int8 v = (FLAC__int8)(val + 0.5);
  338. if(fwrite(&v, sizeof(v), 1, f) < 1)
  339. goto foo;
  340. val = -(a1*sin(theta1*fmult) + a2*sin(theta2*fmult))*(double)full_scale;
  341. v = (FLAC__int8)(val + 0.5);
  342. if(fwrite(&v, sizeof(v), 1, f) < 1)
  343. goto foo;
  344. }
  345. fclose(f);
  346. return true;
  347. foo:
  348. fclose(f);
  349. return false;
  350. }
  351. /* a mono sine-wave 16bps stream */
  352. static FLAC__bool generate_sine16_1(const char *fn, const double sample_rate, const unsigned samples, const double f1, const double a1, const double f2, const double a2)
  353. {
  354. const FLAC__int16 full_scale = 32767;
  355. const double delta1 = 2.0 * M_PI / ( sample_rate / f1);
  356. const double delta2 = 2.0 * M_PI / ( sample_rate / f2);
  357. FILE *f;
  358. double theta1, theta2;
  359. unsigned i;
  360. if(0 == (f = fopen(fn, mode)))
  361. return false;
  362. for(i = 0, theta1 = theta2 = 0.0; i < samples; i++, theta1 += delta1, theta2 += delta2) {
  363. double val = (a1*sin(theta1) + a2*sin(theta2))*(double)full_scale;
  364. FLAC__int16 v = (FLAC__int16)(val + 0.5);
  365. if(!write_little_endian_int16(f, v))
  366. goto foo;
  367. }
  368. fclose(f);
  369. return true;
  370. foo:
  371. fclose(f);
  372. return false;
  373. }
  374. /* a stereo sine-wave 16bps stream */
  375. static FLAC__bool generate_sine16_2(const char *fn, const double sample_rate, const unsigned samples, const double f1, const double a1, const double f2, const double a2, double fmult)
  376. {
  377. const FLAC__int16 full_scale = 32767;
  378. const double delta1 = 2.0 * M_PI / ( sample_rate / f1);
  379. const double delta2 = 2.0 * M_PI / ( sample_rate / f2);
  380. FILE *f;
  381. double theta1, theta2;
  382. unsigned i;
  383. if(0 == (f = fopen(fn, mode)))
  384. return false;
  385. for(i = 0, theta1 = theta2 = 0.0; i < samples; i++, theta1 += delta1, theta2 += delta2) {
  386. double val = (a1*sin(theta1) + a2*sin(theta2))*(double)full_scale;
  387. FLAC__int16 v = (FLAC__int16)(val + 0.5);
  388. if(!write_little_endian_int16(f, v))
  389. goto foo;
  390. val = -(a1*sin(theta1*fmult) + a2*sin(theta2*fmult))*(double)full_scale;
  391. v = (FLAC__int16)(val + 0.5);
  392. if(!write_little_endian_int16(f, v))
  393. goto foo;
  394. }
  395. fclose(f);
  396. return true;
  397. foo:
  398. fclose(f);
  399. return false;
  400. }
  401. /* a mono sine-wave 24bps stream */
  402. static FLAC__bool generate_sine24_1(const char *fn, const double sample_rate, const unsigned samples, const double f1, const double a1, const double f2, const double a2)
  403. {
  404. const FLAC__int32 full_scale = 0x7fffff;
  405. const double delta1 = 2.0 * M_PI / ( sample_rate / f1);
  406. const double delta2 = 2.0 * M_PI / ( sample_rate / f2);
  407. FILE *f;
  408. double theta1, theta2;
  409. unsigned i;
  410. if(0 == (f = fopen(fn, mode)))
  411. return false;
  412. for(i = 0, theta1 = theta2 = 0.0; i < samples; i++, theta1 += delta1, theta2 += delta2) {
  413. double val = (a1*sin(theta1) + a2*sin(theta2))*(double)full_scale;
  414. FLAC__int32 v = (FLAC__int32)(val + 0.5);
  415. if(!write_little_endian_int24(f, v))
  416. goto foo;
  417. }
  418. fclose(f);
  419. return true;
  420. foo:
  421. fclose(f);
  422. return false;
  423. }
  424. /* a stereo sine-wave 24bps stream */
  425. static FLAC__bool generate_sine24_2(const char *fn, const double sample_rate, const unsigned samples, const double f1, const double a1, const double f2, const double a2, double fmult)
  426. {
  427. const FLAC__int32 full_scale = 0x7fffff;
  428. const double delta1 = 2.0 * M_PI / ( sample_rate / f1);
  429. const double delta2 = 2.0 * M_PI / ( sample_rate / f2);
  430. FILE *f;
  431. double theta1, theta2;
  432. unsigned i;
  433. if(0 == (f = fopen(fn, mode)))
  434. return false;
  435. for(i = 0, theta1 = theta2 = 0.0; i < samples; i++, theta1 += delta1, theta2 += delta2) {
  436. double val = (a1*sin(theta1) + a2*sin(theta2))*(double)full_scale;
  437. FLAC__int32 v = (FLAC__int32)(val + 0.5);
  438. if(!write_little_endian_int24(f, v))
  439. goto foo;
  440. val = -(a1*sin(theta1*fmult) + a2*sin(theta2*fmult))*(double)full_scale;
  441. v = (FLAC__int32)(val + 0.5);
  442. if(!write_little_endian_int24(f, v))
  443. goto foo;
  444. }
  445. fclose(f);
  446. return true;
  447. foo:
  448. fclose(f);
  449. return false;
  450. }
  451. static FLAC__bool generate_noise(const char *fn, unsigned bytes)
  452. {
  453. FILE *f;
  454. unsigned b;
  455. #if !defined _MSC_VER && !defined __MINGW32__
  456. struct timeval tv;
  457. if(gettimeofday(&tv, 0) < 0) {
  458. fprintf(stderr, "WARNING: couldn't seed RNG with timen");
  459. tv.tv_usec = 4321;
  460. }
  461. srandom(tv.tv_usec);
  462. #else
  463. srand(time(0));
  464. #endif
  465. if(0 == (f = fopen(fn, mode)))
  466. return false;
  467. for(b = 0; b < bytes; b++) {
  468. #if !defined _MSC_VER && !defined __MINGW32__
  469. FLAC__byte x = (FLAC__byte)(((unsigned)random()) & 0xff);
  470. #else
  471. FLAC__byte x = (FLAC__byte)(((unsigned)rand()) & 0xff);
  472. #endif
  473. if(fwrite(&x, sizeof(x), 1, f) < 1)
  474. goto foo;
  475. }
  476. fclose(f);
  477. return true;
  478. foo:
  479. fclose(f);
  480. return false;
  481. }
  482. static FLAC__bool generate_aiff(const char *filename, unsigned sample_rate, unsigned channels, unsigned bytes_per_sample, unsigned samples)
  483. {
  484. const unsigned true_size = channels * bytes_per_sample * samples;
  485. const unsigned padded_size = (true_size + 1) & (~1u);
  486. FILE *f;
  487. unsigned i;
  488. if(0 == (f = fopen(filename, mode)))
  489. return false;
  490. if(fwrite("FORM", 1, 4, f) < 4)
  491. goto foo;
  492. if(!write_big_endian_uint32(f, padded_size + 46))
  493. goto foo;
  494. if(fwrite("AIFFCOMM00000022", 1, 12, f) < 12)
  495. goto foo;
  496. if(!write_big_endian_uint16(f, (FLAC__uint16)channels))
  497. goto foo;
  498. if(!write_big_endian_uint32(f, samples))
  499. goto foo;
  500. if(!write_big_endian_uint16(f, (FLAC__uint16)(8 * bytes_per_sample)))
  501. goto foo;
  502. if(!write_sane_extended(f, sample_rate))
  503. goto foo;
  504. if(fwrite("SSND", 1, 4, f) < 4)
  505. goto foo;
  506. if(!write_big_endian_uint32(f, true_size + 8))
  507. goto foo;
  508. if(fwrite("0000000000000000", 1, 8, f) < 8)
  509. goto foo;
  510. for(i = 0; i < true_size; i++)
  511. if(fputc(i, f) == EOF)
  512. goto foo;
  513. for( ; i < padded_size; i++)
  514. if(fputc(0, f) == EOF)
  515. goto foo;
  516. fclose(f);
  517. return true;
  518. foo:
  519. fclose(f);
  520. return false;
  521. }
  522. static FLAC__bool generate_wav(const char *filename, unsigned sample_rate, unsigned channels, unsigned bytes_per_sample, unsigned samples)
  523. {
  524. const unsigned true_size = channels * bytes_per_sample * samples;
  525. const unsigned padded_size = (true_size + 1) & (~1u);
  526. FILE *f;
  527. unsigned i;
  528. if(0 == (f = fopen(filename, mode)))
  529. return false;
  530. if(fwrite("RIFF", 1, 4, f) < 4)
  531. goto foo;
  532. if(!write_little_endian_uint32(f, padded_size + 36))
  533. goto foo;
  534. if(fwrite("WAVEfmt 200000000100", 1, 14, f) < 14)
  535. goto foo;
  536. if(!write_little_endian_uint16(f, (FLAC__uint16)channels))
  537. goto foo;
  538. if(!write_little_endian_uint32(f, sample_rate))
  539. goto foo;
  540. if(!write_little_endian_uint32(f, sample_rate * channels * bytes_per_sample))
  541. goto foo;
  542. if(!write_little_endian_uint16(f, (FLAC__uint16)(channels * bytes_per_sample))) /* block align */
  543. goto foo;
  544. if(!write_little_endian_uint16(f, (FLAC__uint16)(8 * bytes_per_sample)))
  545. goto foo;
  546. if(fwrite("data", 1, 4, f) < 4)
  547. goto foo;
  548. if(!write_little_endian_uint32(f, true_size))
  549. goto foo;
  550. for(i = 0; i < true_size; i++)
  551. if(fputc(i, f) == EOF)
  552. goto foo;
  553. for( ; i < padded_size; i++)
  554. if(fputc(0, f) == EOF)
  555. goto foo;
  556. fclose(f);
  557. return true;
  558. foo:
  559. fclose(f);
  560. return false;
  561. }
  562. static FLAC__bool generate_wackywavs()
  563. {
  564. FILE *f;
  565. FLAC__byte wav[] = {
  566. 'R', 'I', 'F', 'F',  76,   0,   0,   0,
  567. 'W', 'A', 'V', 'E', 'f', 'a', 'c', 't',
  568.   4,   0,   0,  0 , 'b', 'l', 'a', 'h',
  569. 'p', 'a', 'd', ' ',   4,   0,   0,   0,
  570. 'B', 'L', 'A', 'H', 'f', 'm', 't', ' ',
  571.  16,   0,   0,   0,   1,   0,   1,   0,
  572. 0x44,0xAC,  0,   0,   0,   0,   0,   0,
  573.   2,   0,  16,   0, 'd', 'a', 't', 'a',
  574.  16,   0,   0,   0,   0,   0,   1,   0,
  575.   4,   0,   9,   0,  16,   0,  25,   0,
  576.  36,   0,  49,   0, 'p', 'a', 'd', ' ',
  577.   4,   0,   0,   0, 'b', 'l', 'a', 'h'
  578. };
  579. if(0 == (f = fopen("wacky1.wav", mode)))
  580. return false;
  581. if(fwrite(wav, 1, 84, f) < 84)
  582. goto foo;
  583. fclose(f);
  584. wav[4] += 12;
  585. if(0 == (f = fopen("wacky2.wav", mode)))
  586. return false;
  587. if(fwrite(wav, 1, 96, f) < 96)
  588. goto foo;
  589. fclose(f);
  590. return true;
  591. foo:
  592. fclose(f);
  593. return false;
  594. }
  595. int main(int argc, char *argv[])
  596. {
  597. FLAC__uint32 test = 1;
  598. unsigned channels;
  599. int pattern01[] = { 1, -1, 0 };
  600. int pattern02[] = { 1, 1, -1, 0 };
  601. int pattern03[] = { 1, -1, -1, 0 };
  602. int pattern04[] = { 1, -1, 1, -1, 0 };
  603. int pattern05[] = { 1, -1, -1, 1, 0 };
  604. int pattern06[] = { 1, -1, 1, 1, -1, 0 };
  605. int pattern07[] = { 1, -1, -1, 1, -1, 0 };
  606. (void)argc;
  607. (void)argv;
  608. is_big_endian_host = (*((FLAC__byte*)(&test)))? false : true;
  609. if(!generate_01()) return 1;
  610. if(!generate_02()) return 1;
  611. if(!generate_03()) return 1;
  612. if(!generate_04()) return 1;
  613. if(!generate_fsd8("fsd8-01.raw", pattern01, 100)) return 1;
  614. if(!generate_fsd8("fsd8-02.raw", pattern02, 100)) return 1;
  615. if(!generate_fsd8("fsd8-03.raw", pattern03, 100)) return 1;
  616. if(!generate_fsd8("fsd8-04.raw", pattern04, 100)) return 1;
  617. if(!generate_fsd8("fsd8-05.raw", pattern05, 100)) return 1;
  618. if(!generate_fsd8("fsd8-06.raw", pattern06, 100)) return 1;
  619. if(!generate_fsd8("fsd8-07.raw", pattern07, 100)) return 1;
  620. if(!generate_fsd16("fsd16-01.raw", pattern01, 100)) return 1;
  621. if(!generate_fsd16("fsd16-02.raw", pattern02, 100)) return 1;
  622. if(!generate_fsd16("fsd16-03.raw", pattern03, 100)) return 1;
  623. if(!generate_fsd16("fsd16-04.raw", pattern04, 100)) return 1;
  624. if(!generate_fsd16("fsd16-05.raw", pattern05, 100)) return 1;
  625. if(!generate_fsd16("fsd16-06.raw", pattern06, 100)) return 1;
  626. if(!generate_fsd16("fsd16-07.raw", pattern07, 100)) return 1;
  627. if(!generate_fsd24("fsd24-01.raw", pattern01, 100)) return 1;
  628. if(!generate_fsd24("fsd24-02.raw", pattern02, 100)) return 1;
  629. if(!generate_fsd24("fsd24-03.raw", pattern03, 100)) return 1;
  630. if(!generate_fsd24("fsd24-04.raw", pattern04, 100)) return 1;
  631. if(!generate_fsd24("fsd24-05.raw", pattern05, 100)) return 1;
  632. if(!generate_fsd24("fsd24-06.raw", pattern06, 100)) return 1;
  633. if(!generate_fsd24("fsd24-07.raw", pattern07, 100)) return 1;
  634. if(!generate_wbps16("wbps16-01.raw", 1000)) return 1;
  635. if(!generate_sine8_1("sine8-00.raw", 48000.0, 200000, 441.0, 0.50, 441.0, 0.49)) return 1;
  636. if(!generate_sine8_1("sine8-01.raw", 96000.0, 200000, 441.0, 0.61, 661.5, 0.37)) return 1;
  637. if(!generate_sine8_1("sine8-02.raw", 44100.0, 200000, 441.0, 0.50, 882.0, 0.49)) return 1;
  638. if(!generate_sine8_1("sine8-03.raw", 44100.0, 200000, 441.0, 0.50, 4410.0, 0.49)) return 1;
  639. if(!generate_sine8_1("sine8-04.raw", 44100.0, 200000, 8820.0, 0.70, 4410.0, 0.29)) return 1;
  640. if(!generate_sine8_2("sine8-10.raw", 48000.0, 200000, 441.0, 0.50, 441.0, 0.49, 1.0)) return 1;
  641. if(!generate_sine8_2("sine8-11.raw", 48000.0, 200000, 441.0, 0.61, 661.5, 0.37, 1.0)) return 1;
  642. if(!generate_sine8_2("sine8-12.raw", 96000.0, 200000, 441.0, 0.50, 882.0, 0.49, 1.0)) return 1;
  643. if(!generate_sine8_2("sine8-13.raw", 44100.0, 200000, 441.0, 0.50, 4410.0, 0.49, 1.0)) return 1;
  644. if(!generate_sine8_2("sine8-14.raw", 44100.0, 200000, 8820.0, 0.70, 4410.0, 0.29, 1.0)) return 1;
  645. if(!generate_sine8_2("sine8-15.raw", 44100.0, 200000, 441.0, 0.50, 441.0, 0.49, 0.5)) return 1;
  646. if(!generate_sine8_2("sine8-16.raw", 44100.0, 200000, 441.0, 0.61, 661.5, 0.37, 2.0)) return 1;
  647. if(!generate_sine8_2("sine8-17.raw", 44100.0, 200000, 441.0, 0.50, 882.0, 0.49, 0.7)) return 1;
  648. if(!generate_sine8_2("sine8-18.raw", 44100.0, 200000, 441.0, 0.50, 4410.0, 0.49, 1.3)) return 1;
  649. if(!generate_sine8_2("sine8-19.raw", 44100.0, 200000, 8820.0, 0.70, 4410.0, 0.29, 0.1)) return 1;
  650. if(!generate_sine16_1("sine16-00.raw", 48000.0, 200000, 441.0, 0.50, 441.0, 0.49)) return 1;
  651. if(!generate_sine16_1("sine16-01.raw", 96000.0, 200000, 441.0, 0.61, 661.5, 0.37)) return 1;
  652. if(!generate_sine16_1("sine16-02.raw", 44100.0, 200000, 441.0, 0.50, 882.0, 0.49)) return 1;
  653. if(!generate_sine16_1("sine16-03.raw", 44100.0, 200000, 441.0, 0.50, 4410.0, 0.49)) return 1;
  654. if(!generate_sine16_1("sine16-04.raw", 44100.0, 200000, 8820.0, 0.70, 4410.0, 0.29)) return 1;
  655. if(!generate_sine16_2("sine16-10.raw", 48000.0, 200000, 441.0, 0.50, 441.0, 0.49, 1.0)) return 1;
  656. if(!generate_sine16_2("sine16-11.raw", 48000.0, 200000, 441.0, 0.61, 661.5, 0.37, 1.0)) return 1;
  657. if(!generate_sine16_2("sine16-12.raw", 96000.0, 200000, 441.0, 0.50, 882.0, 0.49, 1.0)) return 1;
  658. if(!generate_sine16_2("sine16-13.raw", 44100.0, 200000, 441.0, 0.50, 4410.0, 0.49, 1.0)) return 1;
  659. if(!generate_sine16_2("sine16-14.raw", 44100.0, 200000, 8820.0, 0.70, 4410.0, 0.29, 1.0)) return 1;
  660. if(!generate_sine16_2("sine16-15.raw", 44100.0, 200000, 441.0, 0.50, 441.0, 0.49, 0.5)) return 1;
  661. if(!generate_sine16_2("sine16-16.raw", 44100.0, 200000, 441.0, 0.61, 661.5, 0.37, 2.0)) return 1;
  662. if(!generate_sine16_2("sine16-17.raw", 44100.0, 200000, 441.0, 0.50, 882.0, 0.49, 0.7)) return 1;
  663. if(!generate_sine16_2("sine16-18.raw", 44100.0, 200000, 441.0, 0.50, 4410.0, 0.49, 1.3)) return 1;
  664. if(!generate_sine16_2("sine16-19.raw", 44100.0, 200000, 8820.0, 0.70, 4410.0, 0.29, 0.1)) return 1;
  665. if(!generate_sine24_1("sine24-00.raw", 48000.0, 200000, 441.0, 0.50, 441.0, 0.49)) return 1;
  666. if(!generate_sine24_1("sine24-01.raw", 96000.0, 200000, 441.0, 0.61, 661.5, 0.37)) return 1;
  667. if(!generate_sine24_1("sine24-02.raw", 44100.0, 200000, 441.0, 0.50, 882.0, 0.49)) return 1;
  668. if(!generate_sine24_1("sine24-03.raw", 44100.0, 200000, 441.0, 0.50, 4410.0, 0.49)) return 1;
  669. if(!generate_sine24_1("sine24-04.raw", 44100.0, 200000, 8820.0, 0.70, 4410.0, 0.29)) return 1;
  670. if(!generate_sine24_2("sine24-10.raw", 48000.0, 200000, 441.0, 0.50, 441.0, 0.49, 1.0)) return 1;
  671. if(!generate_sine24_2("sine24-11.raw", 48000.0, 200000, 441.0, 0.61, 661.5, 0.37, 1.0)) return 1;
  672. if(!generate_sine24_2("sine24-12.raw", 96000.0, 200000, 441.0, 0.50, 882.0, 0.49, 1.0)) return 1;
  673. if(!generate_sine24_2("sine24-13.raw", 44100.0, 200000, 441.0, 0.50, 4410.0, 0.49, 1.0)) return 1;
  674. if(!generate_sine24_2("sine24-14.raw", 44100.0, 200000, 8820.0, 0.70, 4410.0, 0.29, 1.0)) return 1;
  675. if(!generate_sine24_2("sine24-15.raw", 44100.0, 200000, 441.0, 0.50, 441.0, 0.49, 0.5)) return 1;
  676. if(!generate_sine24_2("sine24-16.raw", 44100.0, 200000, 441.0, 0.61, 661.5, 0.37, 2.0)) return 1;
  677. if(!generate_sine24_2("sine24-17.raw", 44100.0, 200000, 441.0, 0.50, 882.0, 0.49, 0.7)) return 1;
  678. if(!generate_sine24_2("sine24-18.raw", 44100.0, 200000, 441.0, 0.50, 4410.0, 0.49, 1.3)) return 1;
  679. if(!generate_sine24_2("sine24-19.raw", 44100.0, 200000, 8820.0, 0.70, 4410.0, 0.29, 0.1)) return 1;
  680. if(!generate_noise("noise.raw", 65536 * 8 * 3)) return 1;
  681. if(!generate_noise("noise8m32.raw", 32)) return 1;
  682. if(!generate_wackywavs()) return 1;
  683. for(channels = 1; channels <= 8; channels++) {
  684. unsigned bytes_per_sample;
  685. for(bytes_per_sample = 1; bytes_per_sample <= 3; bytes_per_sample++) {
  686. static const unsigned nsamples[] = { 1, 111, 5555 } ;
  687. unsigned samples;
  688. for(samples = 0; samples < sizeof(nsamples)/sizeof(nsamples[0]); samples++) {
  689. char fn[64];
  690. sprintf(fn, "rt-%u-%u-%u.aiff", channels, bytes_per_sample, nsamples[samples]);
  691. if(!generate_aiff(fn, 44100, channels, bytes_per_sample, nsamples[samples]))
  692. return 1;
  693. sprintf(fn, "rt-%u-%u-%u.raw", channels, bytes_per_sample, nsamples[samples]);
  694. if(!generate_noise(fn, channels * bytes_per_sample * nsamples[samples]))
  695. return 1;
  696. sprintf(fn, "rt-%u-%u-%u.wav", channels, bytes_per_sample, nsamples[samples]);
  697. if(!generate_wav(fn, 44100, channels, bytes_per_sample, nsamples[samples]))
  698. return 1;
  699. }
  700. }
  701. }
  702. return 0;
  703. }