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

libgme demuxer More...

#include <gme/gme.h>
#include "libavutil/avstring.h"
#include "libavutil/eval.h"
#include "libavutil/opt.h"
#include "avformat.h"
#include "internal.h"

Classes

struct  GMEContext
 

Macros

#define OFFSET(x)   offsetof(GMEContext, x)
 
#define A   AV_OPT_FLAG_AUDIO_PARAM
 
#define D   AV_OPT_FLAG_DECODING_PARAM
 
#define AUDIO_PKT_SIZE   512
 

Typedefs

typedef struct GMEContext GMEContext
 

Variables

AVInputFormat ff_libgme_demuxer
 

Detailed Description

libgme demuxer

Variable Documentation

§ ff_libgme_demuxer

AVInputFormat ff_libgme_demuxer
Initial value:
= {
.name = "libgme",
.long_name = NULL_IF_CONFIG_SMALL("Game Music Emu demuxer"),
.priv_data_size = sizeof(GMEContext),
.read_probe = probe_gme,
.read_header = read_header_gme,
.read_packet = read_packet_gme,
.read_close = read_close_gme,
.read_seek = read_seek_gme,
.priv_class = &class_gme,
}
Definition: libgme.c:31
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:186