FFmpeg
Data Structures | Functions | Variables
mpl2dec.c File Reference
#include "libavutil/intreadwrite.h"
#include "avformat.h"
#include "demux.h"
#include "internal.h"
#include "subtitles.h"

Go to the source code of this file.

Data Structures

struct  MPL2Context
 

Functions

static int mpl2_probe (const AVProbeData *p)
 
static int read_ts (char **line, int64_t *pts_start, int64_t *duration)
 
static int mpl2_read_header (AVFormatContext *s)
 

Variables

const FFInputFormat ff_mpl2_demuxer
 

Detailed Description

MPL2 subtitles format demuxer

Definition in file mpl2dec.c.

Function Documentation

◆ mpl2_probe()

static int mpl2_probe ( const AVProbeData p)
static

Definition at line 37 of file mpl2dec.c.

◆ read_ts()

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

Definition at line 59 of file mpl2dec.c.

Referenced by mpl2_read_header().

◆ mpl2_read_header()

static int mpl2_read_header ( AVFormatContext s)
static

Definition at line 83 of file mpl2dec.c.

Variable Documentation

◆ ff_mpl2_demuxer

const FFInputFormat ff_mpl2_demuxer
Initial value:
= {
.p.name = "mpl2",
.p.long_name = NULL_IF_CONFIG_SMALL("MPL2 subtitles"),
.p.extensions = "txt,mpl2",
.priv_data_size = sizeof(MPL2Context),
.flags_internal = FF_INFMT_FLAG_INIT_CLEANUP,
.read_seek2 = ff_subtitles_read_seek,
}

Definition at line 126 of file mpl2dec.c.

ff_subtitles_read_close
int ff_subtitles_read_close(AVFormatContext *s)
Definition: subtitles.c:345
mpl2_probe
static int mpl2_probe(const AVProbeData *p)
Definition: mpl2dec.c:37
mpl2_read_header
static int mpl2_read_header(AVFormatContext *s)
Definition: mpl2dec.c:83
read_close
static av_cold int read_close(AVFormatContext *ctx)
Definition: libcdio.c:143
ff_subtitles_read_packet
int ff_subtitles_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: subtitles.c:331
read_packet
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
Definition: avio_read_callback.c:42
FF_INFMT_FLAG_INIT_CLEANUP
#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
read_header
static int read_header(FFV1Context *f)
Definition: ffv1dec.c:550
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:94
ff_subtitles_read_seek
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
read_probe
static int read_probe(const AVProbeData *p)
Definition: cdg.c:30
MPL2Context
Definition: mpl2dec.c:33