Interplay MVE file demuxer by Mike Melanson (melan.nosp@m.son@.nosp@m.pcisy.nosp@m.s.ne.nosp@m.t) For more information regarding the Interplay MVE file format, visit: http://www.pcisys.net/~melanson/codecs/ The aforementioned site also contains a command line utility for parsing IP MVE files so that you can get a good idea of the typical structure of such files.
More...
#include "libavutil/channel_layout.h"
#include "libavutil/intreadwrite.h"
#include "avformat.h"
#include "internal.h"
|
|
#define | CHUNK_PREAMBLE_SIZE 4 |
| |
|
#define | OPCODE_PREAMBLE_SIZE 4 |
| |
|
#define | CHUNK_INIT_AUDIO 0x0000 |
| |
|
#define | CHUNK_AUDIO_ONLY 0x0001 |
| |
|
#define | CHUNK_INIT_VIDEO 0x0002 |
| |
|
#define | CHUNK_VIDEO 0x0003 |
| |
|
#define | CHUNK_SHUTDOWN 0x0004 |
| |
|
#define | CHUNK_END 0x0005 |
| |
|
#define | CHUNK_DONE 0xFFFC |
| |
|
#define | CHUNK_NOMEM 0xFFFD |
| |
|
#define | CHUNK_EOF 0xFFFE |
| |
|
#define | CHUNK_BAD 0xFFFF |
| |
|
#define | OPCODE_END_OF_STREAM 0x00 |
| |
|
#define | OPCODE_END_OF_CHUNK 0x01 |
| |
|
#define | OPCODE_CREATE_TIMER 0x02 |
| |
|
#define | OPCODE_INIT_AUDIO_BUFFERS 0x03 |
| |
|
#define | OPCODE_START_STOP_AUDIO 0x04 |
| |
|
#define | OPCODE_INIT_VIDEO_BUFFERS 0x05 |
| |
|
#define | OPCODE_VIDEO_DATA_06 0x06 |
| |
|
#define | OPCODE_SEND_BUFFER 0x07 |
| |
|
#define | OPCODE_AUDIO_FRAME 0x08 |
| |
|
#define | OPCODE_SILENCE_FRAME 0x09 |
| |
|
#define | OPCODE_INIT_VIDEO_MODE 0x0A |
| |
|
#define | OPCODE_CREATE_GRADIENT 0x0B |
| |
|
#define | OPCODE_SET_PALETTE 0x0C |
| |
|
#define | OPCODE_SET_PALETTE_COMPRESSED 0x0D |
| |
|
#define | OPCODE_SET_SKIP_MAP 0x0E |
| |
|
#define | OPCODE_SET_DECODING_MAP 0x0F |
| |
|
#define | OPCODE_VIDEO_DATA_10 0x10 |
| |
|
#define | OPCODE_VIDEO_DATA_11 0x11 |
| |
|
#define | OPCODE_UNKNOWN_12 0x12 |
| |
|
#define | OPCODE_UNKNOWN_13 0x13 |
| |
|
#define | OPCODE_UNKNOWN_14 0x14 |
| |
|
#define | OPCODE_UNKNOWN_15 0x15 |
| |
|
#define | PALETTE_COUNT 256 |
| |
Interplay MVE file demuxer by Mike Melanson (melan.nosp@m.son@.nosp@m.pcisy.nosp@m.s.ne.nosp@m.t) For more information regarding the Interplay MVE file format, visit: http://www.pcisys.net/~melanson/codecs/ The aforementioned site also contains a command line utility for parsing IP MVE files so that you can get a good idea of the typical structure of such files.
This demuxer is not the best example to use if you are trying to write your own as it uses a rather roundabout approach for splitting up and sending out the chunks.
§ ff_ipmovie_demuxer
Initial value:= {
.name = "ipmovie",
.read_probe = ipmovie_probe,
.read_header = ipmovie_read_header,
.read_packet = ipmovie_read_packet,
}
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:186