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"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') |
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 | 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.
| #define CVID_TAG MKBETAG('c', 'v', 'i', 'd') |
Definition at line 36 of file segafilm.c.
Referenced by film_read_header().
| #define FDSC_TAG MKBETAG('F', 'D', 'S', 'C') |
Definition at line 34 of file segafilm.c.
Referenced by film_read_header().
| #define FILM_TAG MKBETAG('F', 'I', 'L', 'M') |
Definition at line 33 of file segafilm.c.
Referenced by film_probe().
Definition at line 35 of file segafilm.c.
Referenced by film_read_header().
| typedef struct FilmDemuxContext FilmDemuxContext |
| 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 275 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 204 of file segafilm.c.
{
"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 285 of file segafilm.c.
1.7.1