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

PJS (Phoenix Japanimation Society) subtitles format demuxer. More...

#include "avformat.h"
#include "internal.h"
#include "subtitles.h"

Go to the source code of this file.

Data Structures

struct  PJSContext
 

Functions

static int pjs_probe (AVProbeData *p)
 
static int64_t read_ts (char **line, int *duration)
 
static int pjs_read_header (AVFormatContext *s)
 
static int pjs_read_packet (AVFormatContext *s, AVPacket *pkt)
 
static int pjs_read_seek (AVFormatContext *s, int stream_index, int64_t min_ts, int64_t ts, int64_t max_ts, int flags)
 
static int pjs_read_close (AVFormatContext *s)
 

Variables

AVInputFormat ff_pjs_demuxer
 

Detailed Description

PJS (Phoenix Japanimation Society) subtitles format demuxer.

See Also
http://subs.com.ru/page.php?al=pjs

Definition in file pjsdec.c.

Function Documentation

static int pjs_probe ( AVProbeData p)
static

Definition at line 36 of file pjsdec.c.

static int64_t read_ts ( char **  line,
int *  duration 
)
static

Definition at line 51 of file pjsdec.c.

Referenced by pjs_read_header().

static int pjs_read_header ( AVFormatContext s)
static

Definition at line 64 of file pjsdec.c.

static int pjs_read_packet ( AVFormatContext s,
AVPacket pkt 
)
static

Definition at line 107 of file pjsdec.c.

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

Definition at line 113 of file pjsdec.c.

static int pjs_read_close ( AVFormatContext s)
static

Definition at line 121 of file pjsdec.c.

Variable Documentation

AVInputFormat ff_pjs_demuxer
Initial value:
= {
.name = "pjs",
.long_name = NULL_IF_CONFIG_SMALL("PJS (Phoenix Japanimation Society) subtitles"),
.priv_data_size = sizeof(PJSContext),
.read_seek2 = pjs_read_seek,
.extensions = "pjs",
}

Definition at line 128 of file pjsdec.c.