#include "avformat.h"#include "internal.h"Go to the source code of this file.
Data Structures | |
| struct | BMVContext |
Enumerations | |
| enum | BMVFlags { BMV_NOP = 0, BMV_END, BMV_DELTA, BMV_INTRA, BMV_SCROLL = 0x04, BMV_PALETTE = 0x08, BMV_COMMAND = 0x10, BMV_AUDIO = 0x20, BMV_EXT = 0x40, BMV_PRINT = 0x80, BMV_NOP = 0, BMV_END, BMV_DELTA, BMV_INTRA, BMV_AUDIO = 0x20 } |
Functions | |
| static int | bmv_read_header (AVFormatContext *s, AVFormatParameters *ap) |
| static int | bmv_read_packet (AVFormatContext *s, AVPacket *pkt) |
| static int | bmv_read_close (AVFormatContext *s) |
Variables | |
| AVInputFormat | ff_bmv_demuxer |
| enum BMVFlags |
| static int bmv_read_close | ( | AVFormatContext * | s | ) | [static] |
| static int bmv_read_header | ( | AVFormatContext * | s, | |
| AVFormatParameters * | ap | |||
| ) | [static] |
| static int bmv_read_packet | ( | AVFormatContext * | s, | |
| AVPacket * | pkt | |||
| ) | [static] |
Initial value:
{
.name = "bmv",
.long_name = NULL_IF_CONFIG_SMALL("Discworld II BMV"),
.priv_data_size = sizeof(BMVContext),
.read_header = bmv_read_header,
.read_packet = bmv_read_packet,
.read_close = bmv_read_close,
.extensions = "bmv"
}
1.5.8