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

MPlayer subtitles format demuxer. More...

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

Go to the source code of this file.

Data Structures

struct  MPSubContext
 

Functions

static int mpsub_probe (AVProbeData *p)
 
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.

Function Documentation

static int mpsub_probe ( AVProbeData p)
static

Definition at line 34 of file mpsubdec.c.

static int mpsub_read_header ( AVFormatContext s)
static

Definition at line 54 of file mpsubdec.c.

static int mpsub_read_packet ( AVFormatContext s,
AVPacket pkt 
)
static

Definition at line 113 of file mpsubdec.c.

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 119 of file mpsubdec.c.

static int mpsub_read_close ( AVFormatContext s)
static

Definition at line 127 of file mpsubdec.c.

Variable Documentation

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 134 of file mpsubdec.c.