cellar | J. Coalson |
Internet-Draft | |
Intended status: Standards Track | |
Expires: December 7, 2017 | Xiph.Org Foundation |
June 5, 2017 |
Free Lossless Audio Codec
draft-xiph-cellar-flac-00
This document defines FLAC, which stands for Free Lossless Audio Codec, a free, open source codec for lossless audio compression and decompression.
This Internet-Draft is submitted in full conformance with the provisions of BCP 78 and BCP 79.
Internet-Drafts are working documents of the Internet Engineering Task Force (IETF). Note that other groups may also distribute working documents as Internet-Drafts. The list of current Internet-Drafts is at http://datatracker.ietf.org/drafts/current/.
Internet-Drafts are draft documents valid for a maximum of six months and may be updated, replaced, or obsoleted by other documents at any time. It is inappropriate to use Internet-Drafts as reference material or to cite them other than as "work in progress."
This Internet-Draft will expire on December 7, 2017.
Copyright (c) 2017 IETF Trust and the persons identified as the document authors. All rights reserved.
This document is subject to BCP 78 and the IETF Trust's Legal Provisions Relating to IETF Documents (http://trustee.ietf.org/license-info) in effect on the date of publication of this document. Please review these documents carefully, as they describe your rights and restrictions with respect to this document. Code Components extracted from this document must include Simplified BSD License text as described in Section 4.e of the Trust Legal Provisions and are provided without warranty as described in the Simplified BSD License.
This is a detailed description of the FLAC format. There is also a companion document that describes FLAC-to-Ogg mapping.
For a user-oriented overview, see About the FLAC Format.
FLAC owes much to the many people who have advanced the audio compression field so freely. For instance: - A. J. Robinson for his work on Shorten; his paper is a good starting point on some of the basic methods used by FLAC. FLAC trivially extends and improves the fixed predictors, LPC coefficient quantization, and Exponential-Golomb coding used in Shorten. - S. W. Golomb and Robert F. Rice; their universal codes are used by FLAC's entropy coder. - N. Levinson and J. Durbin; the reference encoder uses an algorithm developed and refined by them for determining the LPC coefficients from the autocorrelation coefficients. - And of course, Claude Shannon
It is a known fact that no algorithm can losslessly compress all possible input, so most compressors restrict themselves to a useful domain and try to work as well as possible within that domain. FLAC's domain is audio data. Though it can losslessly code any input, only certain kinds of input will get smaller. FLAC exploits the fact that audio data typically has a high degree of sample-to-sample correlation.
Within the audio domain, there are many possible subdomains. For example: low bitrate speech, high-bitrate multi-channel music, etc. FLAC itself does not target a specific subdomain but many of the default parameters of the reference encoder are tuned to CD-quality music data (i.e. 44.1 kHz, 2 channel, 16 bits per sample). The effect of the encoding parameters on different kinds of audio data will be examined later.
Similar to many audio coders, a FLAC encoder has the following stages:
In addition, FLAC specifies a metadata system, which allows arbitrary information about the stream to be included at the beginning of the stream.
Many terms like "block" and "frame" are used to mean different things in different encoding schemes. For example, a frame in MP3 corresponds to many samples across several channels, whereas an S/PDIF frame represents just one sample for each channel. The definitions we use for FLAC follow. Note that when we talk about blocks and subblocks we are referring to the raw unencoded audio data that is the input to the encoder, and when we talk about frames and subframes, we are referring to the FLAC-encoded data.
The size used for blocking the audio data has a direct effect on the compression ratio. If the block size is too small, the resulting large number of frames mean that excess bits will be wasted on frame headers. If the block size is too large, the characteristics of the signal may vary so much that the encoder will be unable to find a good predictor. In order to simplify encoder/decoder design, FLAC imposes a minimum block size of 16 samples, and a maximum block size of 65535 samples. This range covers the optimal size for all of the audio data FLAC supports.
Currently the reference encoder uses a fixed block size, optimized on the sample rate of the input. Future versions may vary the block size depending on the characteristics of the signal.
Blocked data is passed to the predictor stage one subblock (channel) at a time. Each subblock is independently coded into a subframe, and the subframes are concatenated into a frame. Because each channel is coded separately, it means that one channel of a stereo frame may be encoded as a constant subframe, and the other an LPC subframe.
In stereo streams, many times there is an exploitable amount of correlation between the left and right channels. FLAC allows the frames of stereo streams to have different channel assignments, and an encoder may choose to use the best representation on a frame-by-frame basis.
Surprisingly, the left-side and right-side forms can be the most efficient in many frames, even though the raw number of bits per sample needed for the original signal is slightly more than that needed for independent or mid-side coding.
FLAC uses four methods for modeling the input signal:
FLAC uses Exponential-Golomb (a variant of Rice) coding as it's residual encoder. You can learn more about exp-golomb coding on Wikipedia
FLAC currently defines two similar methods for the coding of the error signal from the prediction stage. The error signal is coded using Exponential-Golomb codes in one of two ways:
The FLAC format has reserved space for other coding methods. Some possibilities for volunteers would be to explore better context-modeling of the exp-golomb parameter, or Huffman coding. See LOCO-I and pucrunch for descriptions of several universal codes.
This section specifies the FLAC bitstream format. FLAC has no format version information, but it does contain reserved space in several places. Future versions of the format may use this reserved space safely without breaking the format of older streams. Older decoders may choose to abort decoding or skip data encoded with newer methods. Apart from reserved patterns, in places the format specifies invalid patterns, meaning that the patterns may never appear in any valid bitstream, in any prior, present, or future versions of the format. These invalid patterns are usually used to make the synchronization mechanism more robust.
All numbers used in a FLAC bitstream are integers; there are no floating-point representations. All numbers are big-endian coded. All numbers are unsigned unless otherwise specified.
Before the formal description of the stream, an overview might be helpful.
The following tables constitute a formal description of the FLAC format. Values expressed as u(n) represent unsigned big-endian integer using n bits. n may be expressed as an equation using * (multiplication), / (division), + (addition), or - (subtraction). An inclusive range of the number of bits expressed may be represented with an ellipsis, such as u(m...n). The name of a value followed by an asterisk * indicates zero or more occurrences of the value. The name of a value followed by a plus sign + indicates one or more occurrences of the value.
Data | Description |
---|---|
u(32) | "fLaC", the FLAC stream marker in ASCII, meaning byte 0 of the stream is 0x66, followed by 0x4C 0x61 0x43 |
METADATA_BLOCK_STREAMINFO | This is the mandatory STREAMINFO metadata block that has the basic properties of the stream. |
METADATA_BLOCK* | Zero or more metadata blocks |
FRAME+ | One or more audio frames |
Data | Description |
---|---|
METADATA_BLOCK_HEADER | A block header that specifies the type and size of the metadata block data. |
METADATA_BLOCK_DATA |
Data | Description |
---|---|
u(1) | Last-metadata-block flag: '1' if this block is the last metadata block before the audio blocks, '0' otherwise. |
u(7) | BLOCK_TYPE |
u(24) | Length (in bytes) of metadata to follow (does not include the size of the METADATA_BLOCK_HEADER) |
Value | Description |
---|---|
0 | STREAMINFO |
1 | PADDING |
2 | APPLICATION |
3 | SEEKTABLE |
4 | VORBIS_COMMENT |
5 | CUESHEET |
6 | PICTURE |
7 - 126 | reserved |
127 | invalid, to avoid confusion with a frame sync code |
Data | Description |
---|---|
METADATA_BLOCK_STREAMINFO || METADATA_BLOCK_PADDING || METADATA_BLOCK_APPLICATION || METADATA_BLOCK_SEEKTABLE || METADATA_BLOCK_VORBIS_COMMENT || METADATA_BLOCK_CUESHEET || METADATA_BLOCK_PICTURE | The block data must match the block type in the block header. |
Data | Description |
---|---|
u(16) | The minimum block size (in samples) used in the stream. |
u(16) | The maximum block size (in samples) used in the stream. (Minimum blocksize == maximum blocksize) implies a fixed-blocksize stream. |
u(24) | The minimum frame size (in bytes) used in the stream. May be 0 to imply the value is not known. |
u(24) | The maximum frame size (in bytes) used in the stream. May be 0 to imply the value is not known. |
u(20) | Sample rate in Hz. Though 20 bits are available, the maximum sample rate is limited by the structure of frame headers to 655350 Hz. Also, a value of 0 is invalid. |
u(3) | (number of channels)-1. FLAC supports from 1 to 8 channels |
u(5) | (bits per sample)-1. FLAC supports from 4 to 32 bits per sample. Currently the reference encoder and decoders only support up to 24 bits per sample. |
u(36) | Total samples in stream. 'Samples' means inter-channel sample, i.e. one second of 44.1 kHz audio will have 44100 samples regardless of the number of channels. A value of zero here means the number of total samples is unknown. |
u(128) | MD5 signature of the unencoded audio data. This allows the decoder to determine if an error exists in the audio data even when the error does not result in an invalid bitstream. |
NOTE
Data | Description |
---|---|
u(n) | n '0' bits (n must be a multiple of 8) |
Data | Description |
---|---|
u(32) | Registered application ID. (Visit the registration page to register an ID with FLAC.) |
u(n) | Application data (n must be a multiple of 8) |
Data | Description |
---|---|
SEEKPOINT+ | One or more seek points. |
NOTE - The number of seek points is implied by the metadata header 'length' field, i.e. equal to length / 18.
Data | Description |
---|---|
u(64) | Sample number of first sample in the target frame, or 0xFFFFFFFFFFFFFFFF for a placeholder point. |
u(64) | Offset (in bytes) from the first byte of the first frame header to the first byte of the target frame's header. |
u(16) | Number of samples in the target frame. |
NOTES
Data | Description |
---|---|
u(n) | Also known as FLAC tags, the contents of a vorbis comment packet as specified here (without the framing bit). Note that the vorbis comment spec allows for on the order of 2 ^ 64 bytes of data where as the FLAC metadata block is limited to 2 ^ 24 bytes. Given the stated purpose of vorbis comments, i.e. human-readable textual information, this limit is unlikely to be restrictive. Also note that the 32-bit field lengths are little-endian coded according to the vorbis spec, as opposed to the usual big-endian coding of fixed-length integers in the rest of FLAC. |
Data | Description |
---|---|
u(128*8) | Media catalog number, in ASCII printable characters 0x20-0x7e. In general, the media catalog number may be 0 to 128 bytes long; any unused characters should be right-padded with NUL characters. For CD-DA, this is a thirteen digit number, followed by 115 NUL bytes. |
u(64) | The number of lead-in samples. This field has meaning only for CD-DA cuesheets; for other uses it should be 0. For CD-DA, the lead-in is the TRACK 00 area where the table of contents is stored; more precisely, it is the number of samples from the first sample of the media to the first sample of the first index point of the first track. According to the Red Book, the lead-in must be silence and CD grabbing software does not usually store it; additionally, the lead-in must be at least two seconds but may be longer. For these reasons the lead-in length is stored here so that the absolute position of the first track can be computed. Note that the lead-in stored here is the number of samples up to the first index point of the first track, not necessarily to INDEX 01 of the first track; even the first track may have INDEX 00 data. |
u(1) | 1 if the CUESHEET corresponds to a Compact Disc, else 0. |
u(7+258*8) | Reserved. All bits must be set to zero. |
u(8) | The number of tracks. Must be at least 1 (because of the requisite lead-out track). For CD-DA, this number must be no more than 100 (99 regular tracks and one lead-out track). |
CUESHEET_TRACK+ | One or more tracks. A CUESHEET block is required to have a lead-out track; it is always the last track in the CUESHEET. For CD-DA, the lead-out track number must be 170 as specified by the Red Book, otherwise is must be 255. |
Data | Description |
---|---|
u(64) | Track offset in samples, relative to the beginning of the FLAC audio stream. It is the offset to the first index point of the track. (Note how this differs from CD-DA, where the track's offset in the TOC is that of the track's INDEX 01 even if there is an INDEX 00.) For CD-DA, the offset must be evenly divisible by 588 samples (588 samples = 44100 samples/sec * 1/75th of a sec). |
u(8) | Track number. A track number of 0 is not allowed to avoid conflicting with the CD-DA spec, which reserves this for the lead-in. For CD-DA the number must be 1-99, or 170 for the lead-out; for non-CD-DA, the track number must for 255 for the lead-out. It is not required but encouraged to start with track 1 and increase sequentially. Track numbers must be unique within a CUESHEET. |
u(12\*8) | Track ISRC. This is a 12-digit alphanumeric code; see here and here. A value of 12 ASCII NUL characters may be used to denote absence of an ISRC. |
u(1) | The track type: 0 for audio, 1 for non-audio. This corresponds to the CD-DA Q-channel control bit 3. |
u(1) | The pre-emphasis flag: 0 for no pre-emphasis, 1 for pre-emphasis. This corresponds to the CD-DA Q-channel control bit 5; see here. |
u(6+13*8) | Reserved. All bits must be set to zero. |
u(8) | The number of track index points. There must be at least one index in every track in a CUESHEET except for the lead-out track, which must have zero. For CD-DA, this number may be no more than 100. |
CUESHEET_TRACK_INDEX+ | For all tracks except the lead-out track, one or more track index points. |
Data | Description |
---|---|
u(64) | Offset in samples, relative to the track offset, of the index point. For CD-DA, the offset must be evenly divisible by 588 samples (588 samples = 44100 samples/sec * 1/75 sec). Note that the offset is from the beginning of the track, not the beginning of the audio data. |
u(8) | The index point number. For CD-DA, an index number of 0 corresponds to the track pre-gap. The first index in a track must have a number of 0 or 1, and subsequently, index numbers must increase by 1. Index numbers must be unique within a track. |
u(3*8) | Reserved. All bits must be set to zero. |
Data | Description |
---|---|
u(32) | The PICTURE_TYPE according to the ID3v2 APIC frame: |
u(32) | The length of the MIME type string in bytes. |
u(n*8) | The MIME type string, in printable ASCII characters 0x20-0x7e. The MIME type may also be --> to signify that the data part is a URL of the picture instead of the picture data itself. |
u(32) | The length of the description string in bytes. |
u(n*8) | The description of the picture, in UTF-8. |
u(32) | The width of the picture in pixels. |
u(32) | The height of the picture in pixels. |
u(32) | The color depth of the picture in bits-per-pixel. |
u(32) | For indexed-color pictures (e.g. GIF), the number of colors used, or 0 for non-indexed pictures. |
u(32) | The length of the picture data in bytes. |
u(n*8) | The binary picture data. |
Value | Description |
---|---|
0 | Other |
1 | 32x32 pixels 'file icon' (PNG only) |
2 | Other file icon |
3 | Cover (front) |
4 | Cover (back) |
5 | Leaflet page |
6 | Media (e.g. label side of CD) |
7 | Lead artist/lead performer/soloist |
8 | Artist/performer |
9 | Conductor |
10 | Band/Orchestra |
11 | Composer |
12 | Lyricist/text writer |
13 | Recording Location |
14 | During recording |
15 | During performance |
16 | Movie/video screen capture |
17 | A bright colored fish |
18 | Illustration |
19 | Band/artist logotype |
20 | Publisher/Studio logotype |
Other values are reserved and should not be used. There may only be one each of picture type 1 and 2 in a file.
Data | Description |
---|---|
FRAME_HEADER | |
SUBFRAME+ | One SUBFRAME per channel. |
u(?) | Zero-padding to byte alignment. |
FRAME_FOOTER |
Data | Description |
---|---|
u(14) | Sync code '0b11111111111110' |
u(1) | FRAME HEADER RESERVED |
u(1) | BLOCKING STRATEGY |
u(4) | INTERCHANNEL SAMPLE BLOCK SIZE |
u(4) | SAMPLE RATE |
u(4) | CHANNEL ASSIGNMENT |
u(3) | SAMPLE SIZE |
u(1) | FRAME HEADER RESERVED2 |
u(?) | CODED NUMBER |
u(?) | BLOCK SIZE INT |
u(?) | SAMPLE RATE INT |
u(8) | FRAME CRC |
Value | Description |
---|---|
0 | mandatory value |
1 | reserved for future use |
FRAME HEADER RESERVED must remain reserved for 0 in order for a FLAC frame's initial 15 bits to be distinguishable from the start of an MPEG audio frame (see also).
Value | Description |
---|---|
0 | fixed-blocksize stream; frame header encodes the frame number |
1 | variable-blocksize stream; frame header encodes the sample number |
The BLOCKING STRATEGY bit must be the same throughout the entire stream.
The BLOCKING STRATEGY bit determines how to calculate the sample number of the first sample in the frame. If the bit is 0 (fixed-blocksize), the frame header encodes the frame number as above, and the frame's starting sample number will be the frame number times the blocksize. If it is 1 (variable-blocksize), the frame header encodes the frame's starting sample number itself. (In the case of a fixed-blocksize stream, only the last block may be shorter than the stream blocksize; its starting sample number will be calculated as the frame number times the previous frame's blocksize, or zero if it is the first frame).
Value | Description |
---|---|
0b0000 | reserved |
0b0001 | 192 samples |
0b0010 - 0b0101 | 576 * (2^(n-2)) samples, i.e. 576/1152/2304/4608 |
0b0110 | get 8 bit (blocksize-1) from end of header |
0b0111 | get 16 bit (blocksize-1) from end of header |
0b1000 - 0b1111 | 256 * (2^(n-8)) samples, i.e. 256/512/1024/2048/4096/8192/16384/32768 |
Value | Description |
---|---|
0b0000 | get from STREAMINFO metadata block |
0b0001 | 88.2 kHz |
0b0010 | 176.4 kHz |
0b0011 | 192 kHz |
0b0100 | 8 kHz |
0b0101 | 16 kHz |
0b0110 | 22.05 kHz |
0b0111 | 24 kHz |
0b1000 | 32 kHz |
0b1001 | 44.1 kHz |
0b1010 | 48 kHz |
0b1011 | 96 kHz |
0b1100 | get 8 bit sample rate (in kHz) from end of header |
0b1101 | get 16 bit sample rate (in Hz) from end of header |
0b1110 | get 16 bit sample rate (in tens of Hz) from end of header |
0b1111 | invalid, to prevent sync-fooling string of 1s |
For values 0000-0111, the value represents the (number of independent channels)-1. Where defined, the channel order follows SMPTE/ITU-R recommendations.
Value | Description |
---|---|
0b0000 | 1 channel: mono |
0b0001 | 2 channels: left, right |
0b0010 | 3 channels: left, right, center |
0b0011 | 4 channels: front left, front right, back left, back right |
0b0100 | 5 channels: front left, front right, front center, back/surround left, back/surround right |
0b0101 | 6 channels: front left, front right, front center, LFE, back/surround left, back/surround right |
0b0110 | 7 channels: front left, front right, front center, LFE, back center, side left, side right |
0b0111 | 8 channels: front left, front right, front center, LFE, back left, back right, side left, side right |
0b1000 | left/side stereo: channel 0 is the left channel, channel 1 is the side(difference) channel |
0b1001 | right/side stereo: channel 0 is the side(difference) channel, channel 1 is the right channel |
0b1010 | mid/side stereo: channel 0 is the mid(average) channel, channel 1 is the side(difference) channel |
0b1011 - 0b1111 | reserved |
Value | Description |
---|---|
0b000 | get from STREAMINFO metadata block |
0b001 | 8 bits per sample |
0b010 | 12 bits per sample |
0b011 | reserved |
0b100 | 16 bits per sample |
0b101 | 20 bits per sample |
0b110 | 24 bits per sample |
0b111 | reserved |
Value | Description |
---|---|
0 | mandatory value |
1 | reserved for future use |
The "UTF-8" coding used for the sample/frame number is the same variable length code used to store compressed UCS-2, extended to handle larger input.
if(variable blocksize) `u(8...56)`: "UTF-8" coded sample number (decoded number is 36 bits) else `u(8...48)`:"UTF-8" coded frame number (decoded number is 31 bits)
if(`INTERCHANNEL SAMPLE BLOCK SIZE` == 0b0110) 8 bit (blocksize-1) else if(`INTERCHANNEL SAMPLE BLOCK SIZE` == 0b0111) 16 bit (blocksize-1)
if(`SAMPLE RATE` == 0b1100) 8 bit sample rate (in kHz) else if(`SAMPLE RATE` == 0b1101) 16 bit sample rate (in Hz) else if(`SAMPLE RATE` == 0b1110) 16 bit sample rate in tens of Hz)
CRC-8 (polynomial = x^8 + x^2 + x^1 + x^0, initialized with 0) of everything before the CRC, including the sync code
Data | Description |
---|---|
u(16) | CRC-16 (polynomial = x^16 + x^15 + x^2 + x^0, initialized with 0) of everything before the CRC, back to and including the frame header sync code |
Data | Description |
---|---|
SUBFRAME_HEADER | |
SUBFRAME_CONSTANT || SUBFRAME_FIXED || SUBFRAME_LPC || SUBFRAME_VERBATIM | The SUBFRAME_HEADER specifies which one. |
Data | Description |
---|---|
u(1) | Zero bit padding, to prevent sync-fooling string of 1s |
u(6) | SUBFRAME TYPE (see Section 10.22.1) |
u(1+k) | WASTED BITS PER SAMPLE FLAG (see Section 10.22.2) |
Value | Description |
---|---|
0b000000 | SUBFRAME_CONSTANT |
0b000001 | SUBFRAME_VERBATIM |
0b00001x | reserved |
0b0001xx | reserved |
0b001xxx | if(xxx <= 4) SUBFRAME_FIXED, xxx=order ; else reserved |
0b01xxxx | reserved |
0b1xxxxx | SUBFRAME_LPC, xxxxx=order-1 |
Value | Description |
---|---|
0 | no wasted bits-per-sample in source subblock, k=0 |
1 | k wasted bits-per-sample in source subblock, k-1 follows, unary coded; e.g. k=3 => 001 follows, k=7 => 0000001 follows. |
Data | Description |
---|---|
u(n) | Unencoded constant value of the subblock, n = frame's bits-per-sample. |
Data | Description |
---|---|
u(n) | Unencoded warm-up samples (n = frame's bits-per-sample * predictor order). |
RESIDUAL | Encoded residual |
Data | Description |
---|---|
u(n) | Unencoded warm-up samples (n = frame's bits-per-sample * lpc order). |
u(4) | (Quantized linear predictor coefficients' precision in bits)-1 (0b1111 = invalid). |
u(5) | Quantized linear predictor coefficient shift needed in bits (NOTE: this number is signed two's-complement). |
u(n) | Unencoded predictor coefficients (n = qlp coeff precision * lpc order) (NOTE: the coefficients are signed two's-complement). |
RESIDUAL | Encoded residual |
Data | Description |
---|---|
u(n\*i) | Unencoded subblock; n = frame's bits-per-sample, i = frame's blocksize. |
Data | Description |
---|---|
u(2) | RESIDUAL_CODING_METHOD |
RESIDUAL_CODING_METHOD_PARTITIONED_EXP_GOLOMB || RESIDUAL_CODING_METHOD_PARTITIONED_EXP_GOLOMB2 |
Value | Description |
---|---|
0b00 | partitioned Exp-Golomb coding with 4-bit Exp-Golomb parameter; RESIDUAL_CODING_METHOD_PARTITIONED_EXP_GOLOMB follows |
0b01 | partitioned Exp-Golomb coding with 5-bit Exp-Golomb parameter; RESIDUAL_CODING_METHOD_PARTITIONED_EXP_GOLOMB2 follows |
0b10 - 0b11 | reserved |
Data | Description |
---|---|
u(4) | Partition order. |
EXP_GOLOMB_PARTITION+ | There will be 2^order partitions. |
Data | Description |
---|---|
u(4(+5)) | EXP-GOLOMB PARTITION ENCODING PARAMETER (see Section 10.27.2.2) |
u(?) | ENCODED RESIDUAL (see Section 10.27.4) |
Value | Description |
---|---|
0b0000 - 0b1110 | Exp-golomb parameter. |
0b1111 | Escape code, meaning the partition is in unencoded binary form using n bits per sample; n follows as a 5-bit number. |
Data | Description |
---|---|
u(4) | Partition order. |
EXP-GOLOMB2_PARTITION+ | There will be 2^order partitions. |
Data | Description |
---|---|
u(5(+5)) | EXP-GOLOMB2 PARTITION ENCODING PARAMETER (see Section 10.27.3.2) |
u(?) | ENCODED RESIDUAL (see Section 10.27.4) |
Value | Description |
---|---|
0b00000 - 0b11110 | Exp-golomb parameter. |
0b11111 | Escape code, meaning the partition is in unencoded binary form using n bits per sample; n follows as a 5-bit number. |
The number of samples (n) in the partition is determined as follows:
Copyright (c) 2000-2009 Josh Coalson, 2011-2014 Xiph.Org Foundation