#include "libavutil/intreadwrite.h"
#include "avformat.h"
#include "internal.h"
#include "avio_internal.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') |
#define | RAW_TAG MKBETAG('r', 'a', 'w', ' ') |
Functions | |
static int | film_probe (AVProbeData *p) |
static int | film_read_header (AVFormatContext *s) |
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') |
#define RAW_TAG MKBETAG('r', 'a', 'w', ' ') |
static int film_probe | ( | AVProbeData * | p | ) | [static] |
Definition at line 71 of file segafilm.c.
static int film_read_close | ( | AVFormatContext * | s | ) | [static] |
Definition at line 318 of file segafilm.c.
static int film_read_header | ( | AVFormatContext * | s | ) | [static] |
Definition at line 79 of file segafilm.c.
static int film_read_packet | ( | AVFormatContext * | s, | |
AVPacket * | pkt | |||
) | [static] |
Definition at line 240 of file segafilm.c.
Initial value:
{ .name = "film_cpk", .long_name = NULL_IF_CONFIG_SMALL("Sega FILM / CPK"), .priv_data_size = sizeof(FilmDemuxContext), .read_probe = film_probe, .read_header = film_read_header, .read_packet = film_read_packet, .read_close = film_read_close, }
Definition at line 328 of file segafilm.c.