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

Bethesda Softworks VID (.vid) file demuxer. More...

#include "libavutil/channel_layout.h"
#include "libavutil/intreadwrite.h"
#include "avformat.h"
#include "internal.h"
#include "libavcodec/bethsoftvideo.h"

Classes

struct  BVID_DemuxContext
 

Macros

#define BVID_PALETTE_SIZE   3 * 256
 
#define DEFAULT_SAMPLE_RATE   11111
 
#define BUFFER_PADDING_SIZE   1000
 

Typedefs

typedef struct BVID_DemuxContext BVID_DemuxContext
 

Variables

AVInputFormat ff_bethsoftvid_demuxer
 

Detailed Description

Bethesda Softworks VID (.vid) file demuxer.

Author
Nicholas Tung [ntung (at. ntung com] (2007-03)
See also
http://wiki.multimedia.cx/index.php?title=Bethsoft_VID
http://www.svatopluk.com/andux/docs/dfvid.html

Variable Documentation

§ ff_bethsoftvid_demuxer

AVInputFormat ff_bethsoftvid_demuxer
Initial value:
= {
.name = "bethsoftvid",
.long_name = NULL_IF_CONFIG_SMALL("Bethesda Softworks VID"),
.priv_data_size = sizeof(BVID_DemuxContext),
.read_probe = vid_probe,
.read_header = vid_read_header,
.read_packet = vid_read_packet,
.read_close = vid_read_close,
}
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:186
Definition: bethsoftvid.c:40