FFmpeg
Data Structures | Macros | Functions | Variables
paf.c File Reference
#include "libavutil/channel_layout.h"
#include "libavcodec/paf.h"
#include "avformat.h"
#include "demux.h"
#include "internal.h"

Go to the source code of this file.

Data Structures

struct  PAFDemuxContext
 

Macros

#define MAGIC   "Packed Animation File V1.0\n(c) 1992-96 Amazing Studio\x0a\x1a"
 

Functions

static int read_probe (const AVProbeData *p)
 
static int read_close (AVFormatContext *s)
 
static int read_table (AVFormatContext *s, uint32_t *table, uint32_t count)
 
static int read_header (AVFormatContext *s)
 
static int read_packet (AVFormatContext *s, AVPacket *pkt)
 

Variables

const FFInputFormat ff_paf_demuxer
 

Macro Definition Documentation

◆ MAGIC

#define MAGIC   "Packed Animation File V1.0\n(c) 1992-96 Amazing Studio\x0a\x1a"

Definition at line 28 of file paf.c.

Function Documentation

◆ read_probe()

static int read_probe ( const AVProbeData p)
static

Definition at line 57 of file paf.c.

◆ read_close()

static int read_close ( AVFormatContext s)
static

Definition at line 65 of file paf.c.

◆ read_table()

static int read_table ( AVFormatContext s,
uint32_t *  table,
uint32_t  count 
)
static

Definition at line 79 of file paf.c.

Referenced by read_header().

◆ read_header()

static int read_header ( AVFormatContext s)
static

Definition at line 93 of file paf.c.

◆ read_packet()

static int read_packet ( AVFormatContext s,
AVPacket pkt 
)
static

Definition at line 201 of file paf.c.

Variable Documentation

◆ ff_paf_demuxer

const FFInputFormat ff_paf_demuxer
Initial value:
= {
.p.name = "paf",
.p.long_name = NULL_IF_CONFIG_SMALL("Amazing Studio Packed Animation File"),
.priv_data_size = sizeof(PAFDemuxContext),
.flags_internal = FF_INFMT_FLAG_INIT_CLEANUP,
}

Definition at line 269 of file paf.c.

read_header
static int read_header(AVFormatContext *s)
Definition: paf.c:93
read_probe
static int read_probe(const AVProbeData *p)
Definition: paf.c:57
read_close
static int read_close(AVFormatContext *s)
Definition: paf.c:65
FF_INFMT_FLAG_INIT_CLEANUP
#define FF_INFMT_FLAG_INIT_CLEANUP
For an FFInputFormat with this flag set read_close() needs to be called by the caller upon read_heade...
Definition: demux.h:35
PAFDemuxContext
Definition: paf.c:30
read_packet
static int read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: paf.c:201
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:106