#include "avformat.h"
#include "internal.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/dict.h"
#include "libavutil/mathematics.h"
Go to the source code of this file.
Data Structures | |
struct | VqfContext |
Functions | |
static int | vqf_probe (AVProbeData *probe_packet) |
static void | add_metadata (AVFormatContext *s, const char *tag, unsigned int tag_len, unsigned int remaining) |
static int | vqf_read_header (AVFormatContext *s, AVFormatParameters *ap) |
static int | vqf_read_packet (AVFormatContext *s, AVPacket *pkt) |
static int | vqf_read_seek (AVFormatContext *s, int stream_index, int64_t timestamp, int flags) |
Variables | |
AVInputFormat | ff_vqf_demuxer |
static void add_metadata | ( | AVFormatContext * | s, | |
const char * | tag, | |||
unsigned int | tag_len, | |||
unsigned int | remaining | |||
) | [static] |
static int vqf_probe | ( | AVProbeData * | probe_packet | ) | [static] |
static int vqf_read_header | ( | AVFormatContext * | s, | |
AVFormatParameters * | ap | |||
) | [static] |
static int vqf_read_packet | ( | AVFormatContext * | s, | |
AVPacket * | pkt | |||
) | [static] |
static int vqf_read_seek | ( | AVFormatContext * | s, | |
int | stream_index, | |||
int64_t | timestamp, | |||
int | flags | |||
) | [static] |
Initial value:
{ .name = "vqf", .long_name = NULL_IF_CONFIG_SMALL("Nippon Telegraph and Telephone Corporation (NTT) TwinVQ"), .priv_data_size = sizeof(VqfContext), .read_probe = vqf_probe, .read_header = vqf_read_header, .read_packet = vqf_read_packet, .read_seek = vqf_read_seek, .extensions = "vqf", }