Sega FILM (.cpk) file demuxer by Mike Melanson (melan.nosp@m.son@.nosp@m.pcisy.nosp@m.s.ne.nosp@m.t) 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"
|
|
#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', ' ') |
| |
Sega FILM (.cpk) file demuxer by Mike Melanson (melan.nosp@m.son@.nosp@m.pcisy.nosp@m.s.ne.nosp@m.t) For more information regarding the Sega FILM file format, visit: http://www.pcisys.net/~melanson/codecs/.
§ ff_segafilm_demuxer
Initial value:= {
.name = "film_cpk",
.read_probe = film_probe,
.read_header = film_read_header,
.read_packet = film_read_packet,
.read_close = film_read_close,
.read_seek = film_read_seek,
}
Definition: segafilm.c:49
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:186