blob: db1d8c29eb851f390c9cdc19886ad81a2a976306 [file] [log] [blame]
Josh Coalsonbb7f6b92000-12-10 04:09:52 +00001/* libFLAC - Free Lossless Audio Coder 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
20#include <assert.h>
21#include <stdio.h>
22#include "FLAC/format.h"
23
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000024const byte FLAC__STREAM_SYNC_STRING[4] = { 'f','L','a','C' };
25const unsigned FLAC__STREAM_SYNC = 0x664C6143;
26const unsigned FLAC__STREAM_SYNC_LEN = 32; /* bits */;
27
28const unsigned FLAC__STREAM_METADATA_ENCODING_MIN_BLOCK_SIZE_LEN = 16; /* bits */
29const unsigned FLAC__STREAM_METADATA_ENCODING_MAX_BLOCK_SIZE_LEN = 16; /* bits */
30const unsigned FLAC__STREAM_METADATA_ENCODING_MIN_FRAME_SIZE_LEN = 24; /* bits */
31const unsigned FLAC__STREAM_METADATA_ENCODING_MAX_FRAME_SIZE_LEN = 24; /* bits */
32const unsigned FLAC__STREAM_METADATA_ENCODING_SAMPLE_RATE_LEN = 20; /* bits */
33const unsigned FLAC__STREAM_METADATA_ENCODING_CHANNELS_LEN = 3; /* bits */
34const unsigned FLAC__STREAM_METADATA_ENCODING_BITS_PER_SAMPLE_LEN = 5; /* bits */
35const unsigned FLAC__STREAM_METADATA_ENCODING_TOTAL_SAMPLES_LEN = 36; /* bits */
Josh Coalsonfa37f1c2001-01-12 23:55:11 +000036const unsigned FLAC__STREAM_METADATA_ENCODING_MD5SUM_LEN = 128; /* bits */
37const unsigned FLAC__STREAM_METADATA_ENCODING_LENGTH = 34; /* bytes */
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000038
39const unsigned FLAC__STREAM_METADATA_IS_LAST_LEN = 1; /* bits */
40const unsigned FLAC__STREAM_METADATA_TYPE_LEN = 7; /* bits */
41const unsigned FLAC__STREAM_METADATA_LENGTH_LEN = 24; /* bits */
42
43const unsigned FLAC__FRAME_HEADER_SYNC = 0x1fe;
44const unsigned FLAC__FRAME_HEADER_SYNC_LEN = 9; /* bits */
45const unsigned FLAC__FRAME_HEADER_BLOCK_SIZE_LEN = 3; /* bits */
46const unsigned FLAC__FRAME_HEADER_SAMPLE_RATE_LEN = 4; /* bits */
47const unsigned FLAC__FRAME_HEADER_CHANNEL_ASSIGNMENT_LEN = 4; /* bits */
48const unsigned FLAC__FRAME_HEADER_BITS_PER_SAMPLE_LEN = 3; /* bits */
49const unsigned FLAC__FRAME_HEADER_ZERO_PAD_LEN = 1; /* bits */
50const unsigned FLAC__FRAME_HEADER_CRC8_LEN = 8; /* bits */
51
52const unsigned FLAC__ENTROPY_CODING_METHOD_TYPE_LEN = 2; /* bits */
53const unsigned FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_ORDER_LEN = 4; /* bits */
54const unsigned FLAC__ENTROPY_CODING_METHOD_PARTITIONED_RICE_PARAMETER_LEN = 4; /* bits */
55
Josh Coalson75d0a0b2001-01-24 00:42:16 +000056const char *FLAC__EntropyCodingMethodTypeString[] = {
57 "PARTITIONED_RICE"
58};
59
Josh Coalson6dcea512001-01-23 23:07:36 +000060const unsigned FLAC__SUBFRAME_LPC_QLP_COEFF_PRECISION_LEN = 4; /* bits */
61const unsigned FLAC__SUBFRAME_LPC_QLP_SHIFT_LEN = 5; /* bits */
Josh Coalsonbb7f6b92000-12-10 04:09:52 +000062
Josh Coalson6dcea512001-01-23 23:07:36 +000063const unsigned FLAC__SUBFRAME_TYPE_CONSTANT_BITS = 0x00;
64const unsigned FLAC__SUBFRAME_TYPE_VERBATIM_BITS = 0x02;
65const unsigned FLAC__SUBFRAME_TYPE_FIXED_BITS = 0x10;
66const unsigned FLAC__SUBFRAME_TYPE_LPC_BITS = 0x40;
67const unsigned FLAC__SUBFRAME_TYPE_LEN = 8; /* bits */
Josh Coalson75d0a0b2001-01-24 00:42:16 +000068
69const char *FLAC__SubframeTypeString[] = {
70 "CONSTANT",
71 "VERBATIM",
72 "FIXED",
73 "LPC"
74};
75
76const char *FLAC__ChannelAssignmentString[] = {
77 "INDEPENDENT",
78 "LEFT_SIDE",
79 "RIGHT_SIDE",
80 "MID_SIDE"
81};
82
83const char *FLAC__MetaDataTypeString[] = {
84 "ENCODING"
85};