blob: b5dfcaac036622665a9df4638e1e15d1ac5351b1 [file] [log] [blame]
Josh Coalson26560dd2001-02-08 00:38:41 +00001/* libFLAC - Free Lossless Audio Codec library
Josh Coalson0395dac2006-04-25 06:59:33 +00002 * Copyright (C) 2000,2001,2002,2003,2004,2005,2006 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 Coalsonb1ec7962006-05-24 04:41:36 +000032#if HAVE_CONFIG_H
33# include <config.h>
34#endif
35
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000036#include <stdio.h>
Josh Coalson5a5de732002-08-01 06:37:11 +000037#include <stdlib.h> /* for qsort() */
Josh Coalson0d36cbd2002-07-15 05:24:56 +000038#include "FLAC/assert.h"
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000039#include "FLAC/format.h"
Josh Coalsoncda4c3c2002-08-17 15:21:29 +000040#include "private/format.h"
41
42#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 Coalsonbf0f52c2006-04-25 06:38:43 +000059/*@@@@@@WAS:FLAC_API const char *FLAC__VENDOR_STRING = "reference libFLAC 1.1.2 20050205";*/
60FLAC_API const char *FLAC__VENDOR_STRING = "reference libFLAC CVS 20060425";
Josh Coalson0aad38b2002-09-09 05:06:51 +000061#else
Josh Coalsonbf0f52c2006-04-25 06:38:43 +000062FLAC_API const char *FLAC__VENDOR_STRING = "reference libFLAC " VERSION " 20060425";
Josh Coalson0aad38b2002-09-09 05:06:51 +000063#endif
64
Josh Coalson6afed9f2002-10-16 22:29:47 +000065FLAC_API const FLAC__byte FLAC__STREAM_SYNC_STRING[4] = { 'f','L','a','C' };
66FLAC_API const unsigned FLAC__STREAM_SYNC = 0x664C6143;
Josh Coalson38892872005-08-31 00:18:18 +000067FLAC_API const unsigned FLAC__STREAM_SYNC_LEN = 32; /* bits */
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000068
Josh Coalson6afed9f2002-10-16 22:29:47 +000069FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_MIN_BLOCK_SIZE_LEN = 16; /* bits */
70FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_MAX_BLOCK_SIZE_LEN = 16; /* bits */
71FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_MIN_FRAME_SIZE_LEN = 24; /* bits */
72FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_MAX_FRAME_SIZE_LEN = 24; /* bits */
73FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_SAMPLE_RATE_LEN = 20; /* bits */
74FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_CHANNELS_LEN = 3; /* bits */
75FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_BITS_PER_SAMPLE_LEN = 5; /* bits */
76FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_TOTAL_SAMPLES_LEN = 36; /* bits */
77FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_MD5SUM_LEN = 128; /* bits */
Josh Coalson20135722001-02-23 21:05:53 +000078
Josh Coalson6afed9f2002-10-16 22:29:47 +000079FLAC_API const unsigned FLAC__STREAM_METADATA_APPLICATION_ID_LEN = 32; /* bits */
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000080
Josh Coalson6afed9f2002-10-16 22:29:47 +000081FLAC_API const unsigned FLAC__STREAM_METADATA_SEEKPOINT_SAMPLE_NUMBER_LEN = 64; /* bits */
82FLAC_API const unsigned FLAC__STREAM_METADATA_SEEKPOINT_STREAM_OFFSET_LEN = 64; /* bits */
83FLAC_API const unsigned FLAC__STREAM_METADATA_SEEKPOINT_FRAME_SAMPLES_LEN = 16; /* bits */
Josh Coalsonc5d08e02001-04-10 19:13:50 +000084
Josh Coalson49623ea2004-07-29 06:28:59 +000085FLAC_API const FLAC__uint64 FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER = FLAC__U64L(0xffffffffffffffff);
Josh Coalson167658a2001-04-13 18:22:25 +000086
Josh Coalson6afed9f2002-10-16 22:29:47 +000087FLAC_API const unsigned FLAC__STREAM_METADATA_VORBIS_COMMENT_ENTRY_LENGTH_LEN = 32; /* bits */
88FLAC_API const unsigned FLAC__STREAM_METADATA_VORBIS_COMMENT_NUM_COMMENTS_LEN = 32; /* bits */
Josh Coalsoncc059bc2002-05-04 17:35:51 +000089
Josh Coalson8e9c4512002-11-14 05:00:24 +000090FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_INDEX_OFFSET_LEN = 64; /* bits */
91FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_INDEX_NUMBER_LEN = 8; /* bits */
Josh Coalsonb3538c82003-01-12 08:42:23 +000092FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_INDEX_RESERVED_LEN = 3*8; /* bits */
Josh Coalson8e9c4512002-11-14 05:00:24 +000093
94FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_TRACK_OFFSET_LEN = 64; /* bits */
95FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_TRACK_NUMBER_LEN = 8; /* bits */
96FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_TRACK_ISRC_LEN = 12*8; /* bits */
97FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_TRACK_TYPE_LEN = 1; /* bit */
98FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_TRACK_PRE_EMPHASIS_LEN = 1; /* bit */
Josh Coalsonb3538c82003-01-12 08:42:23 +000099FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_TRACK_RESERVED_LEN = 6+13*8; /* bits */
Josh Coalson8e9c4512002-11-14 05:00:24 +0000100FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_TRACK_NUM_INDICES_LEN = 8; /* bits */
101
102FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_MEDIA_CATALOG_NUMBER_LEN = 128*8; /* bits */
103FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_LEAD_IN_LEN = 64; /* bits */
Josh Coalson8f0c71b2002-12-05 06:37:46 +0000104FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_IS_CD_LEN = 1; /* bit */
Josh Coalsonb3538c82003-01-12 08:42:23 +0000105FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_RESERVED_LEN = 7+258*8; /* bits */
Josh Coalson8e9c4512002-11-14 05:00:24 +0000106FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_NUM_TRACKS_LEN = 8; /* bits */
107
Josh Coalson6afed9f2002-10-16 22:29:47 +0000108FLAC_API const unsigned FLAC__STREAM_METADATA_IS_LAST_LEN = 1; /* bits */
109FLAC_API const unsigned FLAC__STREAM_METADATA_TYPE_LEN = 7; /* bits */
110FLAC_API const unsigned FLAC__STREAM_METADATA_LENGTH_LEN = 24; /* bits */
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000111
Josh Coalson6afed9f2002-10-16 22:29:47 +0000112FLAC_API const unsigned FLAC__FRAME_HEADER_SYNC = 0x3ffe;
113FLAC_API const unsigned FLAC__FRAME_HEADER_SYNC_LEN = 14; /* bits */
114FLAC_API const unsigned FLAC__FRAME_HEADER_RESERVED_LEN = 2; /* bits */
115FLAC_API const unsigned FLAC__FRAME_HEADER_BLOCK_SIZE_LEN = 4; /* bits */
116FLAC_API const unsigned FLAC__FRAME_HEADER_SAMPLE_RATE_LEN = 4; /* bits */
117FLAC_API const unsigned FLAC__FRAME_HEADER_CHANNEL_ASSIGNMENT_LEN = 4; /* bits */
118FLAC_API const unsigned FLAC__FRAME_HEADER_BITS_PER_SAMPLE_LEN = 3; /* bits */
119FLAC_API const unsigned FLAC__FRAME_HEADER_ZERO_PAD_LEN = 1; /* bits */
120FLAC_API const unsigned FLAC__FRAME_HEADER_CRC_LEN = 8; /* bits */
Josh Coalson215af572001-03-27 01:15:58 +0000121
Josh Coalson6afed9f2002-10-16 22:29:47 +0000122FLAC_API const unsigned FLAC__FRAME_FOOTER_CRC_LEN = 16; /* bits */
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000123
Josh Coalson6afed9f2002-10-16 22:29:47 +0000124FLAC_API const unsigned FLAC__ENTROPY_CODING_METHOD_TYPE_LEN = 2; /* bits */
125FLAC_API const unsigned FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ORDER_LEN = 4; /* bits */
126FLAC_API const unsigned FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN = 4; /* bits */
127FLAC_API const unsigned FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_RAW_LEN = 5; /* bits */
Josh Coalson2051dd42001-04-12 22:22:34 +0000128
Josh Coalson6afed9f2002-10-16 22:29:47 +0000129FLAC_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 +0000130
Josh Coalson6afed9f2002-10-16 22:29:47 +0000131FLAC_API const char * const FLAC__EntropyCodingMethodTypeString[] = {
Josh Coalson75d0a0b2001-01-24 00:42:16 +0000132 "PARTITIONED_RICE"
133};
134
Josh Coalson6afed9f2002-10-16 22:29:47 +0000135FLAC_API const unsigned FLAC__SUBFRAME_LPC_QLP_COEFF_PRECISION_LEN = 4; /* bits */
136FLAC_API const unsigned FLAC__SUBFRAME_LPC_QLP_SHIFT_LEN = 5; /* bits */
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000137
Josh Coalson6afed9f2002-10-16 22:29:47 +0000138FLAC_API const unsigned FLAC__SUBFRAME_ZERO_PAD_LEN = 1; /* bits */
139FLAC_API const unsigned FLAC__SUBFRAME_TYPE_LEN = 6; /* bits */
140FLAC_API const unsigned FLAC__SUBFRAME_WASTED_BITS_FLAG_LEN = 1; /* bits */
Josh Coalson215af572001-03-27 01:15:58 +0000141
Josh Coalson6afed9f2002-10-16 22:29:47 +0000142FLAC_API const unsigned FLAC__SUBFRAME_TYPE_CONSTANT_BYTE_ALIGNED_MASK = 0x00;
143FLAC_API const unsigned FLAC__SUBFRAME_TYPE_VERBATIM_BYTE_ALIGNED_MASK = 0x02;
144FLAC_API const unsigned FLAC__SUBFRAME_TYPE_FIXED_BYTE_ALIGNED_MASK = 0x10;
145FLAC_API const unsigned FLAC__SUBFRAME_TYPE_LPC_BYTE_ALIGNED_MASK = 0x40;
Josh Coalson75d0a0b2001-01-24 00:42:16 +0000146
Josh Coalson6afed9f2002-10-16 22:29:47 +0000147FLAC_API const char * const FLAC__SubframeTypeString[] = {
Josh Coalson75d0a0b2001-01-24 00:42:16 +0000148 "CONSTANT",
149 "VERBATIM",
150 "FIXED",
151 "LPC"
152};
153
Josh Coalson6afed9f2002-10-16 22:29:47 +0000154FLAC_API const char * const FLAC__ChannelAssignmentString[] = {
Josh Coalson75d0a0b2001-01-24 00:42:16 +0000155 "INDEPENDENT",
156 "LEFT_SIDE",
157 "RIGHT_SIDE",
158 "MID_SIDE"
159};
160
Josh Coalson6afed9f2002-10-16 22:29:47 +0000161FLAC_API const char * const FLAC__FrameNumberTypeString[] = {
Josh Coalson96084632001-07-16 18:07:12 +0000162 "FRAME_NUMBER_TYPE_FRAME_NUMBER",
163 "FRAME_NUMBER_TYPE_SAMPLE_NUMBER"
164};
165
Josh Coalson6afed9f2002-10-16 22:29:47 +0000166FLAC_API const char * const FLAC__MetadataTypeString[] = {
Josh Coalson20135722001-02-23 21:05:53 +0000167 "STREAMINFO",
168 "PADDING",
Josh Coalson9b04be72001-06-14 18:57:53 +0000169 "APPLICATION",
Josh Coalson7e19b542002-04-25 05:53:09 +0000170 "SEEKTABLE",
Josh Coalsone4869382002-11-15 05:41:48 +0000171 "VORBIS_COMMENT",
172 "CUESHEET"
Josh Coalson75d0a0b2001-01-24 00:42:16 +0000173};
Josh Coalsoncc059bc2002-05-04 17:35:51 +0000174
Josh Coalson6afed9f2002-10-16 22:29:47 +0000175FLAC_API FLAC__bool FLAC__format_sample_rate_is_valid(unsigned sample_rate)
Josh Coalsoncc059bc2002-05-04 17:35:51 +0000176{
177 if(
178 sample_rate == 0 ||
179 sample_rate > FLAC__MAX_SAMPLE_RATE ||
180 (
Josh Coalson765ff502002-08-27 05:46:11 +0000181 sample_rate >= (1u << 16) &&
Josh Coalsoncc059bc2002-05-04 17:35:51 +0000182 !(sample_rate % 1000 == 0 || sample_rate % 10 == 0)
183 )
184 ) {
185 return false;
186 }
187 else
188 return true;
189}
Josh Coalson0d36cbd2002-07-15 05:24:56 +0000190
Josh Coalson6afed9f2002-10-16 22:29:47 +0000191FLAC_API FLAC__bool FLAC__format_seektable_is_legal(const FLAC__StreamMetadata_SeekTable *seek_table)
Josh Coalson0d36cbd2002-07-15 05:24:56 +0000192{
193 unsigned i;
194 FLAC__uint64 prev_sample_number = 0;
195 FLAC__bool got_prev = false;
196
197 FLAC__ASSERT(0 != seek_table);
198
199 for(i = 0; i < seek_table->num_points; i++) {
200 if(got_prev) {
Josh Coalson5a5de732002-08-01 06:37:11 +0000201 if(
202 seek_table->points[i].sample_number != FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER &&
203 seek_table->points[i].sample_number <= prev_sample_number
204 )
Josh Coalson0d36cbd2002-07-15 05:24:56 +0000205 return false;
206 }
207 prev_sample_number = seek_table->points[i].sample_number;
208 got_prev = true;
209 }
210
211 return true;
212}
Josh Coalson5a5de732002-08-01 06:37:11 +0000213
214/* used as the sort predicate for qsort() */
215static int seekpoint_compare_(const FLAC__StreamMetadata_SeekPoint *l, const FLAC__StreamMetadata_SeekPoint *r)
216{
217 /* we don't just 'return l->sample_number - r->sample_number' since the result (FLAC__int64) might overflow an 'int' */
218 if(l->sample_number == r->sample_number)
219 return 0;
220 else if(l->sample_number < r->sample_number)
221 return -1;
222 else
223 return 1;
224}
225
Josh Coalson6afed9f2002-10-16 22:29:47 +0000226FLAC_API unsigned FLAC__format_seektable_sort(FLAC__StreamMetadata_SeekTable *seek_table)
Josh Coalson5a5de732002-08-01 06:37:11 +0000227{
228 unsigned i, j;
229 FLAC__bool first;
230
Josh Coalsona0ac09a2002-08-16 05:40:16 +0000231 FLAC__ASSERT(0 != seek_table);
232
Josh Coalson5a5de732002-08-01 06:37:11 +0000233 /* sort the seekpoints */
234 qsort(seek_table->points, seek_table->num_points, sizeof(FLAC__StreamMetadata_SeekPoint), (int (*)(const void *, const void *))seekpoint_compare_);
235
236 /* uniquify the seekpoints */
237 first = true;
238 for(i = j = 0; i < seek_table->num_points; i++) {
239 if(seek_table->points[i].sample_number != FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER) {
240 if(!first) {
241 if(seek_table->points[i].sample_number == seek_table->points[j-1].sample_number)
242 continue;
243 }
244 }
245 first = false;
246 seek_table->points[j++] = seek_table->points[i];
247 }
248
Josh Coalson08a62822002-08-01 07:33:36 +0000249 for(i = j; i < seek_table->num_points; i++) {
250 seek_table->points[i].sample_number = FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER;
251 seek_table->points[i].stream_offset = 0;
252 seek_table->points[i].frame_samples = 0;
Josh Coalson5a5de732002-08-01 06:37:11 +0000253 }
254
255 return j;
256}
Josh Coalsoncda4c3c2002-08-17 15:21:29 +0000257
Josh Coalsonf2a8e062005-08-24 07:37:11 +0000258/*
259 * also disallows non-shortest-form encodings, c.f.
260 * http://www.unicode.org/versions/corrigendum1.html
261 * and a more clear explanation at the end of this section:
262 * http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
263 */
Josh Coalson2de11242004-12-30 03:41:19 +0000264static __inline unsigned utf8len_(const FLAC__byte *utf8)
265{
266 FLAC__ASSERT(0 != utf8);
Josh Coalsonf2a8e062005-08-24 07:37:11 +0000267 if ((utf8[0] & 0x80) == 0) {
Josh Coalson2de11242004-12-30 03:41:19 +0000268 return 1;
Josh Coalsonf2a8e062005-08-24 07:37:11 +0000269 }
270 else if ((utf8[0] & 0xE0) == 0xC0 && (utf8[1] & 0xC0) == 0x80) {
Josh Coalsonc6e53da2005-08-25 00:22:06 +0000271 if ((utf8[0] & 0xFE) == 0xC0) /* overlong sequence check */
Josh Coalsonf2a8e062005-08-24 07:37:11 +0000272 return 0;
Josh Coalson2de11242004-12-30 03:41:19 +0000273 return 2;
Josh Coalsonf2a8e062005-08-24 07:37:11 +0000274 }
275 else if ((utf8[0] & 0xF0) == 0xE0 && (utf8[1] & 0xC0) == 0x80 && (utf8[2] & 0xC0) == 0x80) {
276 if (utf8[0] == 0xE0 && (utf8[1] & 0xE0) == 0x80) /* overlong sequence check */
277 return 0;
278 /* illegal surrogates check (U+D800...U+DFFF and U+FFFE...U+FFFF) */
279 if (utf8[0] == 0xED && (utf8[1] & 0xE0) == 0xA0) /* D800-DFFF */
280 return 0;
281 if (utf8[0] == 0xEF && utf8[1] == 0xBF && (utf8[2] & 0xFE) == 0xBE) /* FFFE-FFFF */
282 return 0;
Josh Coalson2de11242004-12-30 03:41:19 +0000283 return 3;
Josh Coalsonf2a8e062005-08-24 07:37:11 +0000284 }
285 else if ((utf8[0] & 0xF8) == 0xF0 && (utf8[1] & 0xC0) == 0x80 && (utf8[2] & 0xC0) == 0x80 && (utf8[3] & 0xC0) == 0x80) {
286 if (utf8[0] == 0xF0 && (utf8[1] & 0xF0) == 0x80) /* overlong sequence check */
287 return 0;
288 return 4;
289 }
290 else if ((utf8[0] & 0xFC) == 0xF8 && (utf8[1] & 0xC0) == 0x80 && (utf8[2] & 0xC0) == 0x80 && (utf8[3] & 0xC0) == 0x80 && (utf8[4] & 0xC0) == 0x80) {
291 if (utf8[0] == 0xF8 && (utf8[1] & 0xF8) == 0x80) /* overlong sequence check */
292 return 0;
293 return 5;
294 }
295 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) {
296 if (utf8[0] == 0xFC && (utf8[1] & 0xFC) == 0x80) /* overlong sequence check */
297 return 0;
298 return 6;
299 }
300 else {
Josh Coalson2de11242004-12-30 03:41:19 +0000301 return 0;
Josh Coalsonf2a8e062005-08-24 07:37:11 +0000302 }
Josh Coalson2de11242004-12-30 03:41:19 +0000303}
304
305FLAC_API FLAC__bool FLAC__format_vorbiscomment_entry_name_is_legal(const char *name)
306{
307 char c;
308 for(c = *name; c; c = *(++name))
309 if(c < 0x20 || c == 0x3d || c > 0x7d)
310 return false;
311 return true;
312}
313
314FLAC_API FLAC__bool FLAC__format_vorbiscomment_entry_value_is_legal(const FLAC__byte *value, unsigned length)
315{
316 if(length == (unsigned)(-1)) {
317 while(*value) {
318 unsigned n = utf8len_(value);
319 if(n == 0)
320 return false;
321 value += n;
322 }
323 }
324 else {
325 const FLAC__byte *end = value + length;
326 while(value < end) {
327 unsigned n = utf8len_(value);
328 if(n == 0)
329 return false;
330 value += n;
331 }
332 if(value != end)
333 return false;
334 }
335 return true;
336}
337
338FLAC_API FLAC__bool FLAC__format_vorbiscomment_entry_is_legal(const FLAC__byte *entry, unsigned length)
339{
340 const FLAC__byte *s, *end;
341
342 for(s = entry, end = s + length; s < end && *s != '='; s++) {
343 if(*s < 0x20 || *s > 0x7D)
344 return false;
345 }
346 if(s == end)
347 return false;
348
349 s++; /* skip '=' */
350
351 while(s < end) {
352 unsigned n = utf8len_(s);
353 if(n == 0)
354 return false;
355 s += n;
356 }
357 if(s != end)
358 return false;
359
360 return true;
361}
362
Josh Coalson8e9c4512002-11-14 05:00:24 +0000363FLAC_API FLAC__bool FLAC__format_cuesheet_is_legal(const FLAC__StreamMetadata_CueSheet *cue_sheet, FLAC__bool check_cd_da_subset, const char **violation)
364{
365 unsigned i, j;
366
367 if(check_cd_da_subset) {
368 if(cue_sheet->lead_in < 2 * 44100) {
369 if(violation) *violation = "CD-DA cue sheet must have a lead-in length of at least 2 seconds";
370 return false;
371 }
372 if(cue_sheet->lead_in % 588 != 0) {
373 if(violation) *violation = "CD-DA cue sheet lead-in length must be evenly divisible by 588 samples";
374 return false;
375 }
376 }
377
378 if(cue_sheet->num_tracks == 0) {
379 if(violation) *violation = "cue sheet must have at least one track (the lead-out)";
380 return false;
381 }
382
383 if(check_cd_da_subset && cue_sheet->tracks[cue_sheet->num_tracks-1].number != 170) {
384 if(violation) *violation = "CD-DA cue sheet must have a lead-out track number 170 (0xAA)";
385 return false;
386 }
387
388 for(i = 0; i < cue_sheet->num_tracks; i++) {
389 if(cue_sheet->tracks[i].number == 0) {
390 if(violation) *violation = "cue sheet may not have a track number 0";
391 return false;
392 }
393
394 if(check_cd_da_subset) {
395 if(!((cue_sheet->tracks[i].number >= 1 && cue_sheet->tracks[i].number <= 99) || cue_sheet->tracks[i].number == 170)) {
396 if(violation) *violation = "CD-DA cue sheet track number must be 1-99 or 170";
397 return false;
398 }
399 }
400
401 if(check_cd_da_subset && cue_sheet->tracks[i].offset % 588 != 0) {
Josh Coalsonf2a8e062005-08-24 07:37:11 +0000402 if(violation) {
Josh Coalsonfe1d3112005-08-24 00:14:23 +0000403 if(i == cue_sheet->num_tracks-1) /* the lead-out track... */
404 *violation = "CD-DA cue sheet lead-out offset must be evenly divisible by 588 samples";
405 else
406 *violation = "CD-DA cue sheet track offset must be evenly divisible by 588 samples";
Josh Coalsonf2a8e062005-08-24 07:37:11 +0000407 }
Josh Coalson8e9c4512002-11-14 05:00:24 +0000408 return false;
409 }
410
Josh Coalson3f86cc72002-11-21 06:41:46 +0000411 if(i < cue_sheet->num_tracks - 1) {
412 if(cue_sheet->tracks[i].num_indices == 0) {
413 if(violation) *violation = "cue sheet track must have at least one index point";
414 return false;
415 }
Josh Coalson8e9c4512002-11-14 05:00:24 +0000416
Josh Coalson3f86cc72002-11-21 06:41:46 +0000417 if(cue_sheet->tracks[i].indices[0].number > 1) {
418 if(violation) *violation = "cue sheet track's first index number must be 0 or 1";
419 return false;
420 }
Josh Coalson8e9c4512002-11-14 05:00:24 +0000421 }
422
423 for(j = 0; j < cue_sheet->tracks[i].num_indices; j++) {
424 if(check_cd_da_subset && cue_sheet->tracks[i].indices[j].offset % 588 != 0) {
425 if(violation) *violation = "CD-DA cue sheet track index offset must be evenly divisible by 588 samples";
426 return false;
427 }
428
429 if(j > 0) {
430 if(cue_sheet->tracks[i].indices[j].number != cue_sheet->tracks[i].indices[j-1].number + 1) {
431 if(violation) *violation = "cue sheet track index numbers must increase by 1";
432 return false;
433 }
434 }
435 }
436 }
437
438 return true;
439}
440
441/*
442 * These routines are private to libFLAC
443 */
Josh Coalsoncda4c3c2002-08-17 15:21:29 +0000444unsigned FLAC__format_get_max_rice_partition_order(unsigned blocksize, unsigned predictor_order)
445{
446 return
447 FLAC__format_get_max_rice_partition_order_from_blocksize_limited_max_and_predictor_order(
448 FLAC__format_get_max_rice_partition_order_from_blocksize(blocksize),
449 blocksize,
450 predictor_order
451 );
452}
453
454unsigned FLAC__format_get_max_rice_partition_order_from_blocksize(unsigned blocksize)
455{
456 unsigned max_rice_partition_order = 0;
457 while(!(blocksize & 1)) {
458 max_rice_partition_order++;
459 blocksize >>= 1;
460 }
461 return min(FLAC__MAX_RICE_PARTITION_ORDER, max_rice_partition_order);
462}
463
464unsigned FLAC__format_get_max_rice_partition_order_from_blocksize_limited_max_and_predictor_order(unsigned limit, unsigned blocksize, unsigned predictor_order)
465{
466 unsigned max_rice_partition_order = limit;
467
468 while(max_rice_partition_order > 0 && (blocksize >> max_rice_partition_order) <= predictor_order)
469 max_rice_partition_order--;
470
Josh Coalsonf12edc62002-10-11 06:24:33 +0000471 FLAC__ASSERT(
472 (max_rice_partition_order == 0 && blocksize >= predictor_order) ||
473 (max_rice_partition_order > 0 && blocksize >> max_rice_partition_order > predictor_order)
474 );
Josh Coalsoncda4c3c2002-08-17 15:21:29 +0000475
476 return max_rice_partition_order;
477}
478
Josh Coalsona37ba462002-08-19 21:36:39 +0000479void FLAC__format_entropy_coding_method_partitioned_rice_contents_init(FLAC__EntropyCodingMethod_PartitionedRiceContents *object)
Josh Coalsoncda4c3c2002-08-17 15:21:29 +0000480{
481 FLAC__ASSERT(0 != object);
482
Josh Coalsoncda4c3c2002-08-17 15:21:29 +0000483 object->parameters = 0;
484 object->raw_bits = 0;
485 object->capacity_by_order = 0;
486}
487
Josh Coalsona37ba462002-08-19 21:36:39 +0000488void FLAC__format_entropy_coding_method_partitioned_rice_contents_clear(FLAC__EntropyCodingMethod_PartitionedRiceContents *object)
Josh Coalsoncda4c3c2002-08-17 15:21:29 +0000489{
490 FLAC__ASSERT(0 != object);
491
492 if(0 != object->parameters)
493 free(object->parameters);
494 if(0 != object->raw_bits)
495 free(object->raw_bits);
Josh Coalsona37ba462002-08-19 21:36:39 +0000496 FLAC__format_entropy_coding_method_partitioned_rice_contents_init(object);
Josh Coalsoncda4c3c2002-08-17 15:21:29 +0000497}
498
Josh Coalsona37ba462002-08-19 21:36:39 +0000499FLAC__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 +0000500{
501 FLAC__ASSERT(0 != object);
502
503 FLAC__ASSERT(object->capacity_by_order > 0 || (0 == object->parameters && 0 == object->raw_bits));
504
505 if(object->capacity_by_order < max_partition_order) {
Josh Coalson5e3fcb22002-11-06 07:11:26 +0000506 if(0 == (object->parameters = (unsigned*)realloc(object->parameters, sizeof(unsigned)*(1 << max_partition_order))))
Josh Coalsoncda4c3c2002-08-17 15:21:29 +0000507 return false;
Josh Coalson5e3fcb22002-11-06 07:11:26 +0000508 if(0 == (object->raw_bits = (unsigned*)realloc(object->raw_bits, sizeof(unsigned)*(1 << max_partition_order))))
Josh Coalsoncda4c3c2002-08-17 15:21:29 +0000509 return false;
510 object->capacity_by_order = max_partition_order;
511 }
512
513 return true;
514}