libavformat/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"
Include dependency graph for libavformat/jacosubdec.c:

Go to the source code of this file.

Data Structures

struct  JACOsubContext
 

Macros

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

Functions

static int timed_line (const char *ptr)
 
static int jacosub_probe (AVProbeData *p)
 
static int get_jss_cmd (char k)
 
static int jacosub_read_close (AVFormatContext *s)
 
static const char * read_ts (JACOsubContext *jacosub, const char *buf, int64_t *start, int *duration)
 
static int get_shift (int timeres, const char *buf)
 
static int jacosub_read_header (AVFormatContext *s)
 
static int jacosub_read_packet (AVFormatContext *s, AVPacket *pkt)
 
static int jacosub_read_seek (AVFormatContext *s, int stream_index, int64_t min_ts, int64_t ts, int64_t max_ts, int flags)
 

Variables

static const char *const cmds []
 
AVInputFormat ff_jacosub_demuxer
 

Detailed Description

JACOsub subtitle demuxer.

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

Definition in file libavformat/jacosubdec.c.

Macro Definition Documentation

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

Referenced by get_shift().

Function Documentation

static int get_jss_cmd ( char  k)
static

Definition at line 84 of file libavformat/jacosubdec.c.

Referenced by jacosub_read_header().

static int get_shift ( int  timeres,
const char *  buf 
)
static

Definition at line 133 of file libavformat/jacosubdec.c.

Referenced by jacosub_read_header().

static int jacosub_probe ( AVProbeData p)
static

Definition at line 50 of file libavformat/jacosubdec.c.

static int jacosub_read_close ( AVFormatContext s)
static

Definition at line 95 of file libavformat/jacosubdec.c.

static int jacosub_read_header ( AVFormatContext s)
static

Definition at line 155 of file libavformat/jacosubdec.c.

static int jacosub_read_packet ( AVFormatContext s,
AVPacket pkt 
)
static

Definition at line 247 of file libavformat/jacosubdec.c.

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

Definition at line 253 of file libavformat/jacosubdec.c.

static const char* read_ts ( JACOsubContext jacosub,
const char *  buf,
int64_t *  start,
int *  duration 
)
static

Definition at line 102 of file libavformat/jacosubdec.c.

Referenced by jacosub_read_header().

static int timed_line ( const char *  ptr)
static

Definition at line 43 of file libavformat/jacosubdec.c.

Referenced by jacosub_probe(), and jacosub_read_header().

Variable Documentation

const char* const cmds[]
static
Initial value:
= {
"CLOCKPAUSE",
"DIRECTIVE",
"FONT",
"HRES",
"INCLUDE",
"PALETTE",
"QUANTIZE",
"RAMP",
"SHIFT",
"TIMERES",
}

Definition at line 71 of file libavformat/jacosubdec.c.

Referenced by get_jss_cmd(), and jacosub_read_header().

AVInputFormat ff_jacosub_demuxer
Initial value:
= {
.name = "jacosub",
.long_name = NULL_IF_CONFIG_SMALL("JACOsub subtitle format"),
.priv_data_size = sizeof(JACOsubContext),
.read_seek2 = jacosub_read_seek,
}
static int jacosub_read_header(AVFormatContext *s)
static av_cold int read_close(AVFormatContext *ctx)
Definition: libcdio.c:145
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
static int jacosub_read_close(AVFormatContext *s)
static int read_probe(AVProbeData *pd)
static int jacosub_read_seek(AVFormatContext *s, int stream_index, int64_t min_ts, int64_t ts, int64_t max_ts, int flags)
static int read_header(FFV1Context *f)
Definition: ffv1dec.c:517
static int jacosub_read_packet(AVFormatContext *s, AVPacket *pkt)
static int read_packet(AVFormatContext *ctx, AVPacket *pkt)
Definition: libcdio.c:114
static int jacosub_probe(AVProbeData *p)

Definition at line 261 of file libavformat/jacosubdec.c.