| FFmpeg
    | 
FLAC (Free Lossless Audio Codec) decoder/demuxer common functions. More...
Go to the source code of this file.
| Data Structures | |
| struct | FLACStreaminfo | 
| struct | FLACFrameInfo | 
| Macros | |
| #define | FLAC_STREAMINFO_SIZE 34 | 
| #define | FLAC_MAX_CHANNELS 8 | 
| #define | FLAC_MIN_BLOCKSIZE 16 | 
| #define | FLAC_MAX_BLOCKSIZE 65535 | 
| #define | FLAC_MIN_FRAME_SIZE 11 | 
| #define | FLACCOMMONINFO | 
| bits-per-sample  More... | |
| #define | FLACSTREAMINFO | 
| Data needed from the Streaminfo header for use by the raw FLAC demuxer and/or the FLAC decoder.  More... | |
| Enumerations | |
| enum | { FLAC_CHMODE_INDEPENDENT = 0, FLAC_CHMODE_LEFT_SIDE = 1, FLAC_CHMODE_RIGHT_SIDE = 2, FLAC_CHMODE_MID_SIDE = 3 } | 
| enum | { FLAC_METADATA_TYPE_STREAMINFO = 0, FLAC_METADATA_TYPE_PADDING, FLAC_METADATA_TYPE_APPLICATION, FLAC_METADATA_TYPE_SEEKTABLE, FLAC_METADATA_TYPE_VORBIS_COMMENT, FLAC_METADATA_TYPE_CUESHEET, FLAC_METADATA_TYPE_PICTURE, FLAC_METADATA_TYPE_INVALID = 127 } | 
| enum | FLACExtradataFormat { FLAC_EXTRADATA_FORMAT_STREAMINFO = 0, FLAC_EXTRADATA_FORMAT_FULL_HEADER = 1 } | 
| Functions | |
| void | ff_flac_parse_streaminfo (AVCodecContext *avctx, struct FLACStreaminfo *s, const uint8_t *buffer) | 
| Parse the Streaminfo metadata block.  More... | |
| int | ff_flac_is_extradata_valid (AVCodecContext *avctx, enum FLACExtradataFormat *format, uint8_t **streaminfo_start) | 
| Validate the FLAC extradata.  More... | |
| int | ff_flac_get_max_frame_size (int blocksize, int ch, int bps) | 
| Calculate an estimate for the maximum frame size based on verbatim mode.  More... | |
| int | ff_flac_decode_frame_header (AVCodecContext *avctx, GetBitContext *gb, FLACFrameInfo *fi, int log_level_offset) | 
| Validate and decode a frame header.  More... | |
| void | ff_flac_set_channel_layout (AVCodecContext *avctx) | 
| static av_always_inline void | flac_parse_block_header (const uint8_t *block_header, int *last, int *type, int *size) | 
| Parse the metadata block parameters from the header.  More... | |
FLAC (Free Lossless Audio Codec) decoder/demuxer common functions.
Definition in file flac.h.
| #define FLAC_STREAMINFO_SIZE 34 | 
Definition at line 34 of file flac.h.
Referenced by ff_flac_is_extradata_valid(), ff_flac_parse_streaminfo(), ff_flac_write_header(), flac_encode_init(), flac_header(), flac_read_header(), flac_write_packet(), flac_write_trailer(), matroska_parse_flac(), ogg_build_flac_headers(), parse_streaminfo(), and write_streaminfo().
| #define FLAC_MAX_CHANNELS 8 | 
Definition at line 35 of file flac.h.
Referenced by ff_flac_decode_frame_header(), flac_decode_frame(), flac_encode_init(), raw_flac_probe(), and write_frame_header().
| #define FLAC_MIN_BLOCKSIZE 16 | 
Definition at line 36 of file flac.h.
Referenced by ff_flac_parse_streaminfo(), and flac_encode_init().
| #define FLAC_MAX_BLOCKSIZE 65535 | 
Definition at line 37 of file flac.h.
Referenced by decode_frame(), flac_decode_frame(), and flac_encode_init().
| #define FLAC_MIN_FRAME_SIZE 11 | 
Definition at line 38 of file flac.h.
Referenced by flac_decode_frame().
| #define FLACCOMMONINFO | 
bits-per-sample
| #define FLACSTREAMINFO | 
Data needed from the Streaminfo header for use by the raw FLAC demuxer and/or the FLAC decoder.
total number of samples
| anonymous enum | 
| anonymous enum | 
| enum FLACExtradataFormat | 
| void ff_flac_parse_streaminfo | ( | AVCodecContext * | avctx, | 
| struct FLACStreaminfo * | s, | ||
| const uint8_t * | buffer | ||
| ) | 
Parse the Streaminfo metadata block.
| [out] | avctx | codec context to set basic stream parameters | 
| [out] | s | where parsed information is stored | 
| [in] | buffer | pointer to start of 34-byte streaminfo data | 
Definition at line 204 of file flac.c.
Referenced by flac_decode_init(), and parse_streaminfo().
| int ff_flac_is_extradata_valid | ( | AVCodecContext * | avctx, | 
| enum FLACExtradataFormat * | format, | ||
| uint8_t ** | streaminfo_start | ||
| ) | 
Validate the FLAC extradata.
| [in] | avctx | codec context containing the extradata. | 
| [out] | format | extradata format. | 
| [out] | streaminfo_start | pointer to start of 34-byte STREAMINFO data. | 
Definition at line 169 of file flac.c.
Referenced by flac_decode_init().
| int ff_flac_get_max_frame_size | ( | int | blocksize, | 
| int | ch, | ||
| int | bps | ||
| ) | 
Calculate an estimate for the maximum frame size based on verbatim mode.
| blocksize | block size, in samples | 
| ch | number of channels | 
| bps | bits-per-sample | 
Definition at line 148 of file flac.c.
Referenced by flac_decode_frame(), flac_encode_frame(), and flac_encode_init().
| int ff_flac_decode_frame_header | ( | AVCodecContext * | avctx, | 
| GetBitContext * | gb, | ||
| FLACFrameInfo * | fi, | ||
| int | log_level_offset | ||
| ) | 
Validate and decode a frame header.
| avctx | AVCodecContext to use as av_log() context | |
| gb | GetBitContext from which to read frame header | |
| [out] | fi | frame information | 
| log_level_offset | log level offset. can be used to silence error messages. | 
Definition at line 50 of file flac.c.
Referenced by decode_frame(), and frame_header_is_valid().
| void ff_flac_set_channel_layout | ( | AVCodecContext * | avctx | ) | 
Definition at line 196 of file flac.c.
Referenced by decode_frame(), ff_flac_parse_streaminfo(), and get_best_header().
| 
 | static | 
Parse the metadata block parameters from the header.
| [in] | block_header | header data, at least 4 bytes | 
| [out] | last | indicator for last metadata block | 
| [out] | type | metadata block type | 
| [out] | size | metadata block size | 
Definition at line 143 of file flac.h.
Referenced by flac_read_header(), get_metadata_size(), matroska_parse_flac(), and parse_streaminfo().
 1.8.6
 1.8.6