FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Data Structures | Functions | Variables
assdec.c File Reference
#include <stdint.h>
#include "avformat.h"
#include "internal.h"
#include "subtitles.h"
#include "libavcodec/internal.h"
#include "libavutil/bprint.h"

Go to the source code of this file.

Data Structures

struct  ASSContext
 

Functions

static int ass_probe (AVProbeData *p)
 
static int ass_read_close (AVFormatContext *s)
 
static int read_dialogue (ASSContext *ass, AVBPrint *dst, const uint8_t *p, int64_t *start, int *duration)
 
static int64_t get_line (AVBPrint *buf, FFTextReader *tr)
 
static int ass_read_header (AVFormatContext *s)
 
static int ass_read_packet (AVFormatContext *s, AVPacket *pkt)
 
static int ass_read_seek (AVFormatContext *s, int stream_index, int64_t min_ts, int64_t ts, int64_t max_ts, int flags)
 

Variables

AVInputFormat ff_ass_demuxer
 

Function Documentation

static int ass_probe ( AVProbeData p)
static

Definition at line 36 of file assdec.c.

static int ass_read_close ( AVFormatContext s)
static

Definition at line 50 of file assdec.c.

static int read_dialogue ( ASSContext ass,
AVBPrint *  dst,
const uint8_t p,
int64_t *  start,
int *  duration 
)
static

Definition at line 57 of file assdec.c.

Referenced by ass_read_header().

static int64_t get_line ( AVBPrint *  buf,
FFTextReader tr 
)
static

Definition at line 92 of file assdec.c.

Referenced by ass_read_header().

static int ass_read_header ( AVFormatContext s)
static

Definition at line 108 of file assdec.c.

static int ass_read_packet ( AVFormatContext s,
AVPacket pkt 
)
static

Definition at line 164 of file assdec.c.

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

Definition at line 170 of file assdec.c.

Variable Documentation

AVInputFormat ff_ass_demuxer
Initial value:
= {
.name = "ass",
.long_name = NULL_IF_CONFIG_SMALL("SSA (SubStation Alpha) subtitle"),
.priv_data_size = sizeof(ASSContext),
.read_seek2 = ass_read_seek,
}

Definition at line 178 of file assdec.c.