FFmpeg
Data Structures | Functions | Variables
vplayerdec.c File Reference
#include "avformat.h"
#include "internal.h"
#include "subtitles.h"

Go to the source code of this file.

Data Structures

struct  VPlayerContext
 

Functions

static int vplayer_probe (const AVProbeData *p)
 
static int64_t read_ts (char **line)
 
static int vplayer_read_header (AVFormatContext *s)
 
static int vplayer_read_packet (AVFormatContext *s, AVPacket *pkt)
 
static int vplayer_read_seek (AVFormatContext *s, int stream_index, int64_t min_ts, int64_t ts, int64_t max_ts, int flags)
 
static int vplayer_read_close (AVFormatContext *s)
 

Variables

AVInputFormat ff_vplayer_demuxer
 

Detailed Description

VPlayer subtitles format demuxer

Definition in file vplayerdec.c.

Function Documentation

◆ vplayer_probe()

static int vplayer_probe ( const AVProbeData p)
static

Definition at line 34 of file vplayerdec.c.

◆ read_ts()

static int64_t read_ts ( char **  line)
static

Definition at line 45 of file vplayerdec.c.

Referenced by vplayer_read_header().

◆ vplayer_read_header()

static int vplayer_read_header ( AVFormatContext s)
static

Definition at line 58 of file vplayerdec.c.

◆ vplayer_read_packet()

static int vplayer_read_packet ( AVFormatContext s,
AVPacket pkt 
)
static

Definition at line 100 of file vplayerdec.c.

◆ vplayer_read_seek()

static int vplayer_read_seek ( AVFormatContext s,
int  stream_index,
int64_t  min_ts,
int64_t  ts,
int64_t  max_ts,
int  flags 
)
static

Definition at line 106 of file vplayerdec.c.

◆ vplayer_read_close()

static int vplayer_read_close ( AVFormatContext s)
static

Definition at line 114 of file vplayerdec.c.

Variable Documentation

◆ ff_vplayer_demuxer

AVInputFormat ff_vplayer_demuxer
Initial value:
= {
.name = "vplayer",
.long_name = NULL_IF_CONFIG_SMALL("VPlayer subtitles"),
.priv_data_size = sizeof(VPlayerContext),
.read_seek2 = vplayer_read_seek,
.extensions = "txt",
}

Definition at line 121 of file vplayerdec.c.

vplayer_probe
static int vplayer_probe(const AVProbeData *p)
Definition: vplayerdec.c:34
vplayer_read_header
static int vplayer_read_header(AVFormatContext *s)
Definition: vplayerdec.c:58
vplayer_read_packet
static int vplayer_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: vplayerdec.c:100
vplayer_read_seek
static int vplayer_read_seek(AVFormatContext *s, int stream_index, int64_t min_ts, int64_t ts, int64_t max_ts, int flags)
Definition: vplayerdec.c:106
VPlayerContext
Definition: vplayerdec.c:30
read_close
static av_cold int read_close(AVFormatContext *ctx)
Definition: libcdio.c:145
read_header
static int read_header(FFV1Context *f)
Definition: ffv1dec.c:530
read_probe
static int read_probe(const AVProbeData *pd)
Definition: jvdec.c:55
NULL_IF_CONFIG_SMALL
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition: internal.h:188
read_packet
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
Definition: avio_reading.c:42
vplayer_read_close
static int vplayer_read_close(AVFormatContext *s)
Definition: vplayerdec.c:114