FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Functions | Variables
aixdec.c File Reference
#include "libavutil/intreadwrite.h"
#include "avformat.h"
#include "internal.h"

Go to the source code of this file.

Functions

static int aix_probe (AVProbeData *p)
 
static int aix_read_header (AVFormatContext *s)
 
static int aix_read_packet (AVFormatContext *s, AVPacket *pkt)
 

Variables

AVInputFormat ff_aix_demuxer
 

Function Documentation

static int aix_probe ( AVProbeData p)
static

Definition at line 26 of file aixdec.c.

static int aix_read_header ( AVFormatContext s)
static

Definition at line 36 of file aixdec.c.

static int aix_read_packet ( AVFormatContext s,
AVPacket pkt 
)
static

Definition at line 86 of file aixdec.c.

Variable Documentation

AVInputFormat ff_aix_demuxer
Initial value:
= {
.name = "aix",
.long_name = NULL_IF_CONFIG_SMALL("CRI AIX"),
.read_probe = aix_probe,
.read_header = aix_read_header,
.read_packet = aix_read_packet,
.extensions = "aix",
}
static int aix_probe(AVProbeData *p)
Definition: aixdec.c:26
static int aix_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: aixdec.c:86
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:176
#define AVFMT_GENERIC_INDEX
Use generic index building code.
Definition: avformat.h:485
static int aix_read_header(AVFormatContext *s)
Definition: aixdec.c:36

Definition at line 132 of file aixdec.c.