#include "avformat.h"
#include "internal.h"
#include "libavutil/intreadwrite.h"
Go to the source code of this file.
Functions | |
static int | srt_probe (AVProbeData *p) |
static int | srt_read_header (AVFormatContext *s) |
static int64_t | get_pts (const char *buf, int *duration) |
static int | is_eol (char c) |
static int | srt_read_packet (AVFormatContext *s, AVPacket *pkt) |
Variables | |
AVInputFormat | ff_srt_demuxer |
static int64_t get_pts | ( | const char * | buf, | |
int * | duration | |||
) | [static] |
static int srt_probe | ( | AVProbeData * | p | ) | [static] |
static int srt_read_header | ( | AVFormatContext * | s | ) | [static] |
static int srt_read_packet | ( | AVFormatContext * | s, | |
AVPacket * | pkt | |||
) | [static] |
Initial value:
{ .name = "srt", .long_name = NULL_IF_CONFIG_SMALL("SubRip subtitle"), .read_probe = srt_probe, .read_header = srt_read_header, .read_packet = srt_read_packet, .flags = AVFMT_GENERIC_INDEX, }