#include "libavutil/intreadwrite.h"
#include "avformat.h"
Go to the source code of this file.
Data Structures | |
struct | film_sample |
struct | FilmDemuxContext |
Defines | |
#define | FILM_TAG MKBETAG('F', 'I', 'L', 'M') |
#define | FDSC_TAG MKBETAG('F', 'D', 'S', 'C') |
#define | STAB_TAG MKBETAG('S', 'T', 'A', 'B') |
#define | CVID_TAG MKBETAG('c', 'v', 'i', 'd') |
Functions | |
static int | film_probe (AVProbeData *p) |
static int | film_read_header (AVFormatContext *s, AVFormatParameters *ap) |
static int | film_read_packet (AVFormatContext *s, AVPacket *pkt) |
static int | film_read_close (AVFormatContext *s) |
Variables | |
AVInputFormat | ff_segafilm_demuxer |
Definition in file segafilm.c.
#define CVID_TAG MKBETAG('c', 'v', 'i', 'd') |
#define FDSC_TAG MKBETAG('F', 'D', 'S', 'C') |
#define FILM_TAG MKBETAG('F', 'I', 'L', 'M') |
static int film_probe | ( | AVProbeData * | p | ) | [static] |
Definition at line 68 of file segafilm.c.
static int film_read_close | ( | AVFormatContext * | s | ) | [static] |
Definition at line 290 of file segafilm.c.
static int film_read_header | ( | AVFormatContext * | s, | |
AVFormatParameters * | ap | |||
) | [static] |
Definition at line 76 of file segafilm.c.
static int film_read_packet | ( | AVFormatContext * | s, | |
AVPacket * | pkt | |||
) | [static] |
Definition at line 215 of file segafilm.c.
Initial value:
{ "film_cpk", NULL_IF_CONFIG_SMALL("Sega FILM/CPK format"), sizeof(FilmDemuxContext), film_probe, film_read_header, film_read_packet, film_read_close, }
Definition at line 300 of file segafilm.c.