#include "libavutil/intreadwrite.h"
#include "avformat.h"
#include "internal.h"
Go to the source code of this file.
Data Structures | |
| struct | TMVContext |
Defines | |
| #define | TMV_TAG MKTAG('T', 'M', 'A', 'V') |
| #define | TMV_HEADER_SIZE 12 |
| #define | PROBE_MIN_SAMPLE_RATE 5000 |
| #define | PROBE_MAX_FPS 120 |
| #define | PROBE_MIN_AUDIO_SIZE (PROBE_MIN_SAMPLE_RATE / PROBE_MAX_FPS) |
Enumerations | |
| enum | { TMV_PADDING = 0x01, TMV_STEREO = 0x02 } |
Functions | |
| static int | tmv_probe (AVProbeData *p) |
| static int | tmv_read_header (AVFormatContext *s, AVFormatParameters *ap) |
| static int | tmv_read_packet (AVFormatContext *s, AVPacket *pkt) |
| static int | tmv_read_seek (AVFormatContext *s, int stream_index, int64_t timestamp, int flags) |
Variables | |
| AVInputFormat | ff_tmv_demuxer |
Definition in file tmv.c.
| #define PROBE_MIN_AUDIO_SIZE (PROBE_MIN_SAMPLE_RATE / PROBE_MAX_FPS) |
| #define PROBE_MIN_SAMPLE_RATE 5000 |
| #define TMV_HEADER_SIZE 12 |
| #define TMV_TAG MKTAG('T', 'M', 'A', 'V') |
| static int tmv_probe | ( | AVProbeData * | p | ) | [static] |
| static int tmv_read_header | ( | AVFormatContext * | s, | |
| AVFormatParameters * | ap | |||
| ) | [static] |
| static int tmv_read_packet | ( | AVFormatContext * | s, | |
| AVPacket * | pkt | |||
| ) | [static] |
| static int tmv_read_seek | ( | AVFormatContext * | s, | |
| int | stream_index, | |||
| int64_t | timestamp, | |||
| int | flags | |||
| ) | [static] |
Initial value:
{
.name = "tmv",
.long_name = NULL_IF_CONFIG_SMALL("8088flex TMV"),
.priv_data_size = sizeof(TMVContext),
.read_probe = tmv_probe,
.read_header = tmv_read_header,
.read_packet = tmv_read_packet,
.read_seek = tmv_read_seek,
.flags = AVFMT_GENERIC_INDEX,
}
1.5.8