FFmpeg
Classes | Macros | Variables
jacosubdec.c File Reference

JACOsub subtitle demuxer. More...

#include "avformat.h"
#include "internal.h"
#include "subtitles.h"
#include "libavcodec/internal.h"
#include "libavcodec/jacosub.h"
#include "libavutil/avstring.h"
#include "libavutil/bprint.h"
#include "libavutil/intreadwrite.h"

Classes

struct  JACOsubContext
 

Macros

#define SSEP   "%*1[.:]"
 

Variables

AVInputFormat ff_jacosub_demuxer
 

Detailed Description

JACOsub subtitle demuxer.

See also
http://unicorn.us.com/jacosub/jscripts.html
Todo:
Support P[ALETTE] directive.

Variable Documentation

§ ff_jacosub_demuxer

AVInputFormat ff_jacosub_demuxer
Initial value:
= {
.name = "jacosub",
.long_name = NULL_IF_CONFIG_SMALL("JACOsub subtitle format"),
.priv_data_size = sizeof(JACOsubContext),
.read_probe = jacosub_probe,
.read_header = jacosub_read_header,
.read_packet = jacosub_read_packet,
.read_seek2 = jacosub_read_seek,
.read_close = jacosub_read_close,
}
Definition: jacosubdec.c:37
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:186