FFmpeg
Classes | Macros | Typedefs | Variables
segafilm.c File Reference

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"

Classes

struct  film_sample
 
struct  FilmDemuxContext
 

Macros

#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 film_sample film_sample
 
typedef struct FilmDemuxContext FilmDemuxContext
 

Variables

AVInputFormat ff_segafilm_demuxer
 

Detailed Description

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/.

Variable Documentation

§ ff_segafilm_demuxer

AVInputFormat ff_segafilm_demuxer
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,
.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