blob: c56334c7497b00f8b00b3f72271850970ddc8f68 [file] [log] [blame]
Josh Coalson26560dd2001-02-08 00:38:41 +00001/* libFLAC - Free Lossless Audio Codec library
Josh Coalson305ae2e2002-01-26 17:36:39 +00002 * Copyright (C) 2000,2001,2002 Josh Coalson
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00003 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
8 *
9 * This library 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 GNU
12 * Library General Public License for more details.
13 *
14 * You should have received a copy of the GNU Library General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
18 */
19
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000020#include <stdio.h>
Josh Coalson5a5de732002-08-01 06:37:11 +000021#include <stdlib.h> /* for qsort() */
Josh Coalson0d36cbd2002-07-15 05:24:56 +000022#include "FLAC/assert.h"
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000023#include "FLAC/format.h"
Josh Coalsoncda4c3c2002-08-17 15:21:29 +000024#include "private/format.h"
25
Matt Zimmermane5259172002-10-10 16:51:06 +000026#ifdef HAVE_CONFIG_H
27#include <config.h>
28#endif
29
Josh Coalsoncda4c3c2002-08-17 15:21:29 +000030#ifdef min
31#undef min
32#endif
33#define min(a,b) ((a)<(b)?(a):(b))
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000034
Josh Coalson82738b32002-09-25 06:09:47 +000035/* VERSION should come from configure */
Josh Coalson6afed9f2002-10-16 22:29:47 +000036FLAC_API const char *FLAC__VERSION_STRING = VERSION;
Josh Coalson82738b32002-09-25 06:09:47 +000037
Josh Coalson0aad38b2002-09-09 05:06:51 +000038#if defined _MSC_VER || defined __MINW32__
39/* yet one more hack because of MSVC6: */
Josh Coalson6afed9f2002-10-16 22:29:47 +000040FLAC_API const char *FLAC__VENDOR_STRING = "reference libFLAC 1.0.4 20020924";
Josh Coalson0aad38b2002-09-09 05:06:51 +000041#else
Josh Coalson6afed9f2002-10-16 22:29:47 +000042FLAC_API const char *FLAC__VENDOR_STRING = "reference libFLAC " VERSION " 20020924";
Josh Coalson0aad38b2002-09-09 05:06:51 +000043#endif
44
Josh Coalson6afed9f2002-10-16 22:29:47 +000045FLAC_API const FLAC__byte FLAC__STREAM_SYNC_STRING[4] = { 'f','L','a','C' };
46FLAC_API const unsigned FLAC__STREAM_SYNC = 0x664C6143;
47FLAC_API const unsigned FLAC__STREAM_SYNC_LEN = 32; /* bits */;
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000048
Josh Coalson6afed9f2002-10-16 22:29:47 +000049FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_MIN_BLOCK_SIZE_LEN = 16; /* bits */
50FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_MAX_BLOCK_SIZE_LEN = 16; /* bits */
51FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_MIN_FRAME_SIZE_LEN = 24; /* bits */
52FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_MAX_FRAME_SIZE_LEN = 24; /* bits */
53FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_SAMPLE_RATE_LEN = 20; /* bits */
54FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_CHANNELS_LEN = 3; /* bits */
55FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_BITS_PER_SAMPLE_LEN = 5; /* bits */
56FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_TOTAL_SAMPLES_LEN = 36; /* bits */
57FLAC_API const unsigned FLAC__STREAM_METADATA_STREAMINFO_MD5SUM_LEN = 128; /* bits */
Josh Coalson20135722001-02-23 21:05:53 +000058
Josh Coalson6afed9f2002-10-16 22:29:47 +000059FLAC_API const unsigned FLAC__STREAM_METADATA_APPLICATION_ID_LEN = 32; /* bits */
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000060
Josh Coalson6afed9f2002-10-16 22:29:47 +000061FLAC_API const unsigned FLAC__STREAM_METADATA_SEEKPOINT_SAMPLE_NUMBER_LEN = 64; /* bits */
62FLAC_API const unsigned FLAC__STREAM_METADATA_SEEKPOINT_STREAM_OFFSET_LEN = 64; /* bits */
63FLAC_API const unsigned FLAC__STREAM_METADATA_SEEKPOINT_FRAME_SAMPLES_LEN = 16; /* bits */
Josh Coalsonc5d08e02001-04-10 19:13:50 +000064
Josh Coalson6afed9f2002-10-16 22:29:47 +000065FLAC_API const FLAC__uint64 FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER = 0xffffffffffffffff;
Josh Coalson167658a2001-04-13 18:22:25 +000066
Josh Coalson6afed9f2002-10-16 22:29:47 +000067FLAC_API const unsigned FLAC__STREAM_METADATA_VORBIS_COMMENT_ENTRY_LENGTH_LEN = 32; /* bits */
68FLAC_API const unsigned FLAC__STREAM_METADATA_VORBIS_COMMENT_NUM_COMMENTS_LEN = 32; /* bits */
Josh Coalsoncc059bc2002-05-04 17:35:51 +000069
Josh Coalson6afed9f2002-10-16 22:29:47 +000070FLAC_API const unsigned FLAC__STREAM_METADATA_IS_LAST_LEN = 1; /* bits */
71FLAC_API const unsigned FLAC__STREAM_METADATA_TYPE_LEN = 7; /* bits */
72FLAC_API const unsigned FLAC__STREAM_METADATA_LENGTH_LEN = 24; /* bits */
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000073
Josh Coalson6afed9f2002-10-16 22:29:47 +000074FLAC_API const unsigned FLAC__FRAME_HEADER_SYNC = 0x3ffe;
75FLAC_API const unsigned FLAC__FRAME_HEADER_SYNC_LEN = 14; /* bits */
76FLAC_API const unsigned FLAC__FRAME_HEADER_RESERVED_LEN = 2; /* bits */
77FLAC_API const unsigned FLAC__FRAME_HEADER_BLOCK_SIZE_LEN = 4; /* bits */
78FLAC_API const unsigned FLAC__FRAME_HEADER_SAMPLE_RATE_LEN = 4; /* bits */
79FLAC_API const unsigned FLAC__FRAME_HEADER_CHANNEL_ASSIGNMENT_LEN = 4; /* bits */
80FLAC_API const unsigned FLAC__FRAME_HEADER_BITS_PER_SAMPLE_LEN = 3; /* bits */
81FLAC_API const unsigned FLAC__FRAME_HEADER_ZERO_PAD_LEN = 1; /* bits */
82FLAC_API const unsigned FLAC__FRAME_HEADER_CRC_LEN = 8; /* bits */
Josh Coalson215af572001-03-27 01:15:58 +000083
Josh Coalson6afed9f2002-10-16 22:29:47 +000084FLAC_API const unsigned FLAC__FRAME_FOOTER_CRC_LEN = 16; /* bits */
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000085
Josh Coalson6afed9f2002-10-16 22:29:47 +000086FLAC_API const unsigned FLAC__ENTROPY_CODING_METHOD_TYPE_LEN = 2; /* bits */
87FLAC_API const unsigned FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ORDER_LEN = 4; /* bits */
88FLAC_API const unsigned FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN = 4; /* bits */
89FLAC_API const unsigned FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_RAW_LEN = 5; /* bits */
Josh Coalson2051dd42001-04-12 22:22:34 +000090
Josh Coalson6afed9f2002-10-16 22:29:47 +000091FLAC_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 +000092
Josh Coalson6afed9f2002-10-16 22:29:47 +000093FLAC_API const char * const FLAC__EntropyCodingMethodTypeString[] = {
Josh Coalson75d0a0b2001-01-24 00:42:16 +000094 "PARTITIONED_RICE"
95};
96
Josh Coalson6afed9f2002-10-16 22:29:47 +000097FLAC_API const unsigned FLAC__SUBFRAME_LPC_QLP_COEFF_PRECISION_LEN = 4; /* bits */
98FLAC_API const unsigned FLAC__SUBFRAME_LPC_QLP_SHIFT_LEN = 5; /* bits */
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000099
Josh Coalson6afed9f2002-10-16 22:29:47 +0000100FLAC_API const unsigned FLAC__SUBFRAME_ZERO_PAD_LEN = 1; /* bits */
101FLAC_API const unsigned FLAC__SUBFRAME_TYPE_LEN = 6; /* bits */
102FLAC_API const unsigned FLAC__SUBFRAME_WASTED_BITS_FLAG_LEN = 1; /* bits */
Josh Coalson215af572001-03-27 01:15:58 +0000103
Josh Coalson6afed9f2002-10-16 22:29:47 +0000104FLAC_API const unsigned FLAC__SUBFRAME_TYPE_CONSTANT_BYTE_ALIGNED_MASK = 0x00;
105FLAC_API const unsigned FLAC__SUBFRAME_TYPE_VERBATIM_BYTE_ALIGNED_MASK = 0x02;
106FLAC_API const unsigned FLAC__SUBFRAME_TYPE_FIXED_BYTE_ALIGNED_MASK = 0x10;
107FLAC_API const unsigned FLAC__SUBFRAME_TYPE_LPC_BYTE_ALIGNED_MASK = 0x40;
Josh Coalson75d0a0b2001-01-24 00:42:16 +0000108
Josh Coalson6afed9f2002-10-16 22:29:47 +0000109FLAC_API const char * const FLAC__SubframeTypeString[] = {
Josh Coalson75d0a0b2001-01-24 00:42:16 +0000110 "CONSTANT",
111 "VERBATIM",
112 "FIXED",
113 "LPC"
114};
115
Josh Coalson6afed9f2002-10-16 22:29:47 +0000116FLAC_API const char * const FLAC__ChannelAssignmentString[] = {
Josh Coalson75d0a0b2001-01-24 00:42:16 +0000117 "INDEPENDENT",
118 "LEFT_SIDE",
119 "RIGHT_SIDE",
120 "MID_SIDE"
121};
122
Josh Coalson6afed9f2002-10-16 22:29:47 +0000123FLAC_API const char * const FLAC__FrameNumberTypeString[] = {
Josh Coalson96084632001-07-16 18:07:12 +0000124 "FRAME_NUMBER_TYPE_FRAME_NUMBER",
125 "FRAME_NUMBER_TYPE_SAMPLE_NUMBER"
126};
127
Josh Coalson6afed9f2002-10-16 22:29:47 +0000128FLAC_API const char * const FLAC__MetadataTypeString[] = {
Josh Coalson20135722001-02-23 21:05:53 +0000129 "STREAMINFO",
130 "PADDING",
Josh Coalson9b04be72001-06-14 18:57:53 +0000131 "APPLICATION",
Josh Coalson7e19b542002-04-25 05:53:09 +0000132 "SEEKTABLE",
133 "VORBIS_COMMENT"
Josh Coalson75d0a0b2001-01-24 00:42:16 +0000134};
Josh Coalsoncc059bc2002-05-04 17:35:51 +0000135
Josh Coalson6afed9f2002-10-16 22:29:47 +0000136FLAC_API FLAC__bool FLAC__format_sample_rate_is_valid(unsigned sample_rate)
Josh Coalsoncc059bc2002-05-04 17:35:51 +0000137{
138 if(
139 sample_rate == 0 ||
140 sample_rate > FLAC__MAX_SAMPLE_RATE ||
141 (
Josh Coalson765ff502002-08-27 05:46:11 +0000142 sample_rate >= (1u << 16) &&
Josh Coalsoncc059bc2002-05-04 17:35:51 +0000143 !(sample_rate % 1000 == 0 || sample_rate % 10 == 0)
144 )
145 ) {
146 return false;
147 }
148 else
149 return true;
150}
Josh Coalson0d36cbd2002-07-15 05:24:56 +0000151
Josh Coalson6afed9f2002-10-16 22:29:47 +0000152FLAC_API FLAC__bool FLAC__format_seektable_is_legal(const FLAC__StreamMetadata_SeekTable *seek_table)
Josh Coalson0d36cbd2002-07-15 05:24:56 +0000153{
154 unsigned i;
155 FLAC__uint64 prev_sample_number = 0;
156 FLAC__bool got_prev = false;
157
158 FLAC__ASSERT(0 != seek_table);
159
160 for(i = 0; i < seek_table->num_points; i++) {
161 if(got_prev) {
Josh Coalson5a5de732002-08-01 06:37:11 +0000162 if(
163 seek_table->points[i].sample_number != FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER &&
164 seek_table->points[i].sample_number <= prev_sample_number
165 )
Josh Coalson0d36cbd2002-07-15 05:24:56 +0000166 return false;
167 }
168 prev_sample_number = seek_table->points[i].sample_number;
169 got_prev = true;
170 }
171
172 return true;
173}
Josh Coalson5a5de732002-08-01 06:37:11 +0000174
175/* used as the sort predicate for qsort() */
176static int seekpoint_compare_(const FLAC__StreamMetadata_SeekPoint *l, const FLAC__StreamMetadata_SeekPoint *r)
177{
178 /* we don't just 'return l->sample_number - r->sample_number' since the result (FLAC__int64) might overflow an 'int' */
179 if(l->sample_number == r->sample_number)
180 return 0;
181 else if(l->sample_number < r->sample_number)
182 return -1;
183 else
184 return 1;
185}
186
Josh Coalson6afed9f2002-10-16 22:29:47 +0000187FLAC_API unsigned FLAC__format_seektable_sort(FLAC__StreamMetadata_SeekTable *seek_table)
Josh Coalson5a5de732002-08-01 06:37:11 +0000188{
189 unsigned i, j;
190 FLAC__bool first;
191
Josh Coalsona0ac09a2002-08-16 05:40:16 +0000192 FLAC__ASSERT(0 != seek_table);
193
Josh Coalson5a5de732002-08-01 06:37:11 +0000194 /* sort the seekpoints */
195 qsort(seek_table->points, seek_table->num_points, sizeof(FLAC__StreamMetadata_SeekPoint), (int (*)(const void *, const void *))seekpoint_compare_);
196
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
Josh Coalson08a62822002-08-01 07:33:36 +0000210 for(i = j; i < seek_table->num_points; i++) {
211 seek_table->points[i].sample_number = FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER;
212 seek_table->points[i].stream_offset = 0;
213 seek_table->points[i].frame_samples = 0;
Josh Coalson5a5de732002-08-01 06:37:11 +0000214 }
215
216 return j;
217}
Josh Coalsoncda4c3c2002-08-17 15:21:29 +0000218
219unsigned FLAC__format_get_max_rice_partition_order(unsigned blocksize, unsigned predictor_order)
220{
221 return
222 FLAC__format_get_max_rice_partition_order_from_blocksize_limited_max_and_predictor_order(
223 FLAC__format_get_max_rice_partition_order_from_blocksize(blocksize),
224 blocksize,
225 predictor_order
226 );
227}
228
229unsigned FLAC__format_get_max_rice_partition_order_from_blocksize(unsigned blocksize)
230{
231 unsigned max_rice_partition_order = 0;
232 while(!(blocksize & 1)) {
233 max_rice_partition_order++;
234 blocksize >>= 1;
235 }
236 return min(FLAC__MAX_RICE_PARTITION_ORDER, max_rice_partition_order);
237}
238
239unsigned FLAC__format_get_max_rice_partition_order_from_blocksize_limited_max_and_predictor_order(unsigned limit, unsigned blocksize, unsigned predictor_order)
240{
241 unsigned max_rice_partition_order = limit;
242
243 while(max_rice_partition_order > 0 && (blocksize >> max_rice_partition_order) <= predictor_order)
244 max_rice_partition_order--;
245
Josh Coalsonf12edc62002-10-11 06:24:33 +0000246 FLAC__ASSERT(
247 (max_rice_partition_order == 0 && blocksize >= predictor_order) ||
248 (max_rice_partition_order > 0 && blocksize >> max_rice_partition_order > predictor_order)
249 );
Josh Coalsoncda4c3c2002-08-17 15:21:29 +0000250
251 return max_rice_partition_order;
252}
253
Josh Coalsona37ba462002-08-19 21:36:39 +0000254void FLAC__format_entropy_coding_method_partitioned_rice_contents_init(FLAC__EntropyCodingMethod_PartitionedRiceContents *object)
Josh Coalsoncda4c3c2002-08-17 15:21:29 +0000255{
256 FLAC__ASSERT(0 != object);
257
Josh Coalsoncda4c3c2002-08-17 15:21:29 +0000258 object->parameters = 0;
259 object->raw_bits = 0;
260 object->capacity_by_order = 0;
261}
262
Josh Coalsona37ba462002-08-19 21:36:39 +0000263void FLAC__format_entropy_coding_method_partitioned_rice_contents_clear(FLAC__EntropyCodingMethod_PartitionedRiceContents *object)
Josh Coalsoncda4c3c2002-08-17 15:21:29 +0000264{
265 FLAC__ASSERT(0 != object);
266
267 if(0 != object->parameters)
268 free(object->parameters);
269 if(0 != object->raw_bits)
270 free(object->raw_bits);
Josh Coalsona37ba462002-08-19 21:36:39 +0000271 FLAC__format_entropy_coding_method_partitioned_rice_contents_init(object);
Josh Coalsoncda4c3c2002-08-17 15:21:29 +0000272}
273
Josh Coalsona37ba462002-08-19 21:36:39 +0000274FLAC__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 +0000275{
276 FLAC__ASSERT(0 != object);
277
278 FLAC__ASSERT(object->capacity_by_order > 0 || (0 == object->parameters && 0 == object->raw_bits));
279
280 if(object->capacity_by_order < max_partition_order) {
281 if(0 == (object->parameters = realloc(object->parameters, sizeof(unsigned)*(1 << max_partition_order))))
282 return false;
283 if(0 == (object->raw_bits = realloc(object->raw_bits, sizeof(unsigned)*(1 << max_partition_order))))
284 return false;
285 object->capacity_by_order = max_partition_order;
286 }
287
288 return true;
289}