blob: 0e8d5f484da6c23a187593e0bc2255ca9b41469b [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"
24
Josh Coalson77e3f312001-06-23 03:03:24 +000025const FLAC__byte FLAC__STREAM_SYNC_STRING[4] = { 'f','L','a','C' };
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000026const unsigned FLAC__STREAM_SYNC = 0x664C6143;
27const unsigned FLAC__STREAM_SYNC_LEN = 32; /* bits */;
28
Josh Coalson20135722001-02-23 21:05:53 +000029const unsigned FLAC__STREAM_METADATA_STREAMINFO_MIN_BLOCK_SIZE_LEN = 16; /* bits */
30const unsigned FLAC__STREAM_METADATA_STREAMINFO_MAX_BLOCK_SIZE_LEN = 16; /* bits */
31const unsigned FLAC__STREAM_METADATA_STREAMINFO_MIN_FRAME_SIZE_LEN = 24; /* bits */
32const unsigned FLAC__STREAM_METADATA_STREAMINFO_MAX_FRAME_SIZE_LEN = 24; /* bits */
33const unsigned FLAC__STREAM_METADATA_STREAMINFO_SAMPLE_RATE_LEN = 20; /* bits */
34const unsigned FLAC__STREAM_METADATA_STREAMINFO_CHANNELS_LEN = 3; /* bits */
35const unsigned FLAC__STREAM_METADATA_STREAMINFO_BITS_PER_SAMPLE_LEN = 5; /* bits */
36const unsigned FLAC__STREAM_METADATA_STREAMINFO_TOTAL_SAMPLES_LEN = 36; /* bits */
37const unsigned FLAC__STREAM_METADATA_STREAMINFO_MD5SUM_LEN = 128; /* bits */
Josh Coalson20135722001-02-23 21:05:53 +000038
Josh Coalson52c44e92001-02-23 23:11:34 +000039const unsigned FLAC__STREAM_METADATA_APPLICATION_ID_LEN = 32; /* bits */
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000040
Josh Coalsonc5d08e02001-04-10 19:13:50 +000041const unsigned FLAC__STREAM_METADATA_SEEKPOINT_SAMPLE_NUMBER_LEN = 64; /* bits */
42const unsigned FLAC__STREAM_METADATA_SEEKPOINT_STREAM_OFFSET_LEN = 64; /* bits */
Josh Coalson167658a2001-04-13 18:22:25 +000043const unsigned FLAC__STREAM_METADATA_SEEKPOINT_FRAME_SAMPLES_LEN = 16; /* bits */
Josh Coalsonc5d08e02001-04-10 19:13:50 +000044
Josh Coalson77e3f312001-06-23 03:03:24 +000045const FLAC__uint64 FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER = 0xffffffffffffffff;
Josh Coalson167658a2001-04-13 18:22:25 +000046
Josh Coalsoncc059bc2002-05-04 17:35:51 +000047const unsigned FLAC__STREAM_METADATA_VORBIS_COMMENT_ENTRY_LENGTH_LEN = 32; /* bits */
48const unsigned FLAC__STREAM_METADATA_VORBIS_COMMENT_NUM_COMMENTS_LEN = 32; /* bits */
49
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000050const unsigned FLAC__STREAM_METADATA_IS_LAST_LEN = 1; /* bits */
51const unsigned FLAC__STREAM_METADATA_TYPE_LEN = 7; /* bits */
52const unsigned FLAC__STREAM_METADATA_LENGTH_LEN = 24; /* bits */
53
Josh Coalson215af572001-03-27 01:15:58 +000054const unsigned FLAC__FRAME_HEADER_SYNC = 0x3ffe;
55const unsigned FLAC__FRAME_HEADER_SYNC_LEN = 14; /* bits */
56const unsigned FLAC__FRAME_HEADER_RESERVED_LEN = 2; /* bits */
57const unsigned FLAC__FRAME_HEADER_BLOCK_SIZE_LEN = 4; /* bits */
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000058const unsigned FLAC__FRAME_HEADER_SAMPLE_RATE_LEN = 4; /* bits */
59const unsigned FLAC__FRAME_HEADER_CHANNEL_ASSIGNMENT_LEN = 4; /* bits */
60const unsigned FLAC__FRAME_HEADER_BITS_PER_SAMPLE_LEN = 3; /* bits */
61const unsigned FLAC__FRAME_HEADER_ZERO_PAD_LEN = 1; /* bits */
Josh Coalson215af572001-03-27 01:15:58 +000062const unsigned FLAC__FRAME_HEADER_CRC_LEN = 8; /* bits */
63
64const unsigned FLAC__FRAME_FOOTER_CRC_LEN = 16; /* bits */
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000065
66const unsigned FLAC__ENTROPY_CODING_METHOD_TYPE_LEN = 2; /* bits */
67const unsigned FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ORDER_LEN = 4; /* bits */
68const unsigned FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN = 4; /* bits */
Josh Coalson2051dd42001-04-12 22:22:34 +000069const unsigned FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_RAW_LEN = 5; /* bits */
70
Josh Coalson6ff59c52001-04-13 18:43:53 +000071const 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 +000072
Josh Coalson57ba6f42002-06-07 05:27:37 +000073const char * const FLAC__EntropyCodingMethodTypeString[] = {
Josh Coalson75d0a0b2001-01-24 00:42:16 +000074 "PARTITIONED_RICE"
75};
76
Josh Coalson6dcea512001-01-23 23:07:36 +000077const unsigned FLAC__SUBFRAME_LPC_QLP_COEFF_PRECISION_LEN = 4; /* bits */
78const unsigned FLAC__SUBFRAME_LPC_QLP_SHIFT_LEN = 5; /* bits */
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000079
Josh Coalson215af572001-03-27 01:15:58 +000080const unsigned FLAC__SUBFRAME_ZERO_PAD_LEN = 1; /* bits */
81const unsigned FLAC__SUBFRAME_TYPE_LEN = 6; /* bits */
82const unsigned FLAC__SUBFRAME_WASTED_BITS_FLAG_LEN = 1; /* bits */
83
84const unsigned FLAC__SUBFRAME_TYPE_CONSTANT_BYTE_ALIGNED_MASK = 0x00;
85const unsigned FLAC__SUBFRAME_TYPE_VERBATIM_BYTE_ALIGNED_MASK = 0x02;
86const unsigned FLAC__SUBFRAME_TYPE_FIXED_BYTE_ALIGNED_MASK = 0x10;
87const unsigned FLAC__SUBFRAME_TYPE_LPC_BYTE_ALIGNED_MASK = 0x40;
Josh Coalson75d0a0b2001-01-24 00:42:16 +000088
Josh Coalson57ba6f42002-06-07 05:27:37 +000089const char * const FLAC__SubframeTypeString[] = {
Josh Coalson75d0a0b2001-01-24 00:42:16 +000090 "CONSTANT",
91 "VERBATIM",
92 "FIXED",
93 "LPC"
94};
95
Josh Coalson57ba6f42002-06-07 05:27:37 +000096const char * const FLAC__ChannelAssignmentString[] = {
Josh Coalson75d0a0b2001-01-24 00:42:16 +000097 "INDEPENDENT",
98 "LEFT_SIDE",
99 "RIGHT_SIDE",
100 "MID_SIDE"
101};
102
Josh Coalson57ba6f42002-06-07 05:27:37 +0000103const char * const FLAC__FrameNumberTypeString[] = {
Josh Coalson96084632001-07-16 18:07:12 +0000104 "FRAME_NUMBER_TYPE_FRAME_NUMBER",
105 "FRAME_NUMBER_TYPE_SAMPLE_NUMBER"
106};
107
Josh Coalsoncc682512002-06-08 04:53:42 +0000108const char * const FLAC__MetadataTypeString[] = {
Josh Coalson20135722001-02-23 21:05:53 +0000109 "STREAMINFO",
110 "PADDING",
Josh Coalson9b04be72001-06-14 18:57:53 +0000111 "APPLICATION",
Josh Coalson7e19b542002-04-25 05:53:09 +0000112 "SEEKTABLE",
113 "VORBIS_COMMENT"
Josh Coalson75d0a0b2001-01-24 00:42:16 +0000114};
Josh Coalsoncc059bc2002-05-04 17:35:51 +0000115
Josh Coalson0d36cbd2002-07-15 05:24:56 +0000116FLAC__bool FLAC__format_sample_rate_is_valid(unsigned sample_rate)
Josh Coalsoncc059bc2002-05-04 17:35:51 +0000117{
118 if(
119 sample_rate == 0 ||
120 sample_rate > FLAC__MAX_SAMPLE_RATE ||
121 (
122 sample_rate >= (1u << 16) &&
123 !(sample_rate % 1000 == 0 || sample_rate % 10 == 0)
124 )
125 ) {
126 return false;
127 }
128 else
129 return true;
130}
Josh Coalson0d36cbd2002-07-15 05:24:56 +0000131
132FLAC__bool FLAC__format_seektable_is_legal(const FLAC__StreamMetadata_SeekTable *seek_table)
133{
134 unsigned i;
135 FLAC__uint64 prev_sample_number = 0;
136 FLAC__bool got_prev = false;
137
138 FLAC__ASSERT(0 != seek_table);
139
140 for(i = 0; i < seek_table->num_points; i++) {
141 if(got_prev) {
Josh Coalson5a5de732002-08-01 06:37:11 +0000142 if(
143 seek_table->points[i].sample_number != FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER &&
144 seek_table->points[i].sample_number <= prev_sample_number
145 )
Josh Coalson0d36cbd2002-07-15 05:24:56 +0000146 return false;
147 }
148 prev_sample_number = seek_table->points[i].sample_number;
149 got_prev = true;
150 }
151
152 return true;
153}
Josh Coalson5a5de732002-08-01 06:37:11 +0000154
155/* used as the sort predicate for qsort() */
156static int seekpoint_compare_(const FLAC__StreamMetadata_SeekPoint *l, const FLAC__StreamMetadata_SeekPoint *r)
157{
158 /* we don't just 'return l->sample_number - r->sample_number' since the result (FLAC__int64) might overflow an 'int' */
159 if(l->sample_number == r->sample_number)
160 return 0;
161 else if(l->sample_number < r->sample_number)
162 return -1;
163 else
164 return 1;
165}
166
167unsigned FLAC__format_seektable_sort(FLAC__StreamMetadata_SeekTable *seek_table)
168{
169 unsigned i, j;
170 FLAC__bool first;
171
Josh Coalsona0ac09a2002-08-16 05:40:16 +0000172 FLAC__ASSERT(0 != seek_table);
173
Josh Coalson5a5de732002-08-01 06:37:11 +0000174 /* sort the seekpoints */
175 qsort(seek_table->points, seek_table->num_points, sizeof(FLAC__StreamMetadata_SeekPoint), (int (*)(const void *, const void *))seekpoint_compare_);
176
177 /* uniquify the seekpoints */
178 first = true;
179 for(i = j = 0; i < seek_table->num_points; i++) {
180 if(seek_table->points[i].sample_number != FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER) {
181 if(!first) {
182 if(seek_table->points[i].sample_number == seek_table->points[j-1].sample_number)
183 continue;
184 }
185 }
186 first = false;
187 seek_table->points[j++] = seek_table->points[i];
188 }
189
Josh Coalson08a62822002-08-01 07:33:36 +0000190 for(i = j; i < seek_table->num_points; i++) {
191 seek_table->points[i].sample_number = FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER;
192 seek_table->points[i].stream_offset = 0;
193 seek_table->points[i].frame_samples = 0;
Josh Coalson5a5de732002-08-01 06:37:11 +0000194 }
195
196 return j;
197}