FFmpeg
Classes | 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"

Classes

struct  STLContext
 

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

Variable Documentation

§ ff_stl_demuxer

AVInputFormat ff_stl_demuxer
Initial value:
= {
.name = "stl",
.long_name = NULL_IF_CONFIG_SMALL("Spruce subtitle format"),
.priv_data_size = sizeof(STLContext),
.read_probe = stl_probe,
.read_header = stl_read_header,
.read_packet = stl_read_packet,
.read_seek2 = stl_read_seek,
.read_close = stl_read_close,
.extensions = "stl",
}
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:186
Definition: stldec.c:33