FFmpeg
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 (const 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

◆ ass_probe()

static int ass_probe ( const AVProbeData p)
static

Definition at line 36 of file assdec.c.

◆ ass_read_close()

static int ass_read_close ( AVFormatContext s)
static

Definition at line 53 of file assdec.c.

Referenced by ass_read_header().

◆ read_dialogue()

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

Definition at line 60 of file assdec.c.

Referenced by ass_read_header().

◆ get_line()

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

Definition at line 95 of file assdec.c.

Referenced by ass_read_header().

◆ ass_read_header()

static int ass_read_header ( AVFormatContext s)
static

Definition at line 111 of file assdec.c.

◆ ass_read_packet()

static int ass_read_packet ( AVFormatContext s,
AVPacket pkt 
)
static

Definition at line 171 of file assdec.c.

◆ ass_read_seek()

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 177 of file assdec.c.

Variable Documentation

◆ ff_ass_demuxer

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 185 of file assdec.c.

ass_probe
static int ass_probe(const AVProbeData *p)
Definition: assdec.c:36
ass_read_close
static int ass_read_close(AVFormatContext *s)
Definition: assdec.c:53
ass_read_header
static int ass_read_header(AVFormatContext *s)
Definition: assdec.c:111
read_close
static av_cold int read_close(AVFormatContext *ctx)
Definition: libcdio.c:145
ass_read_seek
static int ass_read_seek(AVFormatContext *s, int stream_index, int64_t min_ts, int64_t ts, int64_t max_ts, int flags)
Definition: assdec.c:177
ass_read_packet
static int ass_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: assdec.c:171
read_header
static int read_header(FFV1Context *f)
Definition: ffv1dec.c:530
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:188
read_packet
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
Definition: avio_reading.c:42
ASSContext
Definition: assdec.c:31