#include "libavutil/mathematics.h"
#include "avformat.h"
#include "internal.h"
Go to the source code of this file.
Data Structures | |
struct | ASSContext |
Defines | |
#define | MAX_LINESIZE 2000 |
Functions | |
static int | probe (AVProbeData *p) |
static int | read_close (AVFormatContext *s) |
static int64_t | get_pts (const uint8_t *p) |
static int | event_cmp (uint8_t **a, uint8_t **b) |
static int | read_header (AVFormatContext *s) |
static int | read_packet (AVFormatContext *s, AVPacket *pkt) |
static int | read_seek2 (AVFormatContext *s, int stream_index, int64_t min_ts, int64_t ts, int64_t max_ts, int flags) |
Variables | |
AVInputFormat | ff_ass_demuxer |
#define MAX_LINESIZE 2000 |
static int64_t get_pts | ( | const uint8_t * | p | ) | [static] |
Definition at line 56 of file assdec.c.
Referenced by event_cmp(), microdvd_read_packet(), mpegps_read_pes_header(), read_header(), read_packet(), read_seek2(), and srt_read_packet().
static int probe | ( | AVProbeData * | p | ) | [static] |
static int read_close | ( | AVFormatContext * | s | ) | [static] |
static int read_header | ( | AVFormatContext * | s | ) | [static] |
static int read_packet | ( | AVFormatContext * | s, | |
AVPacket * | pkt | |||
) | [static] |
static int read_seek2 | ( | AVFormatContext * | s, | |
int | stream_index, | |||
int64_t | min_ts, | |||
int64_t | ts, | |||
int64_t | max_ts, | |||
int | flags | |||
) | [static] |
Initial value:
{ .name = "ass", .long_name = NULL_IF_CONFIG_SMALL("Advanced SubStation Alpha subtitle format"), .priv_data_size = sizeof(ASSContext), .read_probe = probe, .read_header = read_header, .read_packet = read_packet, .read_close = read_close, .read_seek2 = read_seek2, }