flacdec.c File Reference
#include "libavcodec/flac.h"
#include "avformat.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.

Functions

static int flac_read_header (AVFormatContext *s, AVFormatParameters *ap)
 
static int flac_probe (AVProbeData *p)
 

Variables

AVInputFormat ff_flac_demuxer
 

Function Documentation

static int flac_probe ( AVProbeData p)
static

Definition at line 144 of file flacdec.c.

static int flac_read_header ( AVFormatContext s,
AVFormatParameters ap 
)
static

Definition at line 30 of file flacdec.c.

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,
.extensions = "flac",
.value = CODEC_ID_FLAC,
}
int ff_raw_read_partial_packet(AVFormatContext *s, AVPacket *pkt)
Definition: rawdec.c:103
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:191
static int flac_probe(AVProbeData *p)
Definition: flacdec.c:144
#define AVFMT_GENERIC_INDEX
Use generic index building code.
Definition: avformat.h:376
static int flac_read_header(AVFormatContext *s, AVFormatParameters *ap)
Definition: flacdec.c:30

Definition at line 151 of file flacdec.c.