#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 (AVProbeData *p) |
static int | 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_close (AVFormatContext *s) |
Variables | |
AVInputFormat | ff_realtext_demuxer |
Definition in file realtextdec.c.
static int read_ts | ( | const char * | s | ) | [static] |
Definition at line 47 of file realtextdec.c.
static int realtext_probe | ( | AVProbeData * | p | ) | [static] |
Definition at line 38 of file realtextdec.c.
static int realtext_read_close | ( | AVFormatContext * | s | ) | [static] |
Definition at line 128 of file realtextdec.c.
static int realtext_read_header | ( | AVFormatContext * | s | ) | [static] |
Definition at line 59 of file realtextdec.c.
static int realtext_read_packet | ( | AVFormatContext * | s, | |
AVPacket * | pkt | |||
) | [static] |
Definition at line 122 of file realtextdec.c.
Initial value:
{ .name = "realtext", .long_name = NULL_IF_CONFIG_SMALL("RealText subtitle format"), .priv_data_size = sizeof(RealTextContext), .read_probe = realtext_probe, .read_header = realtext_read_header, .read_packet = realtext_read_packet, .read_close = realtext_read_close, .flags = AVFMT_GENERIC_INDEX, .extensions = "rt", }
Definition at line 135 of file realtextdec.c.