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

Go to the source code of this file.

Data Structures

struct  RealTextContext
 

Functions

static int realtext_probe (const AVProbeData *p)
 
static int64_t read_ts (const char *s)
 
static int realtext_read_header (AVFormatContext *s)
 
static int realtext_read_packet (AVFormatContext *s, AVPacket *pkt)
 
static int realtext_read_seek (AVFormatContext *s, int stream_index, int64_t min_ts, int64_t ts, int64_t max_ts, int flags)
 
static int realtext_read_close (AVFormatContext *s)
 

Variables

AVInputFormat ff_realtext_demuxer
 

Detailed Description

RealText subtitle demuxer

See also
http://service.real.com/help/library/guides/ProductionGuide/prodguide/htmfiles/realtext.htm

Definition in file realtextdec.c.

Function Documentation

◆ realtext_probe()

static int realtext_probe ( const AVProbeData p)
static

Definition at line 38 of file realtextdec.c.

◆ read_ts()

static int64_t read_ts ( const char *  s)
static

Definition at line 48 of file realtextdec.c.

Referenced by realtext_read_header().

◆ realtext_read_header()

static int realtext_read_header ( AVFormatContext s)
static

Definition at line 60 of file realtextdec.c.

◆ realtext_read_packet()

static int realtext_read_packet ( AVFormatContext s,
AVPacket pkt 
)
static

Definition at line 132 of file realtextdec.c.

◆ realtext_read_seek()

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

Definition at line 138 of file realtextdec.c.

◆ realtext_read_close()

static int realtext_read_close ( AVFormatContext s)
static

Definition at line 146 of file realtextdec.c.

Variable Documentation

◆ ff_realtext_demuxer

AVInputFormat ff_realtext_demuxer
Initial value:
= {
.name = "realtext",
.long_name = NULL_IF_CONFIG_SMALL("RealText subtitle format"),
.priv_data_size = sizeof(RealTextContext),
.read_seek2 = realtext_read_seek,
.extensions = "rt",
}

Definition at line 153 of file realtextdec.c.

realtext_probe
static int realtext_probe(const AVProbeData *p)
Definition: realtextdec.c:38
read_close
static av_cold int read_close(AVFormatContext *ctx)
Definition: libcdio.c:145
realtext_read_close
static int realtext_read_close(AVFormatContext *s)
Definition: realtextdec.c:146
realtext_read_packet
static int realtext_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: realtextdec.c:132
RealTextContext
Definition: realtextdec.c:34
read_header
static int read_header(FFV1Context *f)
Definition: ffv1dec.c:527
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:117
realtext_read_seek
static int realtext_read_seek(AVFormatContext *s, int stream_index, int64_t min_ts, int64_t ts, int64_t max_ts, int flags)
Definition: realtextdec.c:138
read_packet
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
Definition: avio_reading.c:42
realtext_read_header
static int realtext_read_header(AVFormatContext *s)
Definition: realtextdec.c:60