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

Go to the source code of this file.

Data Structures

struct  SRTContext
 
struct  event_info
 

Functions

static int srt_probe (const AVProbeData *p)
 
static int get_event_info (const char *line, struct event_info *ei)
 
static int add_event (FFDemuxSubtitlesQueue *q, AVBPrint *buf, char *line_cache, const struct event_info *ei, int append_cache)
 
static int srt_read_header (AVFormatContext *s)
 
static int srt_read_packet (AVFormatContext *s, AVPacket *pkt)
 
static int srt_read_seek (AVFormatContext *s, int stream_index, int64_t min_ts, int64_t ts, int64_t max_ts, int flags)
 
static int srt_read_close (AVFormatContext *s)
 

Variables

AVInputFormat ff_srt_demuxer
 

Function Documentation

◆ srt_probe()

static int srt_probe ( const AVProbeData p)
static

Definition at line 33 of file srtdec.c.

◆ get_event_info()

static int get_event_info ( const char *  line,
struct event_info ei 
)
static

Definition at line 72 of file srtdec.c.

Referenced by srt_read_header().

◆ add_event()

static int add_event ( FFDemuxSubtitlesQueue q,
AVBPrint *  buf,
char *  line_cache,
const struct event_info ei,
int  append_cache 
)
static

Definition at line 94 of file srtdec.c.

Referenced by srt_read_header().

◆ srt_read_header()

static int srt_read_header ( AVFormatContext s)
static

Definition at line 126 of file srtdec.c.

◆ srt_read_packet()

static int srt_read_packet ( AVFormatContext s,
AVPacket pkt 
)
static

Definition at line 216 of file srtdec.c.

◆ srt_read_seek()

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

Definition at line 222 of file srtdec.c.

◆ srt_read_close()

static int srt_read_close ( AVFormatContext s)
static

Definition at line 230 of file srtdec.c.

Variable Documentation

◆ ff_srt_demuxer

AVInputFormat ff_srt_demuxer
Initial value:
= {
.name = "srt",
.long_name = NULL_IF_CONFIG_SMALL("SubRip subtitle"),
.priv_data_size = sizeof(SRTContext),
.read_seek2 = srt_read_seek,
}

Definition at line 237 of file srtdec.c.

SRTContext
Definition: srtenc.c:32
srt_read_close
static int srt_read_close(AVFormatContext *s)
Definition: srtdec.c:230
read_close
static av_cold int read_close(AVFormatContext *ctx)
Definition: libcdio.c:145
srt_probe
static int srt_probe(const AVProbeData *p)
Definition: srtdec.c:33
read_header
static int read_header(FFV1Context *f)
Definition: ffv1dec.c:530
read_probe
static int read_probe(const AVProbeData *pd)
Definition: jvdec.c:55
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:188
read_packet
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
Definition: avio_reading.c:42
srt_read_header
static int srt_read_header(AVFormatContext *s)
Definition: srtdec.c:126
srt_read_packet
static int srt_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: srtdec.c:216
srt_read_seek
static int srt_read_seek(AVFormatContext *s, int stream_index, int64_t min_ts, int64_t ts, int64_t max_ts, int flags)
Definition: srtdec.c:222