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

Go to the source code of this file.

Data Structures

struct  MPSubContext
 

Macros

#define TSBASE   10000000
 

Functions

static int mpsub_probe (const AVProbeData *p)
 
static int parse_line (const char *line, int64_t *value, int64_t *value2)
 
static int mpsub_read_header (AVFormatContext *s)
 
static int mpsub_read_packet (AVFormatContext *s, AVPacket *pkt)
 
static int mpsub_read_seek (AVFormatContext *s, int stream_index, int64_t min_ts, int64_t ts, int64_t max_ts, int flags)
 
static int mpsub_read_close (AVFormatContext *s)
 

Variables

AVInputFormat ff_mpsub_demuxer
 

Detailed Description

MPlayer subtitles format demuxer

Definition in file mpsubdec.c.

Macro Definition Documentation

◆ TSBASE

#define TSBASE   10000000

Definition at line 30 of file mpsubdec.c.

Function Documentation

◆ mpsub_probe()

static int mpsub_probe ( const AVProbeData p)
static

Definition at line 36 of file mpsubdec.c.

◆ parse_line()

static int parse_line ( const char *  line,
int64_t *  value,
int64_t *  value2 
)
static

Definition at line 56 of file mpsubdec.c.

Referenced by mpsub_read_header().

◆ mpsub_read_header()

static int mpsub_read_header ( AVFormatContext s)
static

Definition at line 89 of file mpsubdec.c.

◆ mpsub_read_packet()

static int mpsub_read_packet ( AVFormatContext s,
AVPacket pkt 
)
static

Definition at line 175 of file mpsubdec.c.

◆ mpsub_read_seek()

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

Definition at line 181 of file mpsubdec.c.

◆ mpsub_read_close()

static int mpsub_read_close ( AVFormatContext s)
static

Definition at line 189 of file mpsubdec.c.

Variable Documentation

◆ ff_mpsub_demuxer

AVInputFormat ff_mpsub_demuxer
Initial value:
= {
.name = "mpsub",
.long_name = NULL_IF_CONFIG_SMALL("MPlayer subtitles"),
.priv_data_size = sizeof(MPSubContext),
.read_seek2 = mpsub_read_seek,
.extensions = "sub",
}

Definition at line 196 of file mpsubdec.c.

mpsub_read_close
static int mpsub_read_close(AVFormatContext *s)
Definition: mpsubdec.c:189
read_close
static av_cold int read_close(AVFormatContext *ctx)
Definition: libcdio.c:145
MPSubContext
Definition: mpsubdec.c:32
mpsub_read_packet
static int mpsub_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: mpsubdec.c:175
mpsub_read_header
static int mpsub_read_header(AVFormatContext *s)
Definition: mpsubdec.c:89
read_header
static int read_header(FFV1Context *f)
Definition: ffv1dec.c:527
read_probe
static int read_probe(const AVProbeData *pd)
Definition: jvdec.c:55
mpsub_read_seek
static int mpsub_read_seek(AVFormatContext *s, int stream_index, int64_t min_ts, int64_t ts, int64_t max_ts, int flags)
Definition: mpsubdec.c:181
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:117
mpsub_probe
static int mpsub_probe(const AVProbeData *p)
Definition: mpsubdec.c:36
read_packet
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
Definition: avio_reading.c:42