Sega FILM (.cpk) file demuxer by Mike Melanson (melanson@pcisys.net) For more information regarding the Sega FILM file format, visit: http://www.pcisys.net/~melanson/codecs/. More...
#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', ' ') |
Typedefs | |
typedef struct FilmDemuxContext | FilmDemuxContext |
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 |
Sega FILM (.cpk) file demuxer by Mike Melanson (melanson@pcisys.net) For more information regarding the Sega FILM file format, visit: http://www.pcisys.net/~melanson/codecs/.
Definition in file segafilm.c.
Definition at line 38 of file segafilm.c.
Referenced by film_read_header().
Definition at line 36 of file segafilm.c.
Referenced by film_read_header().
Definition at line 35 of file segafilm.c.
Referenced by film_probe().
Definition at line 39 of file segafilm.c.
Referenced by film_read_header().
Definition at line 37 of file segafilm.c.
Referenced by film_read_header().
typedef struct FilmDemuxContext FilmDemuxContext |
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 316 of file segafilm.c.
static int film_read_header | ( | AVFormatContext * | s, |
AVFormatParameters * | ap | ||
) | [static] |
Definition at line 79 of file segafilm.c.
static int film_read_packet | ( | AVFormatContext * | s, |
AVPacket * | pkt | ||
) | [static] |
Definition at line 238 of file segafilm.c.
{ .name = "film_cpk", .long_name = NULL_IF_CONFIG_SMALL("Sega FILM/CPK format"), .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 326 of file segafilm.c.