FFmpeg
Functions | Variables
aixdec.c File Reference
#include "libavutil/intreadwrite.h"
#include "avformat.h"
#include "demux.h"
#include "internal.h"

Go to the source code of this file.

Functions

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

Variables

const FFInputFormat ff_aix_demuxer
 

Function Documentation

◆ aix_probe()

static int aix_probe ( const AVProbeData p)
static

Definition at line 27 of file aixdec.c.

◆ aix_read_header()

static int aix_read_header ( AVFormatContext s)
static

Definition at line 37 of file aixdec.c.

◆ aix_read_packet()

static int aix_read_packet ( AVFormatContext s,
AVPacket pkt 
)
static

Definition at line 87 of file aixdec.c.

Variable Documentation

◆ ff_aix_demuxer

const FFInputFormat ff_aix_demuxer
Initial value:
= {
.p.name = "aix",
.p.long_name = NULL_IF_CONFIG_SMALL("CRI AIX"),
.p.extensions= "aix",
.p.flags = AVFMT_GENERIC_INDEX,
.read_probe = aix_probe,
.read_header = aix_read_header,
.read_packet = aix_read_packet,
}

Definition at line 133 of file aixdec.c.

aix_probe
static int aix_probe(const AVProbeData *p)
Definition: aixdec.c:27
AVFMT_GENERIC_INDEX
#define AVFMT_GENERIC_INDEX
Use generic index building code.
Definition: avformat.h:480
NULL_IF_CONFIG_SMALL
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition: internal.h:94
aix_read_header
static int aix_read_header(AVFormatContext *s)
Definition: aixdec.c:37
aix_read_packet
static int aix_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: aixdec.c:87