FFmpeg
|
#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"
Include dependency graph for libavformat/flacdec.c:
Go to the source code of this file.
Macros | |
#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 |
Macro Definition Documentation
Definition at line 31 of file libavformat/flacdec.c.
Referenced by flac_read_header(), and parse_picture().
Function Documentation
|
static |
Definition at line 279 of file libavformat/flacdec.c.
|
static |
Definition at line 157 of file libavformat/flacdec.c.
|
static |
Definition at line 33 of file libavformat/flacdec.c.
Referenced by flac_read_header().
Variable Documentation
AVInputFormat ff_flac_demuxer |
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,
}
Definition: libavcodec/avcodec.h:393
int ff_raw_read_partial_packet(AVFormatContext *s, AVPacket *pkt)
Definition: libavformat/rawdec.c:34
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: libavutil/internal.h:123
static int flac_read_header(AVFormatContext *s)
Definition: libavformat/flacdec.c:157
Definition at line 286 of file libavformat/flacdec.c.
Generated on Mon Nov 18 2024 06:52:06 for FFmpeg by 1.8.11