#include "avformat.h"#include "internal.h"Go to the source code of this file.
Data Structures | |
| struct | MviDemuxContext |
Defines | |
| #define | MVI_FRAC_BITS 10 |
| #define | MVI_AUDIO_STREAM_INDEX 0 |
| #define | MVI_VIDEO_STREAM_INDEX 1 |
Functions | |
| static int | read_header (AVFormatContext *s) |
| static int | read_packet (AVFormatContext *s, AVPacket *pkt) |
Variables | |
| AVInputFormat | ff_mvi_demuxer |
| #define MVI_AUDIO_STREAM_INDEX 0 |
| #define MVI_FRAC_BITS 10 |
| #define MVI_VIDEO_STREAM_INDEX 1 |
| static int read_header | ( | AVFormatContext * | s | ) | [static] |
| static int read_packet | ( | AVFormatContext * | s, | |
| AVPacket * | pkt | |||
| ) | [static] |
Initial value:
{
.name = "mvi",
.long_name = NULL_IF_CONFIG_SMALL("Motion Pixels MVI"),
.priv_data_size = sizeof(MviDemuxContext),
.read_header = read_header,
.read_packet = read_packet,
.extensions = "mvi",
}
1.5.8