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

Windows CE

开发平台:

C/C++

  1. /* libFLAC - Free Lossless Audio Codec library
  2.  * Copyright (C) 2000,2001,2002,2003,2004,2005  Josh Coalson
  3.  *
  4.  * Redistribution and use in source and binary forms, with or without
  5.  * modification, are permitted provided that the following conditions
  6.  * are met:
  7.  *
  8.  * - Redistributions of source code must retain the above copyright
  9.  * notice, this list of conditions and the following disclaimer.
  10.  *
  11.  * - Redistributions in binary form must reproduce the above copyright
  12.  * notice, this list of conditions and the following disclaimer in the
  13.  * documentation and/or other materials provided with the distribution.
  14.  *
  15.  * - Neither the name of the Xiph.org Foundation nor the names of its
  16.  * contributors may be used to endorse or promote products derived from
  17.  * this software without specific prior written permission.
  18.  *
  19.  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  20.  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  21.  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  22.  * A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR
  23.  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  24.  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  25.  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  26.  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  27.  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  28.  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  29.  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  30.  */
  31. #include <stdio.h>
  32. #include <stdlib.h> /* for qsort() */
  33. #include "FLAC/assert.h"
  34. #include "FLAC/format.h"
  35. #include "private/format.h"
  36. #ifdef HAVE_CONFIG_H
  37. #include <config.h>
  38. #endif
  39. #ifdef min
  40. #undef min
  41. #endif
  42. #define min(a,b) ((a)<(b)?(a):(b))
  43. /* adjust for compilers that can't understand using LLU suffix for uint64_t literals */
  44. #ifdef _MSC_VER
  45. #define FLAC__U64L(x) x
  46. #else
  47. #define FLAC__U64L(x) x##LLU
  48. #endif
  49. /* VERSION should come from configure */
  50. FLAC_API const char *FLAC__VERSION_STRING = VERSION;
  51. #if defined _MSC_VER || defined __MINW32__
  52. /* yet one more hack because of MSVC6: */
  53. FLAC_API const char *FLAC__VENDOR_STRING = "reference libFLAC 1.1.2 20050205";
  54. #else
  55. FLAC_API const char *FLAC__VENDOR_STRING = "reference libFLAC " VERSION " 20050205";
  56. #endif
  57. FLAC_API const FLAC__byte FLAC__STREAM_SYNC_STRING[4] = { 'f','L','a','C' };
  58. FLAC_API const unsigned FLAC__STREAM_SYNC = 0x664C6143;
  59. FLAC_API const unsigned FLAC__STREAM_SYNC_LEN = 32; /* bits */;
  60. FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_MIN_BLOCK_SIZE_LEN = 16; /* bits */
  61. FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_MAX_BLOCK_SIZE_LEN = 16; /* bits */
  62. FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_MIN_FRAME_SIZE_LEN = 24; /* bits */
  63. FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_MAX_FRAME_SIZE_LEN = 24; /* bits */
  64. FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_SAMPLE_RATE_LEN = 20; /* bits */
  65. FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_CHANNELS_LEN = 3; /* bits */
  66. FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_BITS_PER_SAMPLE_LEN = 5; /* bits */
  67. FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_TOTAL_SAMPLES_LEN = 36; /* bits */
  68. FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_MD5SUM_LEN = 128; /* bits */
  69. FLAC_API const unsigned FLAC__STREAM_METADATA_APPLICATION_ID_LEN = 32; /* bits */
  70. FLAC_API const unsigned FLAC__STREAM_METADATA_SEEKPOINT_SAMPLE_NUMBER_LEN = 64; /* bits */
  71. FLAC_API const unsigned FLAC__STREAM_METADATA_SEEKPOINT_STREAM_OFFSET_LEN = 64; /* bits */
  72. FLAC_API const unsigned FLAC__STREAM_METADATA_SEEKPOINT_FRAME_SAMPLES_LEN = 16; /* bits */
  73. FLAC_API const FLAC__uint64 FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER = FLAC__U64L(0xffffffffffffffff);
  74. FLAC_API const unsigned FLAC__STREAM_METADATA_VORBIS_COMMENT_ENTRY_LENGTH_LEN = 32; /* bits */
  75. FLAC_API const unsigned FLAC__STREAM_METADATA_VORBIS_COMMENT_NUM_COMMENTS_LEN = 32; /* bits */
  76. FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_INDEX_OFFSET_LEN = 64; /* bits */
  77. FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_INDEX_NUMBER_LEN = 8; /* bits */
  78. FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_INDEX_RESERVED_LEN = 3*8; /* bits */
  79. FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_TRACK_OFFSET_LEN = 64; /* bits */
  80. FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_TRACK_NUMBER_LEN = 8; /* bits */
  81. FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_TRACK_ISRC_LEN = 12*8; /* bits */
  82. FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_TRACK_TYPE_LEN = 1; /* bit */
  83. FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_TRACK_PRE_EMPHASIS_LEN = 1; /* bit */
  84. FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_TRACK_RESERVED_LEN = 6+13*8; /* bits */
  85. FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_TRACK_NUM_INDICES_LEN = 8; /* bits */
  86. FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_MEDIA_CATALOG_NUMBER_LEN = 128*8; /* bits */
  87. FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_LEAD_IN_LEN = 64; /* bits */
  88. FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_IS_CD_LEN = 1; /* bit */
  89. FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_RESERVED_LEN = 7+258*8; /* bits */
  90. FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_NUM_TRACKS_LEN = 8; /* bits */
  91. FLAC_API const unsigned FLAC__STREAM_METADATA_IS_LAST_LEN = 1; /* bits */
  92. FLAC_API const unsigned FLAC__STREAM_METADATA_TYPE_LEN = 7; /* bits */
  93. FLAC_API const unsigned FLAC__STREAM_METADATA_LENGTH_LEN = 24; /* bits */
  94. FLAC_API const unsigned FLAC__FRAME_HEADER_SYNC = 0x3ffe;
  95. FLAC_API const unsigned FLAC__FRAME_HEADER_SYNC_LEN = 14; /* bits */
  96. FLAC_API const unsigned FLAC__FRAME_HEADER_RESERVED_LEN = 2; /* bits */
  97. FLAC_API const unsigned FLAC__FRAME_HEADER_BLOCK_SIZE_LEN = 4; /* bits */
  98. FLAC_API const unsigned FLAC__FRAME_HEADER_SAMPLE_RATE_LEN = 4; /* bits */
  99. FLAC_API const unsigned FLAC__FRAME_HEADER_CHANNEL_ASSIGNMENT_LEN = 4; /* bits */
  100. FLAC_API const unsigned FLAC__FRAME_HEADER_BITS_PER_SAMPLE_LEN = 3; /* bits */
  101. FLAC_API const unsigned FLAC__FRAME_HEADER_ZERO_PAD_LEN = 1; /* bits */
  102. FLAC_API const unsigned FLAC__FRAME_HEADER_CRC_LEN = 8; /* bits */
  103. FLAC_API const unsigned FLAC__FRAME_FOOTER_CRC_LEN = 16; /* bits */
  104. FLAC_API const unsigned FLAC__ENTROPY_CODING_METHOD_TYPE_LEN = 2; /* bits */
  105. FLAC_API const unsigned FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ORDER_LEN = 4; /* bits */
  106. FLAC_API const unsigned FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN = 4; /* bits */
  107. FLAC_API const unsigned FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_RAW_LEN = 5; /* bits */
  108. FLAC_API const unsigned FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER = 15; /* == (1<<FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN)-1 */
  109. FLAC_API const char * const FLAC__EntropyCodingMethodTypeString[] = {
  110. "PARTITIONED_RICE"
  111. };
  112. FLAC_API const unsigned FLAC__SUBFRAME_LPC_QLP_COEFF_PRECISION_LEN = 4; /* bits */
  113. FLAC_API const unsigned FLAC__SUBFRAME_LPC_QLP_SHIFT_LEN = 5; /* bits */
  114. FLAC_API const unsigned FLAC__SUBFRAME_ZERO_PAD_LEN = 1; /* bits */
  115. FLAC_API const unsigned FLAC__SUBFRAME_TYPE_LEN = 6; /* bits */
  116. FLAC_API const unsigned FLAC__SUBFRAME_WASTED_BITS_FLAG_LEN = 1; /* bits */
  117. FLAC_API const unsigned FLAC__SUBFRAME_TYPE_CONSTANT_BYTE_ALIGNED_MASK = 0x00;
  118. FLAC_API const unsigned FLAC__SUBFRAME_TYPE_VERBATIM_BYTE_ALIGNED_MASK = 0x02;
  119. FLAC_API const unsigned FLAC__SUBFRAME_TYPE_FIXED_BYTE_ALIGNED_MASK = 0x10;
  120. FLAC_API const unsigned FLAC__SUBFRAME_TYPE_LPC_BYTE_ALIGNED_MASK = 0x40;
  121. FLAC_API const char * const FLAC__SubframeTypeString[] = {
  122. "CONSTANT",
  123. "VERBATIM",
  124. "FIXED",
  125. "LPC"
  126. };
  127. FLAC_API const char * const FLAC__ChannelAssignmentString[] = {
  128. "INDEPENDENT",
  129. "LEFT_SIDE",
  130. "RIGHT_SIDE",
  131. "MID_SIDE"
  132. };
  133. FLAC_API const char * const FLAC__FrameNumberTypeString[] = {
  134. "FRAME_NUMBER_TYPE_FRAME_NUMBER",
  135. "FRAME_NUMBER_TYPE_SAMPLE_NUMBER"
  136. };
  137. FLAC_API const char * const FLAC__MetadataTypeString[] = {
  138. "STREAMINFO",
  139. "PADDING",
  140. "APPLICATION",
  141. "SEEKTABLE",
  142. "VORBIS_COMMENT",
  143. "CUESHEET"
  144. };
  145. FLAC_API FLAC__bool FLAC__format_sample_rate_is_valid(unsigned sample_rate)
  146. {
  147. if(
  148. sample_rate == 0 ||
  149. sample_rate > FLAC__MAX_SAMPLE_RATE ||
  150. (
  151. sample_rate >= (1u << 16) &&
  152. !(sample_rate % 1000 == 0 || sample_rate % 10 == 0)
  153. )
  154. ) {
  155. return false;
  156. }
  157. else
  158. return true;
  159. }
  160. FLAC_API FLAC__bool FLAC__format_seektable_is_legal(const FLAC__StreamMetadata_SeekTable *seek_table)
  161. {
  162. unsigned i;
  163. FLAC__uint64 prev_sample_number = 0;
  164. FLAC__bool got_prev = false;
  165. FLAC__ASSERT(0 != seek_table);
  166. for(i = 0; i < seek_table->num_points; i++) {
  167. if(got_prev) {
  168. if(
  169. seek_table->points[i].sample_number != FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER &&
  170. seek_table->points[i].sample_number <= prev_sample_number
  171. )
  172. return false;
  173. }
  174. prev_sample_number = seek_table->points[i].sample_number;
  175. got_prev = true;
  176. }
  177. return true;
  178. }
  179. /* used as the sort predicate for qsort() */
  180. static int seekpoint_compare_(const FLAC__StreamMetadata_SeekPoint *l, const FLAC__StreamMetadata_SeekPoint *r)
  181. {
  182. /* we don't just 'return l->sample_number - r->sample_number' since the result (FLAC__int64) might overflow an 'int' */
  183. if(l->sample_number == r->sample_number)
  184. return 0;
  185. else if(l->sample_number < r->sample_number)
  186. return -1;
  187. else
  188. return 1;
  189. }
  190. FLAC_API unsigned FLAC__format_seektable_sort(FLAC__StreamMetadata_SeekTable *seek_table)
  191. {
  192. unsigned i, j;
  193. FLAC__bool first;
  194. FLAC__ASSERT(0 != seek_table);
  195. /* sort the seekpoints */
  196. qsort(seek_table->points, seek_table->num_points, sizeof(FLAC__StreamMetadata_SeekPoint), (int (*)(const void *, const void *))seekpoint_compare_);
  197. /* uniquify the seekpoints */
  198. first = true;
  199. for(i = j = 0; i < seek_table->num_points; i++) {
  200. if(seek_table->points[i].sample_number != FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER) {
  201. if(!first) {
  202. if(seek_table->points[i].sample_number == seek_table->points[j-1].sample_number)
  203. continue;
  204. }
  205. }
  206. first = false;
  207. seek_table->points[j++] = seek_table->points[i];
  208. }
  209. for(i = j; i < seek_table->num_points; i++) {
  210. seek_table->points[i].sample_number = FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER;
  211. seek_table->points[i].stream_offset = 0;
  212. seek_table->points[i].frame_samples = 0;
  213. }
  214. return j;
  215. }
  216. static __inline unsigned utf8len_(const FLAC__byte *utf8)
  217. {
  218. FLAC__ASSERT(0 != utf8);
  219. if ((utf8[0] & 0x80) == 0)
  220. return 1;
  221. else if ((utf8[0] & 0xE0) == 0xC0 && (utf8[1] & 0xC0) == 0x80)
  222. return 2;
  223. else if ((utf8[0] & 0xF0) == 0xE0 && (utf8[1] & 0xC0) == 0x80 && (utf8[2] & 0xC0) == 0x80)
  224. return 3;
  225. else
  226. return 0;
  227. }
  228. FLAC_API FLAC__bool FLAC__format_vorbiscomment_entry_name_is_legal(const char *name)
  229. {
  230. char c;
  231. for(c = *name; c; c = *(++name))
  232. if(c < 0x20 || c == 0x3d || c > 0x7d)
  233. return false;
  234. return true;
  235. }
  236. FLAC_API FLAC__bool FLAC__format_vorbiscomment_entry_value_is_legal(const FLAC__byte *value, unsigned length)
  237. {
  238. if(length == (unsigned)(-1)) {
  239. while(*value) {
  240. unsigned n = utf8len_(value);
  241. if(n == 0)
  242. return false;
  243. value += n;
  244. }
  245. }
  246. else {
  247. const FLAC__byte *end = value + length;
  248. while(value < end) {
  249. unsigned n = utf8len_(value);
  250. if(n == 0)
  251. return false;
  252. value += n;
  253. }
  254. if(value != end)
  255. return false;
  256. }
  257. return true;
  258. }
  259. FLAC_API FLAC__bool FLAC__format_vorbiscomment_entry_is_legal(const FLAC__byte *entry, unsigned length)
  260. {
  261. const FLAC__byte *s, *end;
  262. for(s = entry, end = s + length; s < end && *s != '='; s++) {
  263. if(*s < 0x20 || *s > 0x7D)
  264. return false;
  265. }
  266. if(s == end)
  267. return false;
  268. s++; /* skip '=' */
  269. while(s < end) {
  270. unsigned n = utf8len_(s);
  271. if(n == 0)
  272. return false;
  273. s += n;
  274. }
  275. if(s != end)
  276. return false;
  277. return true;
  278. }
  279. FLAC_API FLAC__bool FLAC__format_cuesheet_is_legal(const FLAC__StreamMetadata_CueSheet *cue_sheet, FLAC__bool check_cd_da_subset, const char **violation)
  280. {
  281. unsigned i, j;
  282. if(check_cd_da_subset) {
  283. if(cue_sheet->lead_in < 2 * 44100) {
  284. if(violation) *violation = "CD-DA cue sheet must have a lead-in length of at least 2 seconds";
  285. return false;
  286. }
  287. if(cue_sheet->lead_in % 588 != 0) {
  288. if(violation) *violation = "CD-DA cue sheet lead-in length must be evenly divisible by 588 samples";
  289. return false;
  290. }
  291. }
  292. if(cue_sheet->num_tracks == 0) {
  293. if(violation) *violation = "cue sheet must have at least one track (the lead-out)";
  294. return false;
  295. }
  296. if(check_cd_da_subset && cue_sheet->tracks[cue_sheet->num_tracks-1].number != 170) {
  297. if(violation) *violation = "CD-DA cue sheet must have a lead-out track number 170 (0xAA)";
  298. return false;
  299. }
  300. for(i = 0; i < cue_sheet->num_tracks; i++) {
  301. if(cue_sheet->tracks[i].number == 0) {
  302. if(violation) *violation = "cue sheet may not have a track number 0";
  303. return false;
  304. }
  305. if(check_cd_da_subset) {
  306. if(!((cue_sheet->tracks[i].number >= 1 && cue_sheet->tracks[i].number <= 99) || cue_sheet->tracks[i].number == 170)) {
  307. if(violation) *violation = "CD-DA cue sheet track number must be 1-99 or 170";
  308. return false;
  309. }
  310. }
  311. if(check_cd_da_subset && cue_sheet->tracks[i].offset % 588 != 0) {
  312. if(violation) *violation = "CD-DA cue sheet track offset must be evenly divisible by 588 samples";
  313. return false;
  314. }
  315. if(i < cue_sheet->num_tracks - 1) {
  316. if(cue_sheet->tracks[i].num_indices == 0) {
  317. if(violation) *violation = "cue sheet track must have at least one index point";
  318. return false;
  319. }
  320. if(cue_sheet->tracks[i].indices[0].number > 1) {
  321. if(violation) *violation = "cue sheet track's first index number must be 0 or 1";
  322. return false;
  323. }
  324. }
  325. for(j = 0; j < cue_sheet->tracks[i].num_indices; j++) {
  326. if(check_cd_da_subset && cue_sheet->tracks[i].indices[j].offset % 588 != 0) {
  327. if(violation) *violation = "CD-DA cue sheet track index offset must be evenly divisible by 588 samples";
  328. return false;
  329. }
  330. if(j > 0) {
  331. if(cue_sheet->tracks[i].indices[j].number != cue_sheet->tracks[i].indices[j-1].number + 1) {
  332. if(violation) *violation = "cue sheet track index numbers must increase by 1";
  333. return false;
  334. }
  335. }
  336. }
  337. }
  338. return true;
  339. }
  340. /*
  341.  * These routines are private to libFLAC
  342.  */
  343. unsigned FLAC__format_get_max_rice_partition_order(unsigned blocksize, unsigned predictor_order)
  344. {
  345. return
  346. FLAC__format_get_max_rice_partition_order_from_blocksize_limited_max_and_predictor_order(
  347. FLAC__format_get_max_rice_partition_order_from_blocksize(blocksize),
  348. blocksize,
  349. predictor_order
  350. );
  351. }
  352. unsigned FLAC__format_get_max_rice_partition_order_from_blocksize(unsigned blocksize)
  353. {
  354. unsigned max_rice_partition_order = 0;
  355. while(!(blocksize & 1)) {
  356. max_rice_partition_order++;
  357. blocksize >>= 1;
  358. }
  359. return min(FLAC__MAX_RICE_PARTITION_ORDER, max_rice_partition_order);
  360. }
  361. unsigned FLAC__format_get_max_rice_partition_order_from_blocksize_limited_max_and_predictor_order(unsigned limit, unsigned blocksize, unsigned predictor_order)
  362. {
  363. unsigned max_rice_partition_order = limit;
  364. while(max_rice_partition_order > 0 && (blocksize >> max_rice_partition_order) <= predictor_order)
  365. max_rice_partition_order--;
  366. FLAC__ASSERT(
  367. (max_rice_partition_order == 0 && blocksize >= predictor_order) ||
  368. (max_rice_partition_order > 0 && blocksize >> max_rice_partition_order > predictor_order)
  369. );
  370. return max_rice_partition_order;
  371. }
  372. void FLAC__format_entropy_coding_method_partitioned_rice_contents_init(FLAC__EntropyCodingMethod_PartitionedRiceContents *object)
  373. {
  374. FLAC__ASSERT(0 != object);
  375. object->parameters = 0;
  376. object->raw_bits = 0;
  377. object->capacity_by_order = 0;
  378. }
  379. void FLAC__format_entropy_coding_method_partitioned_rice_contents_clear(FLAC__EntropyCodingMethod_PartitionedRiceContents *object)
  380. {
  381. FLAC__ASSERT(0 != object);
  382. if(0 != object->parameters)
  383. free(object->parameters);
  384. if(0 != object->raw_bits)
  385. free(object->raw_bits);
  386. FLAC__format_entropy_coding_method_partitioned_rice_contents_init(object);
  387. }
  388. FLAC__bool FLAC__format_entropy_coding_method_partitioned_rice_contents_ensure_size(FLAC__EntropyCodingMethod_PartitionedRiceContents *object, unsigned max_partition_order)
  389. {
  390. FLAC__ASSERT(0 != object);
  391. FLAC__ASSERT(object->capacity_by_order > 0 || (0 == object->parameters && 0 == object->raw_bits));
  392. if(object->capacity_by_order < max_partition_order) {
  393. if(0 == (object->parameters = (unsigned*)realloc(object->parameters, sizeof(unsigned)*(1 << max_partition_order))))
  394. return false;
  395. if(0 == (object->raw_bits = (unsigned*)realloc(object->raw_bits, sizeof(unsigned)*(1 << max_partition_order))))
  396. return false;
  397. object->capacity_by_order = max_partition_order;
  398. }
  399. return true;
  400. }