#include "avformat.h"
Go to the source code of this file.
Data Structures | |
struct | TiertexSeqFrameBuffer |
struct | SeqDemuxContext |
Defines | |
#define | SEQ_FRAME_SIZE 6144 |
#define | SEQ_FRAME_W 256 |
#define | SEQ_FRAME_H 128 |
#define | SEQ_NUM_FRAME_BUFFERS 30 |
#define | SEQ_AUDIO_BUFFER_SIZE 882 |
#define | SEQ_SAMPLE_RATE 22050 |
#define | SEQ_FRAME_RATE 25 |
Functions | |
static int | seq_probe (AVProbeData *p) |
static int | seq_init_frame_buffers (SeqDemuxContext *seq, ByteIOContext *pb) |
static int | seq_fill_buffer (SeqDemuxContext *seq, ByteIOContext *pb, int buffer_num, unsigned int data_offs, int data_size) |
static int | seq_parse_frame_data (SeqDemuxContext *seq, ByteIOContext *pb) |
static int | seq_read_header (AVFormatContext *s, AVFormatParameters *ap) |
static int | seq_read_packet (AVFormatContext *s, AVPacket *pkt) |
static int | seq_read_close (AVFormatContext *s) |
Variables | |
AVInputFormat | tiertexseq_demuxer |
Definition in file tiertexseq.c.
#define SEQ_AUDIO_BUFFER_SIZE 882 |
#define SEQ_FRAME_H 128 |
#define SEQ_FRAME_RATE 25 |
#define SEQ_FRAME_SIZE 6144 |
#define SEQ_FRAME_W 256 |
#define SEQ_NUM_FRAME_BUFFERS 30 |
Definition at line 32 of file tiertexseq.c.
Referenced by seq_fill_buffer(), seq_init_frame_buffers(), seq_parse_frame_data(), and seq_read_close().
#define SEQ_SAMPLE_RATE 22050 |
static int seq_fill_buffer | ( | SeqDemuxContext * | seq, | |
ByteIOContext * | pb, | |||
int | buffer_num, | |||
unsigned int | data_offs, | |||
int | data_size | |||
) | [static] |
static int seq_init_frame_buffers | ( | SeqDemuxContext * | seq, | |
ByteIOContext * | pb | |||
) | [static] |
static int seq_parse_frame_data | ( | SeqDemuxContext * | seq, | |
ByteIOContext * | pb | |||
) | [static] |
Definition at line 124 of file tiertexseq.c.
Referenced by seq_read_header(), and seq_read_packet().
static int seq_probe | ( | AVProbeData * | p | ) | [static] |
Definition at line 61 of file tiertexseq.c.
static int seq_read_close | ( | AVFormatContext * | s | ) | [static] |
Definition at line 294 of file tiertexseq.c.
static int seq_read_header | ( | AVFormatContext * | s, | |
AVFormatParameters * | ap | |||
) | [static] |
Definition at line 183 of file tiertexseq.c.
static int seq_read_packet | ( | AVFormatContext * | s, | |
AVPacket * | pkt | |||
) | [static] |
Definition at line 240 of file tiertexseq.c.
Initial value:
{ "tiertexseq", NULL_IF_CONFIG_SMALL("Tiertex Limited SEQ format"), sizeof(SeqDemuxContext), seq_probe, seq_read_header, seq_read_packet, seq_read_close, }
Definition at line 305 of file tiertexseq.c.