astdec.c File Reference
#include "libavutil/channel_layout.h"
#include "libavutil/intreadwrite.h"
#include "avformat.h"
#include "internal.h"
#include "ast.h"
Include dependency graph for astdec.c:

Go to the source code of this file.

Functions

static int ast_probe (AVProbeData *p)
 
static int ast_read_header (AVFormatContext *s)
 
static int ast_read_packet (AVFormatContext *s, AVPacket *pkt)
 

Variables

AVInputFormat ff_ast_demuxer
 

Function Documentation

static int ast_probe ( AVProbeData p)
static

Definition at line 28 of file astdec.c.

static int ast_read_header ( AVFormatContext s)
static

Definition at line 38 of file astdec.c.

static int ast_read_packet ( AVFormatContext s,
AVPacket pkt 
)
static

Definition at line 78 of file astdec.c.

Variable Documentation

AVInputFormat ff_ast_demuxer
Initial value:
= {
.name = "ast",
.long_name = NULL_IF_CONFIG_SMALL("AST (Audio Stream)"),
.read_probe = ast_probe,
.read_header = ast_read_header,
.read_packet = ast_read_packet,
.extensions = "ast",
.codec_tag = (const AVCodecTag* const []){ff_codec_ast_tags, 0},
}
static int ast_read_header(AVFormatContext *s)
Definition: astdec.c:38
static int ast_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: astdec.c:78
static int ast_probe(AVProbeData *p)
Definition: astdec.c:28
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
#define AVFMT_GENERIC_INDEX
Use generic index building code.
Definition: avformat.h:353
const AVCodecTag ff_codec_ast_tags[]
Definition: ast.c:25

Definition at line 110 of file astdec.c.