#include "libavutil/intreadwrite.h"
#include "libavutil/dict.h"
#include "avformat.h"
Go to the source code of this file.
Data Structures | |
struct | Wc3DemuxContext |
Defines | |
#define | FORM_TAG MKTAG('F', 'O', 'R', 'M') |
#define | MOVE_TAG MKTAG('M', 'O', 'V', 'E') |
#define | PC__TAG MKTAG('_', 'P', 'C', '_') |
#define | SOND_TAG MKTAG('S', 'O', 'N', 'D') |
#define | BNAM_TAG MKTAG('B', 'N', 'A', 'M') |
#define | SIZE_TAG MKTAG('S', 'I', 'Z', 'E') |
#define | PALT_TAG MKTAG('P', 'A', 'L', 'T') |
#define | INDX_TAG MKTAG('I', 'N', 'D', 'X') |
#define | BRCH_TAG MKTAG('B', 'R', 'C', 'H') |
#define | SHOT_TAG MKTAG('S', 'H', 'O', 'T') |
#define | VGA__TAG MKTAG('V', 'G', 'A', ' ') |
#define | TEXT_TAG MKTAG('T', 'E', 'X', 'T') |
#define | AUDI_TAG MKTAG('A', 'U', 'D', 'I') |
#define | WC3_DEFAULT_WIDTH 320 |
#define | WC3_DEFAULT_HEIGHT 165 |
#define | WC3_SAMPLE_RATE 22050 |
#define | WC3_AUDIO_CHANNELS 1 |
#define | WC3_AUDIO_BITS 16 |
#define | WC3_FRAME_FPS 15 |
#define | PALETTE_SIZE (256 * 3) |
Functions | |
static int | wc3_probe (AVProbeData *p) |
static int | wc3_read_header (AVFormatContext *s, AVFormatParameters *ap) |
static int | wc3_read_packet (AVFormatContext *s, AVPacket *pkt) |
static int | wc3_read_close (AVFormatContext *s) |
Variables | |
AVInputFormat | ff_wc3_demuxer |
Definition in file wc3movie.c.
#define AUDI_TAG MKTAG('A', 'U', 'D', 'I') |
#define BNAM_TAG MKTAG('B', 'N', 'A', 'M') |
#define BRCH_TAG MKTAG('B', 'R', 'C', 'H') |
#define FORM_TAG MKTAG('F', 'O', 'R', 'M') |
Definition at line 34 of file wc3movie.c.
#define INDX_TAG MKTAG('I', 'N', 'D', 'X') |
#define MOVE_TAG MKTAG('M', 'O', 'V', 'E') |
#define PALETTE_SIZE (256 * 3) |
Definition at line 60 of file wc3movie.c.
#define PALT_TAG MKTAG('P', 'A', 'L', 'T') |
Definition at line 40 of file wc3movie.c.
#define PC__TAG MKTAG('_', 'P', 'C', '_') |
Definition at line 43 of file wc3movie.c.
#define SIZE_TAG MKTAG('S', 'I', 'Z', 'E') |
#define SOND_TAG MKTAG('S', 'O', 'N', 'D') |
#define VGA__TAG MKTAG('V', 'G', 'A', ' ') |
Definition at line 44 of file wc3movie.c.
#define WC3_AUDIO_BITS 16 |
#define WC3_AUDIO_CHANNELS 1 |
#define WC3_DEFAULT_HEIGHT 165 |
#define WC3_DEFAULT_WIDTH 320 |
#define WC3_FRAME_FPS 15 |
#define WC3_SAMPLE_RATE 22050 |
static int wc3_probe | ( | AVProbeData * | p | ) | [static] |
Definition at line 73 of file wc3movie.c.
static int wc3_read_close | ( | AVFormatContext * | s | ) | [static] |
Definition at line 285 of file wc3movie.c.
static int wc3_read_header | ( | AVFormatContext * | s, | |
AVFormatParameters * | ap | |||
) | [static] |
Definition at line 85 of file wc3movie.c.
static int wc3_read_packet | ( | AVFormatContext * | s, | |
AVPacket * | pkt | |||
) | [static] |
Definition at line 196 of file wc3movie.c.
Initial value:
{ "wc3movie", NULL_IF_CONFIG_SMALL("Wing Commander III movie format"), sizeof(Wc3DemuxContext), wc3_probe, wc3_read_header, wc3_read_packet, wc3_read_close, }
Definition at line 295 of file wc3movie.c.