#include "libavcodec/flac.h"#include "avformat.h"#include "id3v2.h"#include "internal.h"#include "rawdec.h"#include "oggdec.h"#include "vorbiscomment.h"#include "libavcodec/bytestream.h"Go to the source code of this file.
Defines | |
| #define | RETURN_ERROR(code) do { ret = (code); goto fail; } while (0) | 
Functions | |
| static int | parse_picture (AVFormatContext *s, uint8_t *buf, int buf_size) | 
| static int | flac_read_header (AVFormatContext *s) | 
| static int | flac_probe (AVProbeData *p) | 
Variables | |
| AVInputFormat | ff_flac_demuxer | 
| #define RETURN_ERROR | ( | code | ) | do { ret = (code); goto fail; } while (0) | 
| static int flac_probe | ( | AVProbeData * | p | ) |  [static] | 
        
| static int flac_read_header | ( | AVFormatContext * | s | ) |  [static] | 
        
| static int parse_picture | ( | AVFormatContext * | s, | |
| uint8_t * | buf, | |||
| int | buf_size | |||
| ) |  [static] | 
        
Initial value:
 {
    .name           = "flac",
    .long_name      = NULL_IF_CONFIG_SMALL("raw FLAC"),
    .read_probe     = flac_probe,
    .read_header    = flac_read_header,
    .read_packet    = ff_raw_read_partial_packet,
    .flags          = AVFMT_GENERIC_INDEX,
    .extensions     = "flac",
    .raw_codec_id   = AV_CODEC_ID_FLAC,
}
 1.5.8