blob: 736668e18a28b7fca084d97d0cab982a11abab7d [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 Coalson0aad38b2002-09-09 05:06:51 +000031#if defined _MSC_VER || defined __MINW32__
32/* yet one more hack because of MSVC6: */
33const FLAC__byte *FLAC__VENDOR_STRING = "reference libFLAC 1.0.4_beta 20020823";
34#else
Josh Coalsoncb9d93a2002-08-25 05:27:15 +000035const FLAC__byte *FLAC__VENDOR_STRING = "reference libFLAC " FLAC__VERSION_STRING " 20020823";
Josh Coalson0aad38b2002-09-09 05:06:51 +000036#endif
37
Josh Coalson77e3f312001-06-23 03:03:24 +000038const FLAC__byte FLAC__STREAM_SYNC_STRING[4] = { 'f','L','a','C' };
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000039const unsigned FLAC__STREAM_SYNC = 0x664C6143;
40const unsigned FLAC__STREAM_SYNC_LEN = 32; /* bits */;
41
Josh Coalson20135722001-02-23 21:05:53 +000042const unsigned FLAC__STREAM_METADATA_STREAMINFO_MIN_BLOCK_SIZE_LEN = 16; /* bits */
43const unsigned FLAC__STREAM_METADATA_STREAMINFO_MAX_BLOCK_SIZE_LEN = 16; /* bits */
44const unsigned FLAC__STREAM_METADATA_STREAMINFO_MIN_FRAME_SIZE_LEN = 24; /* bits */
45const unsigned FLAC__STREAM_METADATA_STREAMINFO_MAX_FRAME_SIZE_LEN = 24; /* bits */
46const unsigned FLAC__STREAM_METADATA_STREAMINFO_SAMPLE_RATE_LEN = 20; /* bits */
47const unsigned FLAC__STREAM_METADATA_STREAMINFO_CHANNELS_LEN = 3; /* bits */
48const unsigned FLAC__STREAM_METADATA_STREAMINFO_BITS_PER_SAMPLE_LEN = 5; /* bits */
49const unsigned FLAC__STREAM_METADATA_STREAMINFO_TOTAL_SAMPLES_LEN = 36; /* bits */
50const unsigned FLAC__STREAM_METADATA_STREAMINFO_MD5SUM_LEN = 128; /* bits */
Josh Coalson20135722001-02-23 21:05:53 +000051
Josh Coalson52c44e92001-02-23 23:11:34 +000052const unsigned FLAC__STREAM_METADATA_APPLICATION_ID_LEN = 32; /* bits */
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000053
Josh Coalsonc5d08e02001-04-10 19:13:50 +000054const unsigned FLAC__STREAM_METADATA_SEEKPOINT_SAMPLE_NUMBER_LEN = 64; /* bits */
55const unsigned FLAC__STREAM_METADATA_SEEKPOINT_STREAM_OFFSET_LEN = 64; /* bits */
Josh Coalson167658a2001-04-13 18:22:25 +000056const unsigned FLAC__STREAM_METADATA_SEEKPOINT_FRAME_SAMPLES_LEN = 16; /* bits */
Josh Coalsonc5d08e02001-04-10 19:13:50 +000057
Josh Coalson77e3f312001-06-23 03:03:24 +000058const FLAC__uint64 FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER = 0xffffffffffffffff;
Josh Coalson167658a2001-04-13 18:22:25 +000059
Josh Coalsoncc059bc2002-05-04 17:35:51 +000060const unsigned FLAC__STREAM_METADATA_VORBIS_COMMENT_ENTRY_LENGTH_LEN = 32; /* bits */
61const unsigned FLAC__STREAM_METADATA_VORBIS_COMMENT_NUM_COMMENTS_LEN = 32; /* bits */
62
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000063const unsigned FLAC__STREAM_METADATA_IS_LAST_LEN = 1; /* bits */
64const unsigned FLAC__STREAM_METADATA_TYPE_LEN = 7; /* bits */
65const unsigned FLAC__STREAM_METADATA_LENGTH_LEN = 24; /* bits */
66
Josh Coalson215af572001-03-27 01:15:58 +000067const unsigned FLAC__FRAME_HEADER_SYNC = 0x3ffe;
68const unsigned FLAC__FRAME_HEADER_SYNC_LEN = 14; /* bits */
69const unsigned FLAC__FRAME_HEADER_RESERVED_LEN = 2; /* bits */
70const unsigned FLAC__FRAME_HEADER_BLOCK_SIZE_LEN = 4; /* bits */
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000071const unsigned FLAC__FRAME_HEADER_SAMPLE_RATE_LEN = 4; /* bits */
72const unsigned FLAC__FRAME_HEADER_CHANNEL_ASSIGNMENT_LEN = 4; /* bits */
73const unsigned FLAC__FRAME_HEADER_BITS_PER_SAMPLE_LEN = 3; /* bits */
74const unsigned FLAC__FRAME_HEADER_ZERO_PAD_LEN = 1; /* bits */
Josh Coalson215af572001-03-27 01:15:58 +000075const unsigned FLAC__FRAME_HEADER_CRC_LEN = 8; /* bits */
76
77const unsigned FLAC__FRAME_FOOTER_CRC_LEN = 16; /* bits */
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000078
79const unsigned FLAC__ENTROPY_CODING_METHOD_TYPE_LEN = 2; /* bits */
80const unsigned FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ORDER_LEN = 4; /* bits */
81const unsigned FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN = 4; /* bits */
Josh Coalson2051dd42001-04-12 22:22:34 +000082const unsigned FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_RAW_LEN = 5; /* bits */
83
Josh Coalson6ff59c52001-04-13 18:43:53 +000084const 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 +000085
Josh Coalson57ba6f42002-06-07 05:27:37 +000086const char * const FLAC__EntropyCodingMethodTypeString[] = {
Josh Coalson75d0a0b2001-01-24 00:42:16 +000087 "PARTITIONED_RICE"
88};
89
Josh Coalson6dcea512001-01-23 23:07:36 +000090const unsigned FLAC__SUBFRAME_LPC_QLP_COEFF_PRECISION_LEN = 4; /* bits */
91const unsigned FLAC__SUBFRAME_LPC_QLP_SHIFT_LEN = 5; /* bits */
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000092
Josh Coalson215af572001-03-27 01:15:58 +000093const unsigned FLAC__SUBFRAME_ZERO_PAD_LEN = 1; /* bits */
94const unsigned FLAC__SUBFRAME_TYPE_LEN = 6; /* bits */
95const unsigned FLAC__SUBFRAME_WASTED_BITS_FLAG_LEN = 1; /* bits */
96
97const unsigned FLAC__SUBFRAME_TYPE_CONSTANT_BYTE_ALIGNED_MASK = 0x00;
98const unsigned FLAC__SUBFRAME_TYPE_VERBATIM_BYTE_ALIGNED_MASK = 0x02;
99const unsigned FLAC__SUBFRAME_TYPE_FIXED_BYTE_ALIGNED_MASK = 0x10;
100const unsigned FLAC__SUBFRAME_TYPE_LPC_BYTE_ALIGNED_MASK = 0x40;
Josh Coalson75d0a0b2001-01-24 00:42:16 +0000101
Josh Coalson57ba6f42002-06-07 05:27:37 +0000102const char * const FLAC__SubframeTypeString[] = {
Josh Coalson75d0a0b2001-01-24 00:42:16 +0000103 "CONSTANT",
104 "VERBATIM",
105 "FIXED",
106 "LPC"
107};
108
Josh Coalson57ba6f42002-06-07 05:27:37 +0000109const char * const FLAC__ChannelAssignmentString[] = {
Josh Coalson75d0a0b2001-01-24 00:42:16 +0000110 "INDEPENDENT",
111 "LEFT_SIDE",
112 "RIGHT_SIDE",
113 "MID_SIDE"
114};
115
Josh Coalson57ba6f42002-06-07 05:27:37 +0000116const char * const FLAC__FrameNumberTypeString[] = {
Josh Coalson96084632001-07-16 18:07:12 +0000117 "FRAME_NUMBER_TYPE_FRAME_NUMBER",
118 "FRAME_NUMBER_TYPE_SAMPLE_NUMBER"
119};
120
Josh Coalsoncc682512002-06-08 04:53:42 +0000121const char * const FLAC__MetadataTypeString[] = {
Josh Coalson20135722001-02-23 21:05:53 +0000122 "STREAMINFO",
123 "PADDING",
Josh Coalson9b04be72001-06-14 18:57:53 +0000124 "APPLICATION",
Josh Coalson7e19b542002-04-25 05:53:09 +0000125 "SEEKTABLE",
126 "VORBIS_COMMENT"
Josh Coalson75d0a0b2001-01-24 00:42:16 +0000127};
Josh Coalsoncc059bc2002-05-04 17:35:51 +0000128
Josh Coalson0d36cbd2002-07-15 05:24:56 +0000129FLAC__bool FLAC__format_sample_rate_is_valid(unsigned sample_rate)
Josh Coalsoncc059bc2002-05-04 17:35:51 +0000130{
131 if(
132 sample_rate == 0 ||
133 sample_rate > FLAC__MAX_SAMPLE_RATE ||
134 (
Josh Coalson765ff502002-08-27 05:46:11 +0000135 sample_rate >= (1u << 16) &&
Josh Coalsoncc059bc2002-05-04 17:35:51 +0000136 !(sample_rate % 1000 == 0 || sample_rate % 10 == 0)
137 )
138 ) {
139 return false;
140 }
141 else
142 return true;
143}
Josh Coalson0d36cbd2002-07-15 05:24:56 +0000144
145FLAC__bool FLAC__format_seektable_is_legal(const FLAC__StreamMetadata_SeekTable *seek_table)
146{
147 unsigned i;
148 FLAC__uint64 prev_sample_number = 0;
149 FLAC__bool got_prev = false;
150
151 FLAC__ASSERT(0 != seek_table);
152
153 for(i = 0; i < seek_table->num_points; i++) {
154 if(got_prev) {
Josh Coalson5a5de732002-08-01 06:37:11 +0000155 if(
156 seek_table->points[i].sample_number != FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER &&
157 seek_table->points[i].sample_number <= prev_sample_number
158 )
Josh Coalson0d36cbd2002-07-15 05:24:56 +0000159 return false;
160 }
161 prev_sample_number = seek_table->points[i].sample_number;
162 got_prev = true;
163 }
164
165 return true;
166}
Josh Coalson5a5de732002-08-01 06:37:11 +0000167
168/* used as the sort predicate for qsort() */
169static int seekpoint_compare_(const FLAC__StreamMetadata_SeekPoint *l, const FLAC__StreamMetadata_SeekPoint *r)
170{
171 /* we don't just 'return l->sample_number - r->sample_number' since the result (FLAC__int64) might overflow an 'int' */
172 if(l->sample_number == r->sample_number)
173 return 0;
174 else if(l->sample_number < r->sample_number)
175 return -1;
176 else
177 return 1;
178}
179
180unsigned FLAC__format_seektable_sort(FLAC__StreamMetadata_SeekTable *seek_table)
181{
182 unsigned i, j;
183 FLAC__bool first;
184
Josh Coalsona0ac09a2002-08-16 05:40:16 +0000185 FLAC__ASSERT(0 != seek_table);
186
Josh Coalson5a5de732002-08-01 06:37:11 +0000187 /* sort the seekpoints */
188 qsort(seek_table->points, seek_table->num_points, sizeof(FLAC__StreamMetadata_SeekPoint), (int (*)(const void *, const void *))seekpoint_compare_);
189
190 /* uniquify the seekpoints */
191 first = true;
192 for(i = j = 0; i < seek_table->num_points; i++) {
193 if(seek_table->points[i].sample_number != FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER) {
194 if(!first) {
195 if(seek_table->points[i].sample_number == seek_table->points[j-1].sample_number)
196 continue;
197 }
198 }
199 first = false;
200 seek_table->points[j++] = seek_table->points[i];
201 }
202
Josh Coalson08a62822002-08-01 07:33:36 +0000203 for(i = j; i < seek_table->num_points; i++) {
204 seek_table->points[i].sample_number = FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER;
205 seek_table->points[i].stream_offset = 0;
206 seek_table->points[i].frame_samples = 0;
Josh Coalson5a5de732002-08-01 06:37:11 +0000207 }
208
209 return j;
210}
Josh Coalsoncda4c3c2002-08-17 15:21:29 +0000211
212unsigned FLAC__format_get_max_rice_partition_order(unsigned blocksize, unsigned predictor_order)
213{
214 return
215 FLAC__format_get_max_rice_partition_order_from_blocksize_limited_max_and_predictor_order(
216 FLAC__format_get_max_rice_partition_order_from_blocksize(blocksize),
217 blocksize,
218 predictor_order
219 );
220}
221
222unsigned FLAC__format_get_max_rice_partition_order_from_blocksize(unsigned blocksize)
223{
224 unsigned max_rice_partition_order = 0;
225 while(!(blocksize & 1)) {
226 max_rice_partition_order++;
227 blocksize >>= 1;
228 }
229 return min(FLAC__MAX_RICE_PARTITION_ORDER, max_rice_partition_order);
230}
231
232unsigned FLAC__format_get_max_rice_partition_order_from_blocksize_limited_max_and_predictor_order(unsigned limit, unsigned blocksize, unsigned predictor_order)
233{
234 unsigned max_rice_partition_order = limit;
235
236 while(max_rice_partition_order > 0 && (blocksize >> max_rice_partition_order) <= predictor_order)
237 max_rice_partition_order--;
238
239 FLAC__ASSERT(blocksize >> max_rice_partition_order > predictor_order);
240
241 return max_rice_partition_order;
242}
243
Josh Coalsona37ba462002-08-19 21:36:39 +0000244void FLAC__format_entropy_coding_method_partitioned_rice_contents_init(FLAC__EntropyCodingMethod_PartitionedRiceContents *object)
Josh Coalsoncda4c3c2002-08-17 15:21:29 +0000245{
246 FLAC__ASSERT(0 != object);
247
Josh Coalsoncda4c3c2002-08-17 15:21:29 +0000248 object->parameters = 0;
249 object->raw_bits = 0;
250 object->capacity_by_order = 0;
251}
252
Josh Coalsona37ba462002-08-19 21:36:39 +0000253void FLAC__format_entropy_coding_method_partitioned_rice_contents_clear(FLAC__EntropyCodingMethod_PartitionedRiceContents *object)
Josh Coalsoncda4c3c2002-08-17 15:21:29 +0000254{
255 FLAC__ASSERT(0 != object);
256
257 if(0 != object->parameters)
258 free(object->parameters);
259 if(0 != object->raw_bits)
260 free(object->raw_bits);
Josh Coalsona37ba462002-08-19 21:36:39 +0000261 FLAC__format_entropy_coding_method_partitioned_rice_contents_init(object);
Josh Coalsoncda4c3c2002-08-17 15:21:29 +0000262}
263
Josh Coalsona37ba462002-08-19 21:36:39 +0000264FLAC__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 +0000265{
266 FLAC__ASSERT(0 != object);
267
268 FLAC__ASSERT(object->capacity_by_order > 0 || (0 == object->parameters && 0 == object->raw_bits));
269
270 if(object->capacity_by_order < max_partition_order) {
271 if(0 == (object->parameters = realloc(object->parameters, sizeof(unsigned)*(1 << max_partition_order))))
272 return false;
273 if(0 == (object->raw_bits = realloc(object->raw_bits, sizeof(unsigned)*(1 << max_partition_order))))
274 return false;
275 object->capacity_by_order = max_partition_order;
276 }
277
278 return true;
279}