FFmpeg
Classes | Macros | Variables
aqtitledec.c File Reference

AQTitle subtitles format demuxer. More...

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

Classes

struct  AQTitleContext
 

Macros

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

Variables

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

Variable Documentation

§ ff_aqtitle_demuxer

AVInputFormat ff_aqtitle_demuxer
Initial value:
= {
.name = "aqtitle",
.long_name = NULL_IF_CONFIG_SMALL("AQTitle subtitles"),
.priv_data_size = sizeof(AQTitleContext),
.read_probe = aqt_probe,
.read_header = aqt_read_header,
.read_packet = aqt_read_packet,
.read_seek2 = aqt_read_seek,
.read_close = aqt_read_close,
.extensions = "aqt",
.priv_class = &aqt_class,
}
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:186
Definition: aqtitledec.c:34