blob: 42e09036945a369dd8e889918044f0ed3442d297 [file] [log] [blame]
Josh Coalson26560dd2001-02-08 00:38:41 +00001/* libFLAC - Free Lossless Audio Codec library
Josh Coalsona78fac62005-01-25 04:17:55 +00002 * Copyright (C) 2000,2001,2002,2003,2004,2005 Josh Coalson
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00003 *
Josh Coalsonafd81072003-01-31 23:34:56 +00004 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00007 *
Josh Coalsonafd81072003-01-31 23:34:56 +00008 * - Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000010 *
Josh Coalsonafd81072003-01-31 23:34:56 +000011 * - 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.
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000030 */
31
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000032#include <stdio.h>
Josh Coalson5a5de732002-08-01 06:37:11 +000033#include <stdlib.h> /* for qsort() */
Josh Coalson0d36cbd2002-07-15 05:24:56 +000034#include "FLAC/assert.h"
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000035#include "FLAC/format.h"
Josh Coalsoncda4c3c2002-08-17 15:21:29 +000036#include "private/format.h"
37
Matt Zimmermane5259172002-10-10 16:51:06 +000038#ifdef HAVE_CONFIG_H
39#include <config.h>
40#endif
41
Josh Coalsoncda4c3c2002-08-17 15:21:29 +000042#ifdef min
43#undef min
44#endif
45#define min(a,b) ((a)<(b)?(a):(b))
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000046
Josh Coalson49623ea2004-07-29 06:28:59 +000047/* adjust for compilers that can't understand using LLU suffix for uint64_t literals */
48#ifdef _MSC_VER
49#define FLAC__U64L(x) x
50#else
51#define FLAC__U64L(x) x##LLU
52#endif
53
Josh Coalson82738b32002-09-25 06:09:47 +000054/* VERSION should come from configure */
Josh Coalson6afed9f2002-10-16 22:29:47 +000055FLAC_API const char *FLAC__VERSION_STRING = VERSION;
Josh Coalson82738b32002-09-25 06:09:47 +000056
Josh Coalson0aad38b2002-09-09 05:06:51 +000057#if defined _MSC_VER || defined __MINW32__
58/* yet one more hack because of MSVC6: */
Josh Coalson66142c92005-02-04 06:42:38 +000059FLAC_API const char *FLAC__VENDOR_STRING = "reference libFLAC 1.1.2 20050205";
Josh Coalson0aad38b2002-09-09 05:06:51 +000060#else
Josh Coalson66142c92005-02-04 06:42:38 +000061FLAC_API const char *FLAC__VENDOR_STRING = "reference libFLAC " VERSION " 20050205";
Josh Coalson0aad38b2002-09-09 05:06:51 +000062#endif
63
Josh Coalson6afed9f2002-10-16 22:29:47 +000064FLAC_API const FLAC__byte FLAC__STREAM_SYNC_STRING[4] = { 'f','L','a','C' };
65FLAC_API const unsigned FLAC__STREAM_SYNC = 0x664C6143;
66FLAC_API const unsigned FLAC__STREAM_SYNC_LEN = 32; /* bits */;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000067
Josh Coalson6afed9f2002-10-16 22:29:47 +000068FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_MIN_BLOCK_SIZE_LEN = 16; /* bits */
69FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_MAX_BLOCK_SIZE_LEN = 16; /* bits */
70FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_MIN_FRAME_SIZE_LEN = 24; /* bits */
71FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_MAX_FRAME_SIZE_LEN = 24; /* bits */
72FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_SAMPLE_RATE_LEN = 20; /* bits */
73FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_CHANNELS_LEN = 3; /* bits */
74FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_BITS_PER_SAMPLE_LEN = 5; /* bits */
75FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_TOTAL_SAMPLES_LEN = 36; /* bits */
76FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_MD5SUM_LEN = 128; /* bits */
Josh Coalson20135722001-02-23 21:05:53 +000077
Josh Coalson6afed9f2002-10-16 22:29:47 +000078FLAC_API const unsigned FLAC__STREAM_METADATA_APPLICATION_ID_LEN = 32; /* bits */
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000079
Josh Coalson6afed9f2002-10-16 22:29:47 +000080FLAC_API const unsigned FLAC__STREAM_METADATA_SEEKPOINT_SAMPLE_NUMBER_LEN = 64; /* bits */
81FLAC_API const unsigned FLAC__STREAM_METADATA_SEEKPOINT_STREAM_OFFSET_LEN = 64; /* bits */
82FLAC_API const unsigned FLAC__STREAM_METADATA_SEEKPOINT_FRAME_SAMPLES_LEN = 16; /* bits */
Josh Coalsonc5d08e02001-04-10 19:13:50 +000083
Josh Coalson49623ea2004-07-29 06:28:59 +000084FLAC_API const FLAC__uint64 FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER = FLAC__U64L(0xffffffffffffffff);
Josh Coalson167658a2001-04-13 18:22:25 +000085
Josh Coalson6afed9f2002-10-16 22:29:47 +000086FLAC_API const unsigned FLAC__STREAM_METADATA_VORBIS_COMMENT_ENTRY_LENGTH_LEN = 32; /* bits */
87FLAC_API const unsigned FLAC__STREAM_METADATA_VORBIS_COMMENT_NUM_COMMENTS_LEN = 32; /* bits */
Josh Coalsoncc059bc2002-05-04 17:35:51 +000088
Josh Coalson8e9c4512002-11-14 05:00:24 +000089FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_INDEX_OFFSET_LEN = 64; /* bits */
90FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_INDEX_NUMBER_LEN = 8; /* bits */
Josh Coalsonb3538c82003-01-12 08:42:23 +000091FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_INDEX_RESERVED_LEN = 3*8; /* bits */
Josh Coalson8e9c4512002-11-14 05:00:24 +000092
93FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_TRACK_OFFSET_LEN = 64; /* bits */
94FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_TRACK_NUMBER_LEN = 8; /* bits */
95FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_TRACK_ISRC_LEN = 12*8; /* bits */
96FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_TRACK_TYPE_LEN = 1; /* bit */
97FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_TRACK_PRE_EMPHASIS_LEN = 1; /* bit */
Josh Coalsonb3538c82003-01-12 08:42:23 +000098FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_TRACK_RESERVED_LEN = 6+13*8; /* bits */
Josh Coalson8e9c4512002-11-14 05:00:24 +000099FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_TRACK_NUM_INDICES_LEN = 8; /* bits */
100
101FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_MEDIA_CATALOG_NUMBER_LEN = 128*8; /* bits */
102FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_LEAD_IN_LEN = 64; /* bits */
Josh Coalson8f0c71b2002-12-05 06:37:46 +0000103FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_IS_CD_LEN = 1; /* bit */
Josh Coalsonb3538c82003-01-12 08:42:23 +0000104FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_RESERVED_LEN = 7+258*8; /* bits */
Josh Coalson8e9c4512002-11-14 05:00:24 +0000105FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_NUM_TRACKS_LEN = 8; /* bits */
106
Josh Coalson6afed9f2002-10-16 22:29:47 +0000107FLAC_API const unsigned FLAC__STREAM_METADATA_IS_LAST_LEN = 1; /* bits */
108FLAC_API const unsigned FLAC__STREAM_METADATA_TYPE_LEN = 7; /* bits */
109FLAC_API const unsigned FLAC__STREAM_METADATA_LENGTH_LEN = 24; /* bits */
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000110
Josh Coalson6afed9f2002-10-16 22:29:47 +0000111FLAC_API const unsigned FLAC__FRAME_HEADER_SYNC = 0x3ffe;
112FLAC_API const unsigned FLAC__FRAME_HEADER_SYNC_LEN = 14; /* bits */
113FLAC_API const unsigned FLAC__FRAME_HEADER_RESERVED_LEN = 2; /* bits */
114FLAC_API const unsigned FLAC__FRAME_HEADER_BLOCK_SIZE_LEN = 4; /* bits */
115FLAC_API const unsigned FLAC__FRAME_HEADER_SAMPLE_RATE_LEN = 4; /* bits */
116FLAC_API const unsigned FLAC__FRAME_HEADER_CHANNEL_ASSIGNMENT_LEN = 4; /* bits */
117FLAC_API const unsigned FLAC__FRAME_HEADER_BITS_PER_SAMPLE_LEN = 3; /* bits */
118FLAC_API const unsigned FLAC__FRAME_HEADER_ZERO_PAD_LEN = 1; /* bits */
119FLAC_API const unsigned FLAC__FRAME_HEADER_CRC_LEN = 8; /* bits */
Josh Coalson215af572001-03-27 01:15:58 +0000120
Josh Coalson6afed9f2002-10-16 22:29:47 +0000121FLAC_API const unsigned FLAC__FRAME_FOOTER_CRC_LEN = 16; /* bits */
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000122
Josh Coalson6afed9f2002-10-16 22:29:47 +0000123FLAC_API const unsigned FLAC__ENTROPY_CODING_METHOD_TYPE_LEN = 2; /* bits */
124FLAC_API const unsigned FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ORDER_LEN = 4; /* bits */
125FLAC_API const unsigned FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN = 4; /* bits */
126FLAC_API const unsigned FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_RAW_LEN = 5; /* bits */
Josh Coalson2051dd42001-04-12 22:22:34 +0000127
Josh Coalson6afed9f2002-10-16 22:29:47 +0000128FLAC_API const unsigned FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ESCAPE_PARAMETER = 15; /* == (1<<FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN)-1 */
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000129
Josh Coalson6afed9f2002-10-16 22:29:47 +0000130FLAC_API const char * const FLAC__EntropyCodingMethodTypeString[] = {
Josh Coalson75d0a0b2001-01-24 00:42:16 +0000131 "PARTITIONED_RICE"
132};
133
Josh Coalson6afed9f2002-10-16 22:29:47 +0000134FLAC_API const unsigned FLAC__SUBFRAME_LPC_QLP_COEFF_PRECISION_LEN = 4; /* bits */
135FLAC_API const unsigned FLAC__SUBFRAME_LPC_QLP_SHIFT_LEN = 5; /* bits */
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000136
Josh Coalson6afed9f2002-10-16 22:29:47 +0000137FLAC_API const unsigned FLAC__SUBFRAME_ZERO_PAD_LEN = 1; /* bits */
138FLAC_API const unsigned FLAC__SUBFRAME_TYPE_LEN = 6; /* bits */
139FLAC_API const unsigned FLAC__SUBFRAME_WASTED_BITS_FLAG_LEN = 1; /* bits */
Josh Coalson215af572001-03-27 01:15:58 +0000140
Josh Coalson6afed9f2002-10-16 22:29:47 +0000141FLAC_API const unsigned FLAC__SUBFRAME_TYPE_CONSTANT_BYTE_ALIGNED_MASK = 0x00;
142FLAC_API const unsigned FLAC__SUBFRAME_TYPE_VERBATIM_BYTE_ALIGNED_MASK = 0x02;
143FLAC_API const unsigned FLAC__SUBFRAME_TYPE_FIXED_BYTE_ALIGNED_MASK = 0x10;
144FLAC_API const unsigned FLAC__SUBFRAME_TYPE_LPC_BYTE_ALIGNED_MASK = 0x40;
Josh Coalson75d0a0b2001-01-24 00:42:16 +0000145
Josh Coalson6afed9f2002-10-16 22:29:47 +0000146FLAC_API const char * const FLAC__SubframeTypeString[] = {
Josh Coalson75d0a0b2001-01-24 00:42:16 +0000147 "CONSTANT",
148 "VERBATIM",
149 "FIXED",
150 "LPC"
151};
152
Josh Coalson6afed9f2002-10-16 22:29:47 +0000153FLAC_API const char * const FLAC__ChannelAssignmentString[] = {
Josh Coalson75d0a0b2001-01-24 00:42:16 +0000154 "INDEPENDENT",
155 "LEFT_SIDE",
156 "RIGHT_SIDE",
157 "MID_SIDE"
158};
159
Josh Coalson6afed9f2002-10-16 22:29:47 +0000160FLAC_API const char * const FLAC__FrameNumberTypeString[] = {
Josh Coalson96084632001-07-16 18:07:12 +0000161 "FRAME_NUMBER_TYPE_FRAME_NUMBER",
162 "FRAME_NUMBER_TYPE_SAMPLE_NUMBER"
163};
164
Josh Coalson6afed9f2002-10-16 22:29:47 +0000165FLAC_API const char * const FLAC__MetadataTypeString[] = {
Josh Coalson20135722001-02-23 21:05:53 +0000166 "STREAMINFO",
167 "PADDING",
Josh Coalson9b04be72001-06-14 18:57:53 +0000168 "APPLICATION",
Josh Coalson7e19b542002-04-25 05:53:09 +0000169 "SEEKTABLE",
Josh Coalsone4869382002-11-15 05:41:48 +0000170 "VORBIS_COMMENT",
171 "CUESHEET"
Josh Coalson75d0a0b2001-01-24 00:42:16 +0000172};
Josh Coalsoncc059bc2002-05-04 17:35:51 +0000173
Josh Coalson6afed9f2002-10-16 22:29:47 +0000174FLAC_API FLAC__bool FLAC__format_sample_rate_is_valid(unsigned sample_rate)
Josh Coalsoncc059bc2002-05-04 17:35:51 +0000175{
176 if(
177 sample_rate == 0 ||
178 sample_rate > FLAC__MAX_SAMPLE_RATE ||
179 (
Josh Coalson765ff502002-08-27 05:46:11 +0000180 sample_rate >= (1u << 16) &&
Josh Coalsoncc059bc2002-05-04 17:35:51 +0000181 !(sample_rate % 1000 == 0 || sample_rate % 10 == 0)
182 )
183 ) {
184 return false;
185 }
186 else
187 return true;
188}
Josh Coalson0d36cbd2002-07-15 05:24:56 +0000189
Josh Coalson6afed9f2002-10-16 22:29:47 +0000190FLAC_API FLAC__bool FLAC__format_seektable_is_legal(const FLAC__StreamMetadata_SeekTable *seek_table)
Josh Coalson0d36cbd2002-07-15 05:24:56 +0000191{
192 unsigned i;
193 FLAC__uint64 prev_sample_number = 0;
194 FLAC__bool got_prev = false;
195
196 FLAC__ASSERT(0 != seek_table);
197
198 for(i = 0; i < seek_table->num_points; i++) {
199 if(got_prev) {
Josh Coalson5a5de732002-08-01 06:37:11 +0000200 if(
201 seek_table->points[i].sample_number != FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER &&
202 seek_table->points[i].sample_number <= prev_sample_number
203 )
Josh Coalson0d36cbd2002-07-15 05:24:56 +0000204 return false;
205 }
206 prev_sample_number = seek_table->points[i].sample_number;
207 got_prev = true;
208 }
209
210 return true;
211}
Josh Coalson5a5de732002-08-01 06:37:11 +0000212
213/* used as the sort predicate for qsort() */
214static int seekpoint_compare_(const FLAC__StreamMetadata_SeekPoint *l, const FLAC__StreamMetadata_SeekPoint *r)
215{
216 /* we don't just 'return l->sample_number - r->sample_number' since the result (FLAC__int64) might overflow an 'int' */
217 if(l->sample_number == r->sample_number)
218 return 0;
219 else if(l->sample_number < r->sample_number)
220 return -1;
221 else
222 return 1;
223}
224
Josh Coalson6afed9f2002-10-16 22:29:47 +0000225FLAC_API unsigned FLAC__format_seektable_sort(FLAC__StreamMetadata_SeekTable *seek_table)
Josh Coalson5a5de732002-08-01 06:37:11 +0000226{
227 unsigned i, j;
228 FLAC__bool first;
229
Josh Coalsona0ac09a2002-08-16 05:40:16 +0000230 FLAC__ASSERT(0 != seek_table);
231
Josh Coalson5a5de732002-08-01 06:37:11 +0000232 /* sort the seekpoints */
233 qsort(seek_table->points, seek_table->num_points, sizeof(FLAC__StreamMetadata_SeekPoint), (int (*)(const void *, const void *))seekpoint_compare_);
234
235 /* uniquify the seekpoints */
236 first = true;
237 for(i = j = 0; i < seek_table->num_points; i++) {
238 if(seek_table->points[i].sample_number != FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER) {
239 if(!first) {
240 if(seek_table->points[i].sample_number == seek_table->points[j-1].sample_number)
241 continue;
242 }
243 }
244 first = false;
245 seek_table->points[j++] = seek_table->points[i];
246 }
247
Josh Coalson08a62822002-08-01 07:33:36 +0000248 for(i = j; i < seek_table->num_points; i++) {
249 seek_table->points[i].sample_number = FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER;
250 seek_table->points[i].stream_offset = 0;
251 seek_table->points[i].frame_samples = 0;
Josh Coalson5a5de732002-08-01 06:37:11 +0000252 }
253
254 return j;
255}
Josh Coalsoncda4c3c2002-08-17 15:21:29 +0000256
Josh Coalsonf2a8e062005-08-24 07:37:11 +0000257/*
258 * also disallows non-shortest-form encodings, c.f.
259 * http://www.unicode.org/versions/corrigendum1.html
260 * and a more clear explanation at the end of this section:
261 * http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
262 */
Josh Coalson2de11242004-12-30 03:41:19 +0000263static __inline unsigned utf8len_(const FLAC__byte *utf8)
264{
265 FLAC__ASSERT(0 != utf8);
Josh Coalsonf2a8e062005-08-24 07:37:11 +0000266 if ((utf8[0] & 0x80) == 0) {
Josh Coalson2de11242004-12-30 03:41:19 +0000267 return 1;
Josh Coalsonf2a8e062005-08-24 07:37:11 +0000268 }
269 else if ((utf8[0] & 0xE0) == 0xC0 && (utf8[1] & 0xC0) == 0x80) {
270 if ((utf8[0] & 0x01) == 0xC0) /* overlong sequence check */
271 return 0;
Josh Coalson2de11242004-12-30 03:41:19 +0000272 return 2;
Josh Coalsonf2a8e062005-08-24 07:37:11 +0000273 }
274 else if ((utf8[0] & 0xF0) == 0xE0 && (utf8[1] & 0xC0) == 0x80 && (utf8[2] & 0xC0) == 0x80) {
275 if (utf8[0] == 0xE0 && (utf8[1] & 0xE0) == 0x80) /* overlong sequence check */
276 return 0;
277 /* illegal surrogates check (U+D800...U+DFFF and U+FFFE...U+FFFF) */
278 if (utf8[0] == 0xED && (utf8[1] & 0xE0) == 0xA0) /* D800-DFFF */
279 return 0;
280 if (utf8[0] == 0xEF && utf8[1] == 0xBF && (utf8[2] & 0xFE) == 0xBE) /* FFFE-FFFF */
281 return 0;
Josh Coalson2de11242004-12-30 03:41:19 +0000282 return 3;
Josh Coalsonf2a8e062005-08-24 07:37:11 +0000283 }
284 else if ((utf8[0] & 0xF8) == 0xF0 && (utf8[1] & 0xC0) == 0x80 && (utf8[2] & 0xC0) == 0x80 && (utf8[3] & 0xC0) == 0x80) {
285 if (utf8[0] == 0xF0 && (utf8[1] & 0xF0) == 0x80) /* overlong sequence check */
286 return 0;
287 return 4;
288 }
289 else if ((utf8[0] & 0xFC) == 0xF8 && (utf8[1] & 0xC0) == 0x80 && (utf8[2] & 0xC0) == 0x80 && (utf8[3] & 0xC0) == 0x80 && (utf8[4] & 0xC0) == 0x80) {
290 if (utf8[0] == 0xF8 && (utf8[1] & 0xF8) == 0x80) /* overlong sequence check */
291 return 0;
292 return 5;
293 }
294 else if ((utf8[0] & 0xFE) == 0xFC && (utf8[1] & 0xC0) == 0x80 && (utf8[2] & 0xC0) == 0x80 && (utf8[3] & 0xC0) == 0x80 && (utf8[4] & 0xC0) == 0x80 && (utf8[5] & 0xC0) == 0x80) {
295 if (utf8[0] == 0xFC && (utf8[1] & 0xFC) == 0x80) /* overlong sequence check */
296 return 0;
297 return 6;
298 }
299 else {
Josh Coalson2de11242004-12-30 03:41:19 +0000300 return 0;
Josh Coalsonf2a8e062005-08-24 07:37:11 +0000301 }
Josh Coalson2de11242004-12-30 03:41:19 +0000302}
303
304FLAC_API FLAC__bool FLAC__format_vorbiscomment_entry_name_is_legal(const char *name)
305{
306 char c;
307 for(c = *name; c; c = *(++name))
308 if(c < 0x20 || c == 0x3d || c > 0x7d)
309 return false;
310 return true;
311}
312
313FLAC_API FLAC__bool FLAC__format_vorbiscomment_entry_value_is_legal(const FLAC__byte *value, unsigned length)
314{
315 if(length == (unsigned)(-1)) {
316 while(*value) {
317 unsigned n = utf8len_(value);
318 if(n == 0)
319 return false;
320 value += n;
321 }
322 }
323 else {
324 const FLAC__byte *end = value + length;
325 while(value < end) {
326 unsigned n = utf8len_(value);
327 if(n == 0)
328 return false;
329 value += n;
330 }
331 if(value != end)
332 return false;
333 }
334 return true;
335}
336
337FLAC_API FLAC__bool FLAC__format_vorbiscomment_entry_is_legal(const FLAC__byte *entry, unsigned length)
338{
339 const FLAC__byte *s, *end;
340
341 for(s = entry, end = s + length; s < end && *s != '='; s++) {
342 if(*s < 0x20 || *s > 0x7D)
343 return false;
344 }
345 if(s == end)
346 return false;
347
348 s++; /* skip '=' */
349
350 while(s < end) {
351 unsigned n = utf8len_(s);
352 if(n == 0)
353 return false;
354 s += n;
355 }
356 if(s != end)
357 return false;
358
359 return true;
360}
361
Josh Coalson8e9c4512002-11-14 05:00:24 +0000362FLAC_API FLAC__bool FLAC__format_cuesheet_is_legal(const FLAC__StreamMetadata_CueSheet *cue_sheet, FLAC__bool check_cd_da_subset, const char **violation)
363{
364 unsigned i, j;
365
366 if(check_cd_da_subset) {
367 if(cue_sheet->lead_in < 2 * 44100) {
368 if(violation) *violation = "CD-DA cue sheet must have a lead-in length of at least 2 seconds";
369 return false;
370 }
371 if(cue_sheet->lead_in % 588 != 0) {
372 if(violation) *violation = "CD-DA cue sheet lead-in length must be evenly divisible by 588 samples";
373 return false;
374 }
375 }
376
377 if(cue_sheet->num_tracks == 0) {
378 if(violation) *violation = "cue sheet must have at least one track (the lead-out)";
379 return false;
380 }
381
382 if(check_cd_da_subset && cue_sheet->tracks[cue_sheet->num_tracks-1].number != 170) {
383 if(violation) *violation = "CD-DA cue sheet must have a lead-out track number 170 (0xAA)";
384 return false;
385 }
386
387 for(i = 0; i < cue_sheet->num_tracks; i++) {
388 if(cue_sheet->tracks[i].number == 0) {
389 if(violation) *violation = "cue sheet may not have a track number 0";
390 return false;
391 }
392
393 if(check_cd_da_subset) {
394 if(!((cue_sheet->tracks[i].number >= 1 && cue_sheet->tracks[i].number <= 99) || cue_sheet->tracks[i].number == 170)) {
395 if(violation) *violation = "CD-DA cue sheet track number must be 1-99 or 170";
396 return false;
397 }
398 }
399
400 if(check_cd_da_subset && cue_sheet->tracks[i].offset % 588 != 0) {
Josh Coalsonf2a8e062005-08-24 07:37:11 +0000401 if(violation) {
Josh Coalsonfe1d3112005-08-24 00:14:23 +0000402 if(i == cue_sheet->num_tracks-1) /* the lead-out track... */
403 *violation = "CD-DA cue sheet lead-out offset must be evenly divisible by 588 samples";
404 else
405 *violation = "CD-DA cue sheet track offset must be evenly divisible by 588 samples";
Josh Coalsonf2a8e062005-08-24 07:37:11 +0000406 }
Josh Coalson8e9c4512002-11-14 05:00:24 +0000407 return false;
408 }
409
Josh Coalson3f86cc72002-11-21 06:41:46 +0000410 if(i < cue_sheet->num_tracks - 1) {
411 if(cue_sheet->tracks[i].num_indices == 0) {
412 if(violation) *violation = "cue sheet track must have at least one index point";
413 return false;
414 }
Josh Coalson8e9c4512002-11-14 05:00:24 +0000415
Josh Coalson3f86cc72002-11-21 06:41:46 +0000416 if(cue_sheet->tracks[i].indices[0].number > 1) {
417 if(violation) *violation = "cue sheet track's first index number must be 0 or 1";
418 return false;
419 }
Josh Coalson8e9c4512002-11-14 05:00:24 +0000420 }
421
422 for(j = 0; j < cue_sheet->tracks[i].num_indices; j++) {
423 if(check_cd_da_subset && cue_sheet->tracks[i].indices[j].offset % 588 != 0) {
424 if(violation) *violation = "CD-DA cue sheet track index offset must be evenly divisible by 588 samples";
425 return false;
426 }
427
428 if(j > 0) {
429 if(cue_sheet->tracks[i].indices[j].number != cue_sheet->tracks[i].indices[j-1].number + 1) {
430 if(violation) *violation = "cue sheet track index numbers must increase by 1";
431 return false;
432 }
433 }
434 }
435 }
436
437 return true;
438}
439
440/*
441 * These routines are private to libFLAC
442 */
Josh Coalsoncda4c3c2002-08-17 15:21:29 +0000443unsigned FLAC__format_get_max_rice_partition_order(unsigned blocksize, unsigned predictor_order)
444{
445 return
446 FLAC__format_get_max_rice_partition_order_from_blocksize_limited_max_and_predictor_order(
447 FLAC__format_get_max_rice_partition_order_from_blocksize(blocksize),
448 blocksize,
449 predictor_order
450 );
451}
452
453unsigned FLAC__format_get_max_rice_partition_order_from_blocksize(unsigned blocksize)
454{
455 unsigned max_rice_partition_order = 0;
456 while(!(blocksize & 1)) {
457 max_rice_partition_order++;
458 blocksize >>= 1;
459 }
460 return min(FLAC__MAX_RICE_PARTITION_ORDER, max_rice_partition_order);
461}
462
463unsigned FLAC__format_get_max_rice_partition_order_from_blocksize_limited_max_and_predictor_order(unsigned limit, unsigned blocksize, unsigned predictor_order)
464{
465 unsigned max_rice_partition_order = limit;
466
467 while(max_rice_partition_order > 0 && (blocksize >> max_rice_partition_order) <= predictor_order)
468 max_rice_partition_order--;
469
Josh Coalsonf12edc62002-10-11 06:24:33 +0000470 FLAC__ASSERT(
471 (max_rice_partition_order == 0 && blocksize >= predictor_order) ||
472 (max_rice_partition_order > 0 && blocksize >> max_rice_partition_order > predictor_order)
473 );
Josh Coalsoncda4c3c2002-08-17 15:21:29 +0000474
475 return max_rice_partition_order;
476}
477
Josh Coalsona37ba462002-08-19 21:36:39 +0000478void FLAC__format_entropy_coding_method_partitioned_rice_contents_init(FLAC__EntropyCodingMethod_PartitionedRiceContents *object)
Josh Coalsoncda4c3c2002-08-17 15:21:29 +0000479{
480 FLAC__ASSERT(0 != object);
481
Josh Coalsoncda4c3c2002-08-17 15:21:29 +0000482 object->parameters = 0;
483 object->raw_bits = 0;
484 object->capacity_by_order = 0;
485}
486
Josh Coalsona37ba462002-08-19 21:36:39 +0000487void FLAC__format_entropy_coding_method_partitioned_rice_contents_clear(FLAC__EntropyCodingMethod_PartitionedRiceContents *object)
Josh Coalsoncda4c3c2002-08-17 15:21:29 +0000488{
489 FLAC__ASSERT(0 != object);
490
491 if(0 != object->parameters)
492 free(object->parameters);
493 if(0 != object->raw_bits)
494 free(object->raw_bits);
Josh Coalsona37ba462002-08-19 21:36:39 +0000495 FLAC__format_entropy_coding_method_partitioned_rice_contents_init(object);
Josh Coalsoncda4c3c2002-08-17 15:21:29 +0000496}
497
Josh Coalsona37ba462002-08-19 21:36:39 +0000498FLAC__bool FLAC__format_entropy_coding_method_partitioned_rice_contents_ensure_size(FLAC__EntropyCodingMethod_PartitionedRiceContents *object, unsigned max_partition_order)
Josh Coalsoncda4c3c2002-08-17 15:21:29 +0000499{
500 FLAC__ASSERT(0 != object);
501
502 FLAC__ASSERT(object->capacity_by_order > 0 || (0 == object->parameters && 0 == object->raw_bits));
503
504 if(object->capacity_by_order < max_partition_order) {
Josh Coalson5e3fcb22002-11-06 07:11:26 +0000505 if(0 == (object->parameters = (unsigned*)realloc(object->parameters, sizeof(unsigned)*(1 << max_partition_order))))
Josh Coalsoncda4c3c2002-08-17 15:21:29 +0000506 return false;
Josh Coalson5e3fcb22002-11-06 07:11:26 +0000507 if(0 == (object->raw_bits = (unsigned*)realloc(object->raw_bits, sizeof(unsigned)*(1 << max_partition_order))))
Josh Coalsoncda4c3c2002-08-17 15:21:29 +0000508 return false;
509 object->capacity_by_order = max_partition_order;
510 }
511
512 return true;
513}