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

STL subtitles format demuxer. More...

#include "avformat.h"
#include "internal.h"
#include "subtitles.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/avstring.h"

Go to the source code of this file.

Data Structures

struct  STLContext
 

Functions

static int stl_probe (AVProbeData *p)
 
static int64_t get_pts (char **buf, int *duration)
 
static int stl_read_header (AVFormatContext *s)
 
static int stl_read_packet (AVFormatContext *s, AVPacket *pkt)
 
static int stl_read_seek (AVFormatContext *s, int stream_index, int64_t min_ts, int64_t ts, int64_t max_ts, int flags)
 
static int stl_read_close (AVFormatContext *s)
 

Variables

AVInputFormat ff_stl_demuxer
 

Detailed Description

STL subtitles format demuxer.

See Also
https://documentation.apple.com/en/dvdstudiopro/usermanual/index.html#chapter=19%26section=13%26tasks=true

Definition in file stldec.c.

Function Documentation

static int stl_probe ( AVProbeData p)
static

Definition at line 37 of file stldec.c.

static int64_t get_pts ( char **  buf,
int *  duration 
)
static

Definition at line 54 of file stldec.c.

Referenced by stl_read_header().

static int stl_read_header ( AVFormatContext s)
static

Definition at line 72 of file stldec.c.

static int stl_read_packet ( AVFormatContext s,
AVPacket pkt 
)
static

Definition at line 110 of file stldec.c.

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

Definition at line 116 of file stldec.c.

static int stl_read_close ( AVFormatContext s)
static

Definition at line 124 of file stldec.c.

Variable Documentation

AVInputFormat ff_stl_demuxer
Initial value:
= {
.name = "stl",
.long_name = NULL_IF_CONFIG_SMALL("Spruce subtitle format"),
.priv_data_size = sizeof(STLContext),
.read_seek2 = stl_read_seek,
.extensions = "stl",
}
static av_cold int read_close(AVFormatContext *ctx)
Definition: libcdio.c:145
static int stl_read_seek(AVFormatContext *s, int stream_index, int64_t min_ts, int64_t ts, int64_t max_ts, int flags)
Definition: stldec.c:116
static int stl_probe(AVProbeData *p)
Definition: stldec.c:37
static int stl_read_close(AVFormatContext *s)
Definition: stldec.c:124
static int stl_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: stldec.c:110
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:176
static int read_probe(AVProbeData *pd)
Definition: jvdec.c:55
static int read_header(FFV1Context *f)
Definition: ffv1dec.c:638
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
Definition: avio_reading.c:42
static int stl_read_header(AVFormatContext *s)
Definition: stldec.c:72

Definition at line 131 of file stldec.c.