blob: 5a61f4cd30dabf244e3f19143a4dfda7d7d3e905 [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
26#ifdef min
27#undef min
28#endif
29#define min(a,b) ((a)<(b)?(a):(b))
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000030
Josh Coalson82738b32002-09-25 06:09:47 +000031/* VERSION should come from configure */
32const char *FLAC__VERSION_STRING = VERSION;
33
Josh Coalson0aad38b2002-09-09 05:06:51 +000034#if defined _MSC_VER || defined __MINW32__
35/* yet one more hack because of MSVC6: */
Josh Coalson82738b32002-09-25 06:09:47 +000036const char *FLAC__VENDOR_STRING = "reference libFLAC 1.0.4 20020924";
Josh Coalson0aad38b2002-09-09 05:06:51 +000037#else
Josh Coalson82738b32002-09-25 06:09:47 +000038const char *FLAC__VENDOR_STRING = "reference libFLAC " VERSION " 20020924";
Josh Coalson0aad38b2002-09-09 05:06:51 +000039#endif
40
Josh Coalson77e3f312001-06-23 03:03:24 +000041const FLAC__byte FLAC__STREAM_SYNC_STRING[4] = { 'f','L','a','C' };
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000042const unsigned FLAC__STREAM_SYNC = 0x664C6143;
43const unsigned FLAC__STREAM_SYNC_LEN = 32; /* bits */;
44
Josh Coalson20135722001-02-23 21:05:53 +000045const unsigned FLAC__STREAM_METADATA_STREAMINFO_MIN_BLOCK_SIZE_LEN = 16; /* bits */
46const unsigned FLAC__STREAM_METADATA_STREAMINFO_MAX_BLOCK_SIZE_LEN = 16; /* bits */
47const unsigned FLAC__STREAM_METADATA_STREAMINFO_MIN_FRAME_SIZE_LEN = 24; /* bits */
48const unsigned FLAC__STREAM_METADATA_STREAMINFO_MAX_FRAME_SIZE_LEN = 24; /* bits */
49const unsigned FLAC__STREAM_METADATA_STREAMINFO_SAMPLE_RATE_LEN = 20; /* bits */
50const unsigned FLAC__STREAM_METADATA_STREAMINFO_CHANNELS_LEN = 3; /* bits */
51const unsigned FLAC__STREAM_METADATA_STREAMINFO_BITS_PER_SAMPLE_LEN = 5; /* bits */
52const unsigned FLAC__STREAM_METADATA_STREAMINFO_TOTAL_SAMPLES_LEN = 36; /* bits */
53const unsigned FLAC__STREAM_METADATA_STREAMINFO_MD5SUM_LEN = 128; /* bits */
Josh Coalson20135722001-02-23 21:05:53 +000054
Josh Coalson52c44e92001-02-23 23:11:34 +000055const unsigned FLAC__STREAM_METADATA_APPLICATION_ID_LEN = 32; /* bits */
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000056
Josh Coalsonc5d08e02001-04-10 19:13:50 +000057const unsigned FLAC__STREAM_METADATA_SEEKPOINT_SAMPLE_NUMBER_LEN = 64; /* bits */
58const unsigned FLAC__STREAM_METADATA_SEEKPOINT_STREAM_OFFSET_LEN = 64; /* bits */
Josh Coalson167658a2001-04-13 18:22:25 +000059const unsigned FLAC__STREAM_METADATA_SEEKPOINT_FRAME_SAMPLES_LEN = 16; /* bits */
Josh Coalsonc5d08e02001-04-10 19:13:50 +000060
Josh Coalson77e3f312001-06-23 03:03:24 +000061const FLAC__uint64 FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER = 0xffffffffffffffff;
Josh Coalson167658a2001-04-13 18:22:25 +000062
Josh Coalsoncc059bc2002-05-04 17:35:51 +000063const unsigned FLAC__STREAM_METADATA_VORBIS_COMMENT_ENTRY_LENGTH_LEN = 32; /* bits */
64const unsigned FLAC__STREAM_METADATA_VORBIS_COMMENT_NUM_COMMENTS_LEN = 32; /* bits */
65
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000066const unsigned FLAC__STREAM_METADATA_IS_LAST_LEN = 1; /* bits */
67const unsigned FLAC__STREAM_METADATA_TYPE_LEN = 7; /* bits */
68const unsigned FLAC__STREAM_METADATA_LENGTH_LEN = 24; /* bits */
69
Josh Coalson215af572001-03-27 01:15:58 +000070const unsigned FLAC__FRAME_HEADER_SYNC = 0x3ffe;
71const unsigned FLAC__FRAME_HEADER_SYNC_LEN = 14; /* bits */
72const unsigned FLAC__FRAME_HEADER_RESERVED_LEN = 2; /* bits */
73const unsigned FLAC__FRAME_HEADER_BLOCK_SIZE_LEN = 4; /* bits */
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000074const unsigned FLAC__FRAME_HEADER_SAMPLE_RATE_LEN = 4; /* bits */
75const unsigned FLAC__FRAME_HEADER_CHANNEL_ASSIGNMENT_LEN = 4; /* bits */
76const unsigned FLAC__FRAME_HEADER_BITS_PER_SAMPLE_LEN = 3; /* bits */
77const unsigned FLAC__FRAME_HEADER_ZERO_PAD_LEN = 1; /* bits */
Josh Coalson215af572001-03-27 01:15:58 +000078const unsigned FLAC__FRAME_HEADER_CRC_LEN = 8; /* bits */
79
80const unsigned FLAC__FRAME_FOOTER_CRC_LEN = 16; /* bits */
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000081
82const unsigned FLAC__ENTROPY_CODING_METHOD_TYPE_LEN = 2; /* bits */
83const unsigned FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ORDER_LEN = 4; /* bits */
84const unsigned FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN = 4; /* bits */
Josh Coalson2051dd42001-04-12 22:22:34 +000085const unsigned FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_RAW_LEN = 5; /* bits */
86
Josh Coalson6ff59c52001-04-13 18:43:53 +000087const 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 +000088
Josh Coalson57ba6f42002-06-07 05:27:37 +000089const char * const FLAC__EntropyCodingMethodTypeString[] = {
Josh Coalson75d0a0b2001-01-24 00:42:16 +000090 "PARTITIONED_RICE"
91};
92
Josh Coalson6dcea512001-01-23 23:07:36 +000093const unsigned FLAC__SUBFRAME_LPC_QLP_COEFF_PRECISION_LEN = 4; /* bits */
94const unsigned FLAC__SUBFRAME_LPC_QLP_SHIFT_LEN = 5; /* bits */
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000095
Josh Coalson215af572001-03-27 01:15:58 +000096const unsigned FLAC__SUBFRAME_ZERO_PAD_LEN = 1; /* bits */
97const unsigned FLAC__SUBFRAME_TYPE_LEN = 6; /* bits */
98const unsigned FLAC__SUBFRAME_WASTED_BITS_FLAG_LEN = 1; /* bits */
99
100const unsigned FLAC__SUBFRAME_TYPE_CONSTANT_BYTE_ALIGNED_MASK = 0x00;
101const unsigned FLAC__SUBFRAME_TYPE_VERBATIM_BYTE_ALIGNED_MASK = 0x02;
102const unsigned FLAC__SUBFRAME_TYPE_FIXED_BYTE_ALIGNED_MASK = 0x10;
103const unsigned FLAC__SUBFRAME_TYPE_LPC_BYTE_ALIGNED_MASK = 0x40;
Josh Coalson75d0a0b2001-01-24 00:42:16 +0000104
Josh Coalson57ba6f42002-06-07 05:27:37 +0000105const char * const FLAC__SubframeTypeString[] = {
Josh Coalson75d0a0b2001-01-24 00:42:16 +0000106 "CONSTANT",
107 "VERBATIM",
108 "FIXED",
109 "LPC"
110};
111
Josh Coalson57ba6f42002-06-07 05:27:37 +0000112const char * const FLAC__ChannelAssignmentString[] = {
Josh Coalson75d0a0b2001-01-24 00:42:16 +0000113 "INDEPENDENT",
114 "LEFT_SIDE",
115 "RIGHT_SIDE",
116 "MID_SIDE"
117};
118
Josh Coalson57ba6f42002-06-07 05:27:37 +0000119const char * const FLAC__FrameNumberTypeString[] = {
Josh Coalson96084632001-07-16 18:07:12 +0000120 "FRAME_NUMBER_TYPE_FRAME_NUMBER",
121 "FRAME_NUMBER_TYPE_SAMPLE_NUMBER"
122};
123
Josh Coalsoncc682512002-06-08 04:53:42 +0000124const char * const FLAC__MetadataTypeString[] = {
Josh Coalson20135722001-02-23 21:05:53 +0000125 "STREAMINFO",
126 "PADDING",
Josh Coalson9b04be72001-06-14 18:57:53 +0000127 "APPLICATION",
Josh Coalson7e19b542002-04-25 05:53:09 +0000128 "SEEKTABLE",
129 "VORBIS_COMMENT"
Josh Coalson75d0a0b2001-01-24 00:42:16 +0000130};
Josh Coalsoncc059bc2002-05-04 17:35:51 +0000131
Josh Coalson0d36cbd2002-07-15 05:24:56 +0000132FLAC__bool FLAC__format_sample_rate_is_valid(unsigned sample_rate)
Josh Coalsoncc059bc2002-05-04 17:35:51 +0000133{
134 if(
135 sample_rate == 0 ||
136 sample_rate > FLAC__MAX_SAMPLE_RATE ||
137 (
Josh Coalson765ff502002-08-27 05:46:11 +0000138 sample_rate >= (1u << 16) &&
Josh Coalsoncc059bc2002-05-04 17:35:51 +0000139 !(sample_rate % 1000 == 0 || sample_rate % 10 == 0)
140 )
141 ) {
142 return false;
143 }
144 else
145 return true;
146}
Josh Coalson0d36cbd2002-07-15 05:24:56 +0000147
148FLAC__bool FLAC__format_seektable_is_legal(const FLAC__StreamMetadata_SeekTable *seek_table)
149{
150 unsigned i;
151 FLAC__uint64 prev_sample_number = 0;
152 FLAC__bool got_prev = false;
153
154 FLAC__ASSERT(0 != seek_table);
155
156 for(i = 0; i < seek_table->num_points; i++) {
157 if(got_prev) {
Josh Coalson5a5de732002-08-01 06:37:11 +0000158 if(
159 seek_table->points[i].sample_number != FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER &&
160 seek_table->points[i].sample_number <= prev_sample_number
161 )
Josh Coalson0d36cbd2002-07-15 05:24:56 +0000162 return false;
163 }
164 prev_sample_number = seek_table->points[i].sample_number;
165 got_prev = true;
166 }
167
168 return true;
169}
Josh Coalson5a5de732002-08-01 06:37:11 +0000170
171/* used as the sort predicate for qsort() */
172static int seekpoint_compare_(const FLAC__StreamMetadata_SeekPoint *l, const FLAC__StreamMetadata_SeekPoint *r)
173{
174 /* we don't just 'return l->sample_number - r->sample_number' since the result (FLAC__int64) might overflow an 'int' */
175 if(l->sample_number == r->sample_number)
176 return 0;
177 else if(l->sample_number < r->sample_number)
178 return -1;
179 else
180 return 1;
181}
182
183unsigned FLAC__format_seektable_sort(FLAC__StreamMetadata_SeekTable *seek_table)
184{
185 unsigned i, j;
186 FLAC__bool first;
187
Josh Coalsona0ac09a2002-08-16 05:40:16 +0000188 FLAC__ASSERT(0 != seek_table);
189
Josh Coalson5a5de732002-08-01 06:37:11 +0000190 /* sort the seekpoints */
191 qsort(seek_table->points, seek_table->num_points, sizeof(FLAC__StreamMetadata_SeekPoint), (int (*)(const void *, const void *))seekpoint_compare_);
192
193 /* uniquify the seekpoints */
194 first = true;
195 for(i = j = 0; i < seek_table->num_points; i++) {
196 if(seek_table->points[i].sample_number != FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER) {
197 if(!first) {
198 if(seek_table->points[i].sample_number == seek_table->points[j-1].sample_number)
199 continue;
200 }
201 }
202 first = false;
203 seek_table->points[j++] = seek_table->points[i];
204 }
205
Josh Coalson08a62822002-08-01 07:33:36 +0000206 for(i = j; i < seek_table->num_points; i++) {
207 seek_table->points[i].sample_number = FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER;
208 seek_table->points[i].stream_offset = 0;
209 seek_table->points[i].frame_samples = 0;
Josh Coalson5a5de732002-08-01 06:37:11 +0000210 }
211
212 return j;
213}
Josh Coalsoncda4c3c2002-08-17 15:21:29 +0000214
215unsigned FLAC__format_get_max_rice_partition_order(unsigned blocksize, unsigned predictor_order)
216{
217 return
218 FLAC__format_get_max_rice_partition_order_from_blocksize_limited_max_and_predictor_order(
219 FLAC__format_get_max_rice_partition_order_from_blocksize(blocksize),
220 blocksize,
221 predictor_order
222 );
223}
224
225unsigned FLAC__format_get_max_rice_partition_order_from_blocksize(unsigned blocksize)
226{
227 unsigned max_rice_partition_order = 0;
228 while(!(blocksize & 1)) {
229 max_rice_partition_order++;
230 blocksize >>= 1;
231 }
232 return min(FLAC__MAX_RICE_PARTITION_ORDER, max_rice_partition_order);
233}
234
235unsigned FLAC__format_get_max_rice_partition_order_from_blocksize_limited_max_and_predictor_order(unsigned limit, unsigned blocksize, unsigned predictor_order)
236{
237 unsigned max_rice_partition_order = limit;
238
239 while(max_rice_partition_order > 0 && (blocksize >> max_rice_partition_order) <= predictor_order)
240 max_rice_partition_order--;
241
242 FLAC__ASSERT(blocksize >> max_rice_partition_order > predictor_order);
243
244 return max_rice_partition_order;
245}
246
Josh Coalsona37ba462002-08-19 21:36:39 +0000247void FLAC__format_entropy_coding_method_partitioned_rice_contents_init(FLAC__EntropyCodingMethod_PartitionedRiceContents *object)
Josh Coalsoncda4c3c2002-08-17 15:21:29 +0000248{
249 FLAC__ASSERT(0 != object);
250
Josh Coalsoncda4c3c2002-08-17 15:21:29 +0000251 object->parameters = 0;
252 object->raw_bits = 0;
253 object->capacity_by_order = 0;
254}
255
Josh Coalsona37ba462002-08-19 21:36:39 +0000256void FLAC__format_entropy_coding_method_partitioned_rice_contents_clear(FLAC__EntropyCodingMethod_PartitionedRiceContents *object)
Josh Coalsoncda4c3c2002-08-17 15:21:29 +0000257{
258 FLAC__ASSERT(0 != object);
259
260 if(0 != object->parameters)
261 free(object->parameters);
262 if(0 != object->raw_bits)
263 free(object->raw_bits);
Josh Coalsona37ba462002-08-19 21:36:39 +0000264 FLAC__format_entropy_coding_method_partitioned_rice_contents_init(object);
Josh Coalsoncda4c3c2002-08-17 15:21:29 +0000265}
266
Josh Coalsona37ba462002-08-19 21:36:39 +0000267FLAC__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 +0000268{
269 FLAC__ASSERT(0 != object);
270
271 FLAC__ASSERT(object->capacity_by_order > 0 || (0 == object->parameters && 0 == object->raw_bits));
272
273 if(object->capacity_by_order < max_partition_order) {
274 if(0 == (object->parameters = realloc(object->parameters, sizeof(unsigned)*(1 << max_partition_order))))
275 return false;
276 if(0 == (object->raw_bits = realloc(object->raw_bits, sizeof(unsigned)*(1 << max_partition_order))))
277 return false;
278 object->capacity_by_order = max_partition_order;
279 }
280
281 return true;
282}