blob: 216756373778d9a320f626dcc99173014548bcf6 [file] [log] [blame]
Josh Coalson26560dd2001-02-08 00:38:41 +00001/* libFLAC - Free Lossless Audio Codec library
Josh Coalson70118f62001-01-16 20:17:53 +00002 * Copyright (C) 2000,2001 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>
21#include "FLAC/format.h"
22
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000023const byte FLAC__STREAM_SYNC_STRING[4] = { 'f','L','a','C' };
24const unsigned FLAC__STREAM_SYNC = 0x664C6143;
25const unsigned FLAC__STREAM_SYNC_LEN = 32; /* bits */;
26
Josh Coalson20135722001-02-23 21:05:53 +000027const unsigned FLAC__STREAM_METADATA_STREAMINFO_MIN_BLOCK_SIZE_LEN = 16; /* bits */
28const unsigned FLAC__STREAM_METADATA_STREAMINFO_MAX_BLOCK_SIZE_LEN = 16; /* bits */
29const unsigned FLAC__STREAM_METADATA_STREAMINFO_MIN_FRAME_SIZE_LEN = 24; /* bits */
30const unsigned FLAC__STREAM_METADATA_STREAMINFO_MAX_FRAME_SIZE_LEN = 24; /* bits */
31const unsigned FLAC__STREAM_METADATA_STREAMINFO_SAMPLE_RATE_LEN = 20; /* bits */
32const unsigned FLAC__STREAM_METADATA_STREAMINFO_CHANNELS_LEN = 3; /* bits */
33const unsigned FLAC__STREAM_METADATA_STREAMINFO_BITS_PER_SAMPLE_LEN = 5; /* bits */
34const unsigned FLAC__STREAM_METADATA_STREAMINFO_TOTAL_SAMPLES_LEN = 36; /* bits */
35const unsigned FLAC__STREAM_METADATA_STREAMINFO_MD5SUM_LEN = 128; /* bits */
36const unsigned FLAC__STREAM_METADATA_STREAMINFO_LENGTH = 34; /* bytes */
37
Josh Coalson52c44e92001-02-23 23:11:34 +000038const unsigned FLAC__STREAM_METADATA_APPLICATION_ID_LEN = 32; /* bits */
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000039
Josh Coalsonc5d08e02001-04-10 19:13:50 +000040const unsigned FLAC__STREAM_METADATA_SEEKPOINT_SAMPLE_NUMBER_LEN = 64; /* bits */
41const unsigned FLAC__STREAM_METADATA_SEEKPOINT_STREAM_OFFSET_LEN = 64; /* bits */
Josh Coalson167658a2001-04-13 18:22:25 +000042const unsigned FLAC__STREAM_METADATA_SEEKPOINT_FRAME_SAMPLES_LEN = 16; /* bits */
Josh Coalsonc5d08e02001-04-10 19:13:50 +000043const unsigned FLAC__STREAM_METADATA_SEEKPOINT_LEN = 18; /* bytes */
44
Josh Coalson167658a2001-04-13 18:22:25 +000045const uint64 FLAC__STREAM_METADATA_SEEKPOINT_PLACEHOLDER = 0xffffffffffffffff;
46
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000047const unsigned FLAC__STREAM_METADATA_IS_LAST_LEN = 1; /* bits */
48const unsigned FLAC__STREAM_METADATA_TYPE_LEN = 7; /* bits */
49const unsigned FLAC__STREAM_METADATA_LENGTH_LEN = 24; /* bits */
50
Josh Coalson215af572001-03-27 01:15:58 +000051const unsigned FLAC__FRAME_HEADER_SYNC = 0x3ffe;
52const unsigned FLAC__FRAME_HEADER_SYNC_LEN = 14; /* bits */
53const unsigned FLAC__FRAME_HEADER_RESERVED_LEN = 2; /* bits */
54const unsigned FLAC__FRAME_HEADER_BLOCK_SIZE_LEN = 4; /* bits */
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000055const unsigned FLAC__FRAME_HEADER_SAMPLE_RATE_LEN = 4; /* bits */
56const unsigned FLAC__FRAME_HEADER_CHANNEL_ASSIGNMENT_LEN = 4; /* bits */
57const unsigned FLAC__FRAME_HEADER_BITS_PER_SAMPLE_LEN = 3; /* bits */
58const unsigned FLAC__FRAME_HEADER_ZERO_PAD_LEN = 1; /* bits */
Josh Coalson215af572001-03-27 01:15:58 +000059const unsigned FLAC__FRAME_HEADER_CRC_LEN = 8; /* bits */
60
61const unsigned FLAC__FRAME_FOOTER_CRC_LEN = 16; /* bits */
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000062
63const unsigned FLAC__ENTROPY_CODING_METHOD_TYPE_LEN = 2; /* bits */
64const unsigned FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ORDER_LEN = 4; /* bits */
65const unsigned FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN = 4; /* bits */
Josh Coalson2051dd42001-04-12 22:22:34 +000066const unsigned FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_RAW_LEN = 5; /* bits */
67
Josh Coalson6ff59c52001-04-13 18:43:53 +000068const 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 +000069
Josh Coalson75d0a0b2001-01-24 00:42:16 +000070const char *FLAC__EntropyCodingMethodTypeString[] = {
71 "PARTITIONED_RICE"
72};
73
Josh Coalson6dcea512001-01-23 23:07:36 +000074const unsigned FLAC__SUBFRAME_LPC_QLP_COEFF_PRECISION_LEN = 4; /* bits */
75const unsigned FLAC__SUBFRAME_LPC_QLP_SHIFT_LEN = 5; /* bits */
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000076
Josh Coalson215af572001-03-27 01:15:58 +000077const unsigned FLAC__SUBFRAME_ZERO_PAD_LEN = 1; /* bits */
78const unsigned FLAC__SUBFRAME_TYPE_LEN = 6; /* bits */
79const unsigned FLAC__SUBFRAME_WASTED_BITS_FLAG_LEN = 1; /* bits */
80
81const unsigned FLAC__SUBFRAME_TYPE_CONSTANT_BYTE_ALIGNED_MASK = 0x00;
82const unsigned FLAC__SUBFRAME_TYPE_VERBATIM_BYTE_ALIGNED_MASK = 0x02;
83const unsigned FLAC__SUBFRAME_TYPE_FIXED_BYTE_ALIGNED_MASK = 0x10;
84const unsigned FLAC__SUBFRAME_TYPE_LPC_BYTE_ALIGNED_MASK = 0x40;
Josh Coalson75d0a0b2001-01-24 00:42:16 +000085
86const char *FLAC__SubframeTypeString[] = {
87 "CONSTANT",
88 "VERBATIM",
89 "FIXED",
90 "LPC"
91};
92
93const char *FLAC__ChannelAssignmentString[] = {
94 "INDEPENDENT",
95 "LEFT_SIDE",
96 "RIGHT_SIDE",
97 "MID_SIDE"
98};
99
100const char *FLAC__MetaDataTypeString[] = {
Josh Coalson20135722001-02-23 21:05:53 +0000101 "STREAMINFO",
102 "PADDING",
Josh Coalson9b04be72001-06-14 18:57:53 +0000103 "APPLICATION",
104 "SEEKTABLE"
Josh Coalson75d0a0b2001-01-24 00:42:16 +0000105};