FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Data Structures | Functions | Variables
mpl2dec.c File Reference

MPL2 subtitles format demuxer. More...

#include "avformat.h"
#include "internal.h"
#include "subtitles.h"

Go to the source code of this file.

Data Structures

struct  MPL2Context
 

Functions

static int mpl2_probe (AVProbeData *p)
 
static int read_ts (char **line, int64_t *pts_start, int *duration)
 
static int mpl2_read_header (AVFormatContext *s)
 
static int mpl2_read_packet (AVFormatContext *s, AVPacket *pkt)
 
static int mpl2_read_seek (AVFormatContext *s, int stream_index, int64_t min_ts, int64_t ts, int64_t max_ts, int flags)
 
static int mpl2_read_close (AVFormatContext *s)
 

Variables

AVInputFormat ff_mpl2_demuxer
 

Detailed Description

MPL2 subtitles format demuxer.

Definition in file mpl2dec.c.

Function Documentation

static int mpl2_probe ( AVProbeData p)
static

Definition at line 34 of file mpl2dec.c.

static int read_ts ( char **  line,
int64_t *  pts_start,
int *  duration 
)
static

Definition at line 53 of file mpl2dec.c.

Referenced by mpl2_read_header().

static int mpl2_read_header ( AVFormatContext s)
static

Definition at line 74 of file mpl2dec.c.

static int mpl2_read_packet ( AVFormatContext s,
AVPacket pkt 
)
static

Definition at line 115 of file mpl2dec.c.

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

Definition at line 121 of file mpl2dec.c.

static int mpl2_read_close ( AVFormatContext s)
static

Definition at line 129 of file mpl2dec.c.

Variable Documentation

AVInputFormat ff_mpl2_demuxer
Initial value:
= {
.name = "mpl2",
.long_name = NULL_IF_CONFIG_SMALL("MPL2 subtitles"),
.priv_data_size = sizeof(MPL2Context),
.read_seek2 = mpl2_read_seek,
.extensions = "txt,mpl2",
}

Definition at line 136 of file mpl2dec.c.