#include "libavutil/bswap.h"
#include "libavutil/intreadwrite.h"
#include "avformat.h"
Go to the source code of this file.
Data Structures | |
| struct | MTVDemuxContext |
Defines | |
| #define | MTV_ASUBCHUNK_DATA_SIZE 500 |
| #define | MTV_HEADER_SIZE 512 |
| #define | MTV_AUDIO_PADDING_SIZE 12 |
| #define | AUDIO_SAMPLING_RATE 44100 |
| #define | VIDEO_SID 0 |
| #define | AUDIO_SID 1 |
Functions | |
| static int | mtv_probe (AVProbeData *p) |
| static int | mtv_read_header (AVFormatContext *s, AVFormatParameters *ap) |
| static int | mtv_read_packet (AVFormatContext *s, AVPacket *pkt) |
Variables | |
| AVInputFormat | mtv_demuxer |
Definition in file mtv.c.
| #define AUDIO_SAMPLING_RATE 44100 |
| #define AUDIO_SID 1 |
| #define MTV_ASUBCHUNK_DATA_SIZE 500 |
| #define MTV_AUDIO_PADDING_SIZE 12 |
| #define MTV_HEADER_SIZE 512 |
| #define VIDEO_SID 0 |
| static int mtv_probe | ( | AVProbeData * | p | ) | [static] |
| static int mtv_read_header | ( | AVFormatContext * | s, | |
| AVFormatParameters * | ap | |||
| ) | [static] |
| static int mtv_read_packet | ( | AVFormatContext * | s, | |
| AVPacket * | pkt | |||
| ) | [static] |
Initial value:
{
"MTV",
NULL_IF_CONFIG_SMALL("MTV format"),
sizeof(MTVDemuxContext),
mtv_probe,
mtv_read_header,
mtv_read_packet,
}
1.5.8