#include "libavutil/bswap.h"
#include "libavutil/intreadwrite.h"
#include "avformat.h"
#include "internal.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 |
Functions | |
static int | mtv_probe (AVProbeData *p) |
static int | mtv_read_header (AVFormatContext *s) |
static int | mtv_read_packet (AVFormatContext *s, AVPacket *pkt) |
Variables | |
AVInputFormat | ff_mtv_demuxer |
Definition in file mtv.c.
#define AUDIO_SAMPLING_RATE 44100 |
#define MTV_ASUBCHUNK_DATA_SIZE 500 |
#define MTV_AUDIO_PADDING_SIZE 12 |
#define MTV_HEADER_SIZE 512 |
static int mtv_probe | ( | AVProbeData * | p | ) | [static] |
static int mtv_read_header | ( | AVFormatContext * | s | ) | [static] |
static int mtv_read_packet | ( | AVFormatContext * | s, | |
AVPacket * | pkt | |||
) | [static] |
Initial value:
{ .name = "mtv", .long_name = NULL_IF_CONFIG_SMALL("MTV format"), .priv_data_size = sizeof(MTVDemuxContext), .read_probe = mtv_probe, .read_header = mtv_read_header, .read_packet = mtv_read_packet, }