FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Data Structures | Macros | Functions | Variables
aqtitledec.c File Reference

AQTitle subtitles format demuxer. More...

#include "avformat.h"
#include "internal.h"
#include "subtitles.h"
#include "libavutil/opt.h"

Go to the source code of this file.

Data Structures

struct  AQTitleContext
 

Macros

#define OFFSET(x)   offsetof(AQTitleContext, x)
 
#define SD   AV_OPT_FLAG_SUBTITLE_PARAM|AV_OPT_FLAG_DECODING_PARAM
 

Functions

static int aqt_probe (AVProbeData *p)
 
static int aqt_read_header (AVFormatContext *s)
 
static int aqt_read_packet (AVFormatContext *s, AVPacket *pkt)
 
static int aqt_read_seek (AVFormatContext *s, int stream_index, int64_t min_ts, int64_t ts, int64_t max_ts, int flags)
 
static int aqt_read_close (AVFormatContext *s)
 

Variables

static const AVOption aqt_options []
 
static const AVClass aqt_class
 
AVInputFormat ff_aqtitle_demuxer
 

Detailed Description

AQTitle subtitles format demuxer.

See Also
http://web.archive.org/web/20070210095721/http://www.volny.cz/aberka/czech/aqt.html
https://trac.annodex.net/wiki/AQTitle

Definition in file aqtitledec.c.

Macro Definition Documentation

#define OFFSET (   x)    offsetof(AQTitleContext, x)

Definition at line 123 of file aqtitledec.c.

Definition at line 124 of file aqtitledec.c.

Function Documentation

static int aqt_probe ( AVProbeData p)
static

Definition at line 40 of file aqtitledec.c.

static int aqt_read_header ( AVFormatContext s)
static

Definition at line 50 of file aqtitledec.c.

static int aqt_read_packet ( AVFormatContext s,
AVPacket pkt 
)
static

Definition at line 102 of file aqtitledec.c.

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

Definition at line 108 of file aqtitledec.c.

static int aqt_read_close ( AVFormatContext s)
static

Definition at line 116 of file aqtitledec.c.

Variable Documentation

const AVOption aqt_options[]
static
Initial value:
= {
{ "subfps", "set the movie frame rate", OFFSET(frame_rate), AV_OPT_TYPE_RATIONAL, {.dbl=25}, 0, INT_MAX, SD },
{ NULL }
}
#define NULL
Definition: coverity.c:32
#define OFFSET(x)
Definition: aqtitledec.c:123
#define SD
Definition: aqtitledec.c:124

Definition at line 125 of file aqtitledec.c.

const AVClass aqt_class
static
Initial value:
= {
.class_name = "aqtdec",
.item_name = av_default_item_name,
.option = aqt_options,
}
#define LIBAVUTIL_VERSION_INT
Definition: version.h:85
const char * av_default_item_name(void *ptr)
Return the context name.
Definition: log.c:191
static const AVOption aqt_options[]
Definition: aqtitledec.c:125

Definition at line 130 of file aqtitledec.c.

AVInputFormat ff_aqtitle_demuxer
Initial value:
= {
.name = "aqtitle",
.long_name = NULL_IF_CONFIG_SMALL("AQTitle subtitles"),
.priv_data_size = sizeof(AQTitleContext),
.read_seek2 = aqt_read_seek,
.extensions = "aqt",
.priv_class = &aqt_class,
}
static int aqt_read_header(AVFormatContext *s)
Definition: aqtitledec.c:50
static int aqt_read_close(AVFormatContext *s)
Definition: aqtitledec.c:116
static av_cold int read_close(AVFormatContext *ctx)
Definition: libcdio.c:145
static int aqt_probe(AVProbeData *p)
Definition: aqtitledec.c:40
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:186
static int read_probe(AVProbeData *pd)
Definition: jvdec.c:55
static int read_header(FFV1Context *f)
Definition: ffv1dec.c:530
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
Definition: avio_reading.c:42
static const AVClass aqt_class
Definition: aqtitledec.c:130
static int aqt_read_seek(AVFormatContext *s, int stream_index, int64_t min_ts, int64_t ts, int64_t max_ts, int flags)
Definition: aqtitledec.c:108
static int aqt_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: aqtitledec.c:102

Definition at line 137 of file aqtitledec.c.