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

Funcom ISS file demuxer. More...

#include "libavutil/channel_layout.h"
#include "avformat.h"
#include "internal.h"
#include "libavutil/avstring.h"

Classes

struct  IssDemuxContext
 

Macros

#define ISS_SIG   "IMA_ADPCM_Sound"
 
#define ISS_SIG_LEN   15
 
#define MAX_TOKEN_SIZE   20
 

Typedefs

typedef struct IssDemuxContext IssDemuxContext
 

Variables

AVInputFormat ff_iss_demuxer
 

Detailed Description

Funcom ISS file demuxer.

Author
Jaikrishnan Menon
See also
http://wiki.multimedia.cx/index.php?title=FunCom_ISS

Variable Documentation

§ ff_iss_demuxer

AVInputFormat ff_iss_demuxer
Initial value:
= {
.name = "iss",
.long_name = NULL_IF_CONFIG_SMALL("Funcom ISS"),
.priv_data_size = sizeof(IssDemuxContext),
.read_probe = iss_probe,
.read_header = iss_read_header,
.read_packet = iss_read_packet,
}
Definition: iss.c:38
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:186