FFmpeg
Loading...
Searching...
No Matches
mpsubdec.c File Reference

MPlayer subtitles format demuxer. More...

#include "avformat.h"
#include "demux.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)
 

Variables

const FFInputFormat ff_mpsub_demuxer
 

Detailed Description

MPlayer subtitles format demuxer.

Definition in file mpsubdec.c.

Macro Definition Documentation

◆ TSBASE

#define TSBASE   10000000

Definition at line 31 of file mpsubdec.c.

Referenced by mpsub_read_header(), and parse_line().

Function Documentation

◆ mpsub_probe()

static int mpsub_probe ( const AVProbeData * p)
static

Definition at line 37 of file mpsubdec.c.

◆ parse_line()

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

Definition at line 57 of file mpsubdec.c.

Referenced by mpsub_read_header().

◆ mpsub_read_header()

static int mpsub_read_header ( AVFormatContext * s)
static

Definition at line 90 of file mpsubdec.c.

Variable Documentation

◆ ff_mpsub_demuxer

const FFInputFormat ff_mpsub_demuxer
Initial value:
= {
.p.name = "mpsub",
.p.long_name = NULL_IF_CONFIG_SMALL("MPlayer subtitles"),
.p.extensions = "sub",
.priv_data_size = sizeof(MPSubContext),
.flags_internal = FF_INFMT_FLAG_INIT_CLEANUP,
.read_seek2 = ff_subtitles_read_seek,
}
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
static int read_probe(const AVProbeData *p)
Definition cdg.c:30
#define FF_INFMT_FLAG_INIT_CLEANUP
For an FFInputFormat with this flag set read_close() needs to be called by the caller upon read_heade...
Definition demux.h:35
static int read_header(FFV1Context *f, RangeCoder *c)
Definition ffv1dec.c:578
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition internal.h:88
static av_cold int read_close(AVFormatContext *ctx)
Definition libcdio.c:143
static int mpsub_read_header(AVFormatContext *s)
Definition mpsubdec.c:90
static int mpsub_probe(const AVProbeData *p)
Definition mpsubdec.c:37
int ff_subtitles_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition subtitles.c:331
int ff_subtitles_read_seek(AVFormatContext *s, int stream_index, int64_t min_ts, int64_t ts, int64_t max_ts, int flags)
Definition subtitles.c:337
int ff_subtitles_read_close(AVFormatContext *s)
Definition subtitles.c:345

Definition at line 174 of file mpsubdec.c.