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

Sierra VMD file demuxer by Vladimir "VAG" Gneushev (vagsoft at mail.ru) for more information on the Sierra VMD file format, visit: http://www.pcisys.net/~melanson/codecs/. More...

#include "libavutil/channel_layout.h"
#include "libavutil/intreadwrite.h"
#include "avformat.h"
#include "internal.h"
#include "avio_internal.h"

Classes

struct  vmd_frame
 
struct  VmdDemuxContext
 

Macros

#define VMD_HEADER_SIZE   0x0330
 
#define BYTES_PER_FRAME_RECORD   16
 

Typedefs

typedef struct vmd_frame vmd_frame
 
typedef struct VmdDemuxContext VmdDemuxContext
 

Variables

AVInputFormat ff_vmd_demuxer
 

Detailed Description

Sierra VMD file demuxer by Vladimir "VAG" Gneushev (vagsoft at mail.ru) for more information on the Sierra VMD file format, visit: http://www.pcisys.net/~melanson/codecs/.

Variable Documentation

§ ff_vmd_demuxer

AVInputFormat ff_vmd_demuxer
Initial value:
= {
.name = "vmd",
.long_name = NULL_IF_CONFIG_SMALL("Sierra VMD"),
.priv_data_size = sizeof(VmdDemuxContext),
.read_probe = vmd_probe,
.read_header = vmd_read_header,
.read_packet = vmd_read_packet,
.read_close = vmd_read_close,
}
Definition: sierravmd.c:48
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:186