blob: 60cf4cf4fcea61b3b6ae59de76397f9bcc842bb0 [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 Coalson8e9c4512002-11-14 05:00:24 +000070FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_INDEX_OFFSET_LEN = 64; /* bits */
71FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_INDEX_NUMBER_LEN = 8; /* bits */
72FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_INDEX_RESERVED_LEN = 3*8; /* bits @@@@3*/
73
74FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_TRACK_OFFSET_LEN = 64; /* bits */
75FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_TRACK_NUMBER_LEN = 8; /* bits */
76FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_TRACK_ISRC_LEN = 12*8; /* bits */
77FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_TRACK_TYPE_LEN = 1; /* bit */
78FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_TRACK_PRE_EMPHASIS_LEN = 1; /* bit */
Josh Coalson3a203822002-12-03 06:31:41 +000079FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_TRACK_RESERVED_LEN = 6+13*8; /* bits @@@@13*/
Josh Coalson8e9c4512002-11-14 05:00:24 +000080FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_TRACK_NUM_INDICES_LEN = 8; /* bits */
81
82FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_MEDIA_CATALOG_NUMBER_LEN = 128*8; /* bits */
83FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_LEAD_IN_LEN = 64; /* bits */
Josh Coalson3a203822002-12-03 06:31:41 +000084FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_RESERVED_LEN = 259*8; /* bits @@@@259 */
Josh Coalson8e9c4512002-11-14 05:00:24 +000085FLAC_API const unsigned FLAC__STREAM_METADATA_CUESHEET_NUM_TRACKS_LEN = 8; /* bits */
86
Josh Coalson6afed9f2002-10-16 22:29:47 +000087FLAC_API const unsigned FLAC__STREAM_METADATA_IS_LAST_LEN = 1; /* bits */
88FLAC_API const unsigned FLAC__STREAM_METADATA_TYPE_LEN = 7; /* bits */
89FLAC_API const unsigned FLAC__STREAM_METADATA_LENGTH_LEN = 24; /* bits */
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000090
Josh Coalson6afed9f2002-10-16 22:29:47 +000091FLAC_API const unsigned FLAC__FRAME_HEADER_SYNC = 0x3ffe;
92FLAC_API const unsigned FLAC__FRAME_HEADER_SYNC_LEN = 14; /* bits */
93FLAC_API const unsigned FLAC__FRAME_HEADER_RESERVED_LEN = 2; /* bits */
94FLAC_API const unsigned FLAC__FRAME_HEADER_BLOCK_SIZE_LEN = 4; /* bits */
95FLAC_API const unsigned FLAC__FRAME_HEADER_SAMPLE_RATE_LEN = 4; /* bits */
96FLAC_API const unsigned FLAC__FRAME_HEADER_CHANNEL_ASSIGNMENT_LEN = 4; /* bits */
97FLAC_API const unsigned FLAC__FRAME_HEADER_BITS_PER_SAMPLE_LEN = 3; /* bits */
98FLAC_API const unsigned FLAC__FRAME_HEADER_ZERO_PAD_LEN = 1; /* bits */
99FLAC_API const unsigned FLAC__FRAME_HEADER_CRC_LEN = 8; /* bits */
Josh Coalson215af572001-03-27 01:15:58 +0000100
Josh Coalson6afed9f2002-10-16 22:29:47 +0000101FLAC_API const unsigned FLAC__FRAME_FOOTER_CRC_LEN = 16; /* bits */
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000102
Josh Coalson6afed9f2002-10-16 22:29:47 +0000103FLAC_API const unsigned FLAC__ENTROPY_CODING_METHOD_TYPE_LEN = 2; /* bits */
104FLAC_API const unsigned FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ORDER_LEN = 4; /* bits */
105FLAC_API const unsigned FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN = 4; /* bits */
106FLAC_API const unsigned FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_RAW_LEN = 5; /* bits */
Josh Coalson2051dd42001-04-12 22:22:34 +0000107
Josh Coalson6afed9f2002-10-16 22:29:47 +0000108FLAC_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 +0000109
Josh Coalson6afed9f2002-10-16 22:29:47 +0000110FLAC_API const char * const FLAC__EntropyCodingMethodTypeString[] = {
Josh Coalson75d0a0b2001-01-24 00:42:16 +0000111 "PARTITIONED_RICE"
112};
113
Josh Coalson6afed9f2002-10-16 22:29:47 +0000114FLAC_API const unsigned FLAC__SUBFRAME_LPC_QLP_COEFF_PRECISION_LEN = 4; /* bits */
115FLAC_API const unsigned FLAC__SUBFRAME_LPC_QLP_SHIFT_LEN = 5; /* bits */
Josh Coalsonbb7f6b92000-12-10 04:09:52 +0000116
Josh Coalson6afed9f2002-10-16 22:29:47 +0000117FLAC_API const unsigned FLAC__SUBFRAME_ZERO_PAD_LEN = 1; /* bits */
118FLAC_API const unsigned FLAC__SUBFRAME_TYPE_LEN = 6; /* bits */
119FLAC_API const unsigned FLAC__SUBFRAME_WASTED_BITS_FLAG_LEN = 1; /* bits */
Josh Coalson215af572001-03-27 01:15:58 +0000120
Josh Coalson6afed9f2002-10-16 22:29:47 +0000121FLAC_API const unsigned FLAC__SUBFRAME_TYPE_CONSTANT_BYTE_ALIGNED_MASK = 0x00;
122FLAC_API const unsigned FLAC__SUBFRAME_TYPE_VERBATIM_BYTE_ALIGNED_MASK = 0x02;
123FLAC_API const unsigned FLAC__SUBFRAME_TYPE_FIXED_BYTE_ALIGNED_MASK = 0x10;
124FLAC_API const unsigned FLAC__SUBFRAME_TYPE_LPC_BYTE_ALIGNED_MASK = 0x40;
Josh Coalson75d0a0b2001-01-24 00:42:16 +0000125
Josh Coalson6afed9f2002-10-16 22:29:47 +0000126FLAC_API const char * const FLAC__SubframeTypeString[] = {
Josh Coalson75d0a0b2001-01-24 00:42:16 +0000127 "CONSTANT",
128 "VERBATIM",
129 "FIXED",
130 "LPC"
131};
132
Josh Coalson6afed9f2002-10-16 22:29:47 +0000133FLAC_API const char * const FLAC__ChannelAssignmentString[] = {
Josh Coalson75d0a0b2001-01-24 00:42:16 +0000134 "INDEPENDENT",
135 "LEFT_SIDE",
136 "RIGHT_SIDE",
137 "MID_SIDE"
138};
139
Josh Coalson6afed9f2002-10-16 22:29:47 +0000140FLAC_API const char * const FLAC__FrameNumberTypeString[] = {
Josh Coalson96084632001-07-16 18:07:12 +0000141 "FRAME_NUMBER_TYPE_FRAME_NUMBER",
142 "FRAME_NUMBER_TYPE_SAMPLE_NUMBER"
143};
144
Josh Coalson6afed9f2002-10-16 22:29:47 +0000145FLAC_API const char * const FLAC__MetadataTypeString[] = {
Josh Coalson20135722001-02-23 21:05:53 +0000146 "STREAMINFO",
147 "PADDING",
Josh Coalson9b04be72001-06-14 18:57:53 +0000148 "APPLICATION",
Josh Coalson7e19b542002-04-25 05:53:09 +0000149 "SEEKTABLE",
Josh Coalsone4869382002-11-15 05:41:48 +0000150 "VORBIS_COMMENT",
151 "CUESHEET"
Josh Coalson75d0a0b2001-01-24 00:42:16 +0000152};
Josh Coalsoncc059bc2002-05-04 17:35:51 +0000153
Josh Coalson6afed9f2002-10-16 22:29:47 +0000154FLAC_API FLAC__bool FLAC__format_sample_rate_is_valid(unsigned sample_rate)
Josh Coalsoncc059bc2002-05-04 17:35:51 +0000155{
156 if(
157 sample_rate == 0 ||
158 sample_rate > FLAC__MAX_SAMPLE_RATE ||
159 (
Josh Coalson765ff502002-08-27 05:46:11 +0000160 sample_rate >= (1u << 16) &&
Josh Coalsoncc059bc2002-05-04 17:35:51 +0000161 !(sample_rate % 1000 == 0 || sample_rate % 10 == 0)
162 )
163 ) {
164 return false;
165 }
166 else
167 return true;
168}
Josh Coalson0d36cbd2002-07-15 05:24:56 +0000169
Josh Coalson6afed9f2002-10-16 22:29:47 +0000170FLAC_API FLAC__bool FLAC__format_seektable_is_legal(const FLAC__StreamMetadata_SeekTable *seek_table)
Josh Coalson0d36cbd2002-07-15 05:24:56 +0000171{
172 unsigned i;
173 FLAC__uint64 prev_sample_number = 0;
174 FLAC__bool got_prev = false;
175
176 FLAC__ASSERT(0 != seek_table);
177
178 for(i = 0; i < seek_table->num_points; i++) {
179 if(got_prev) {
Josh Coalson5a5de732002-08-01 06:37:11 +0000180 if(
181 seek_table->points[i].sample_number != FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER &&
182 seek_table->points[i].sample_number <= prev_sample_number
183 )
Josh Coalson0d36cbd2002-07-15 05:24:56 +0000184 return false;
185 }
186 prev_sample_number = seek_table->points[i].sample_number;
187 got_prev = true;
188 }
189
190 return true;
191}
Josh Coalson5a5de732002-08-01 06:37:11 +0000192
193/* used as the sort predicate for qsort() */
194static int seekpoint_compare_(const FLAC__StreamMetadata_SeekPoint *l, const FLAC__StreamMetadata_SeekPoint *r)
195{
196 /* we don't just 'return l->sample_number - r->sample_number' since the result (FLAC__int64) might overflow an 'int' */
197 if(l->sample_number == r->sample_number)
198 return 0;
199 else if(l->sample_number < r->sample_number)
200 return -1;
201 else
202 return 1;
203}
204
Josh Coalson6afed9f2002-10-16 22:29:47 +0000205FLAC_API unsigned FLAC__format_seektable_sort(FLAC__StreamMetadata_SeekTable *seek_table)
Josh Coalson5a5de732002-08-01 06:37:11 +0000206{
207 unsigned i, j;
208 FLAC__bool first;
209
Josh Coalsona0ac09a2002-08-16 05:40:16 +0000210 FLAC__ASSERT(0 != seek_table);
211
Josh Coalson5a5de732002-08-01 06:37:11 +0000212 /* sort the seekpoints */
213 qsort(seek_table->points, seek_table->num_points, sizeof(FLAC__StreamMetadata_SeekPoint), (int (*)(const void *, const void *))seekpoint_compare_);
214
215 /* uniquify the seekpoints */
216 first = true;
217 for(i = j = 0; i < seek_table->num_points; i++) {
218 if(seek_table->points[i].sample_number != FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER) {
219 if(!first) {
220 if(seek_table->points[i].sample_number == seek_table->points[j-1].sample_number)
221 continue;
222 }
223 }
224 first = false;
225 seek_table->points[j++] = seek_table->points[i];
226 }
227
Josh Coalson08a62822002-08-01 07:33:36 +0000228 for(i = j; i < seek_table->num_points; i++) {
229 seek_table->points[i].sample_number = FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER;
230 seek_table->points[i].stream_offset = 0;
231 seek_table->points[i].frame_samples = 0;
Josh Coalson5a5de732002-08-01 06:37:11 +0000232 }
233
234 return j;
235}
Josh Coalsoncda4c3c2002-08-17 15:21:29 +0000236
Josh Coalson8e9c4512002-11-14 05:00:24 +0000237FLAC_API FLAC__bool FLAC__format_cuesheet_is_legal(const FLAC__StreamMetadata_CueSheet *cue_sheet, FLAC__bool check_cd_da_subset, const char **violation)
238{
239 unsigned i, j;
240
241 if(check_cd_da_subset) {
242 if(cue_sheet->lead_in < 2 * 44100) {
243 if(violation) *violation = "CD-DA cue sheet must have a lead-in length of at least 2 seconds";
244 return false;
245 }
246 if(cue_sheet->lead_in % 588 != 0) {
247 if(violation) *violation = "CD-DA cue sheet lead-in length must be evenly divisible by 588 samples";
248 return false;
249 }
250 }
251
252 if(cue_sheet->num_tracks == 0) {
253 if(violation) *violation = "cue sheet must have at least one track (the lead-out)";
254 return false;
255 }
256
257 if(check_cd_da_subset && cue_sheet->tracks[cue_sheet->num_tracks-1].number != 170) {
258 if(violation) *violation = "CD-DA cue sheet must have a lead-out track number 170 (0xAA)";
259 return false;
260 }
261
262 for(i = 0; i < cue_sheet->num_tracks; i++) {
263 if(cue_sheet->tracks[i].number == 0) {
264 if(violation) *violation = "cue sheet may not have a track number 0";
265 return false;
266 }
267
268 if(check_cd_da_subset) {
269 if(!((cue_sheet->tracks[i].number >= 1 && cue_sheet->tracks[i].number <= 99) || cue_sheet->tracks[i].number == 170)) {
270 if(violation) *violation = "CD-DA cue sheet track number must be 1-99 or 170";
271 return false;
272 }
273 }
274
275 if(check_cd_da_subset && cue_sheet->tracks[i].offset % 588 != 0) {
276 if(violation) *violation = "CD-DA cue sheet track offset must be evenly divisible by 588 samples";
277 return false;
278 }
279
Josh Coalson3f86cc72002-11-21 06:41:46 +0000280 if(i < cue_sheet->num_tracks - 1) {
281 if(cue_sheet->tracks[i].num_indices == 0) {
282 if(violation) *violation = "cue sheet track must have at least one index point";
283 return false;
284 }
Josh Coalson8e9c4512002-11-14 05:00:24 +0000285
Josh Coalson3f86cc72002-11-21 06:41:46 +0000286 if(cue_sheet->tracks[i].indices[0].number > 1) {
287 if(violation) *violation = "cue sheet track's first index number must be 0 or 1";
288 return false;
289 }
Josh Coalson8e9c4512002-11-14 05:00:24 +0000290 }
291
292 for(j = 0; j < cue_sheet->tracks[i].num_indices; j++) {
293 if(check_cd_da_subset && cue_sheet->tracks[i].indices[j].offset % 588 != 0) {
294 if(violation) *violation = "CD-DA cue sheet track index offset must be evenly divisible by 588 samples";
295 return false;
296 }
297
298 if(j > 0) {
299 if(cue_sheet->tracks[i].indices[j].number != cue_sheet->tracks[i].indices[j-1].number + 1) {
300 if(violation) *violation = "cue sheet track index numbers must increase by 1";
301 return false;
302 }
303 }
304 }
305 }
306
307 return true;
308}
309
310/*
311 * These routines are private to libFLAC
312 */
Josh Coalsoncda4c3c2002-08-17 15:21:29 +0000313unsigned FLAC__format_get_max_rice_partition_order(unsigned blocksize, unsigned predictor_order)
314{
315 return
316 FLAC__format_get_max_rice_partition_order_from_blocksize_limited_max_and_predictor_order(
317 FLAC__format_get_max_rice_partition_order_from_blocksize(blocksize),
318 blocksize,
319 predictor_order
320 );
321}
322
323unsigned FLAC__format_get_max_rice_partition_order_from_blocksize(unsigned blocksize)
324{
325 unsigned max_rice_partition_order = 0;
326 while(!(blocksize & 1)) {
327 max_rice_partition_order++;
328 blocksize >>= 1;
329 }
330 return min(FLAC__MAX_RICE_PARTITION_ORDER, max_rice_partition_order);
331}
332
333unsigned FLAC__format_get_max_rice_partition_order_from_blocksize_limited_max_and_predictor_order(unsigned limit, unsigned blocksize, unsigned predictor_order)
334{
335 unsigned max_rice_partition_order = limit;
336
337 while(max_rice_partition_order > 0 && (blocksize >> max_rice_partition_order) <= predictor_order)
338 max_rice_partition_order--;
339
Josh Coalsonf12edc62002-10-11 06:24:33 +0000340 FLAC__ASSERT(
341 (max_rice_partition_order == 0 && blocksize >= predictor_order) ||
342 (max_rice_partition_order > 0 && blocksize >> max_rice_partition_order > predictor_order)
343 );
Josh Coalsoncda4c3c2002-08-17 15:21:29 +0000344
345 return max_rice_partition_order;
346}
347
Josh Coalsona37ba462002-08-19 21:36:39 +0000348void FLAC__format_entropy_coding_method_partitioned_rice_contents_init(FLAC__EntropyCodingMethod_PartitionedRiceContents *object)
Josh Coalsoncda4c3c2002-08-17 15:21:29 +0000349{
350 FLAC__ASSERT(0 != object);
351
Josh Coalsoncda4c3c2002-08-17 15:21:29 +0000352 object->parameters = 0;
353 object->raw_bits = 0;
354 object->capacity_by_order = 0;
355}
356
Josh Coalsona37ba462002-08-19 21:36:39 +0000357void FLAC__format_entropy_coding_method_partitioned_rice_contents_clear(FLAC__EntropyCodingMethod_PartitionedRiceContents *object)
Josh Coalsoncda4c3c2002-08-17 15:21:29 +0000358{
359 FLAC__ASSERT(0 != object);
360
361 if(0 != object->parameters)
362 free(object->parameters);
363 if(0 != object->raw_bits)
364 free(object->raw_bits);
Josh Coalsona37ba462002-08-19 21:36:39 +0000365 FLAC__format_entropy_coding_method_partitioned_rice_contents_init(object);
Josh Coalsoncda4c3c2002-08-17 15:21:29 +0000366}
367
Josh Coalsona37ba462002-08-19 21:36:39 +0000368FLAC__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 +0000369{
370 FLAC__ASSERT(0 != object);
371
372 FLAC__ASSERT(object->capacity_by_order > 0 || (0 == object->parameters && 0 == object->raw_bits));
373
374 if(object->capacity_by_order < max_partition_order) {
Josh Coalson5e3fcb22002-11-06 07:11:26 +0000375 if(0 == (object->parameters = (unsigned*)realloc(object->parameters, sizeof(unsigned)*(1 << max_partition_order))))
Josh Coalsoncda4c3c2002-08-17 15:21:29 +0000376 return false;
Josh Coalson5e3fcb22002-11-06 07:11:26 +0000377 if(0 == (object->raw_bits = (unsigned*)realloc(object->raw_bits, sizeof(unsigned)*(1 << max_partition_order))))
Josh Coalsoncda4c3c2002-08-17 15:21:29 +0000378 return false;
379 object->capacity_by_order = max_partition_order;
380 }
381
382 return true;
383}