FFmpeg
Data Structures | Functions | Variables
pjsdec.c File Reference
#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 (const AVProbeData *p)
 
static int64_t read_ts (char **line, int *duration)
 
static int pjs_read_header (AVFormatContext *s)
 

Variables

const 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

◆ pjs_probe()

static int pjs_probe ( const AVProbeData p)
static

Definition at line 36 of file pjsdec.c.

◆ read_ts()

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

Definition at line 51 of file pjsdec.c.

Referenced by pjs_read_header().

◆ pjs_read_header()

static int pjs_read_header ( AVFormatContext s)
static

Definition at line 66 of file pjsdec.c.

Variable Documentation

◆ ff_pjs_demuxer

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

Definition at line 108 of file pjsdec.c.

ff_subtitles_read_close
int ff_subtitles_read_close(AVFormatContext *s)
Definition: subtitles.c:329
FF_FMT_INIT_CLEANUP
#define FF_FMT_INIT_CLEANUP
For an AVInputFormat with this flag set read_close() needs to be called by the caller upon read_heade...
Definition: internal.h:49
pjs_read_header
static int pjs_read_header(AVFormatContext *s)
Definition: pjsdec.c:66
read_close
static av_cold int read_close(AVFormatContext *ctx)
Definition: libcdio.c:141
PJSContext
Definition: pjsdec.c:32
ff_subtitles_read_packet
int ff_subtitles_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: subtitles.c:315
read_header
static int read_header(FFV1Context *f)
Definition: ffv1dec.c:527
read_probe
static int read_probe(const AVProbeData *pd)
Definition: jvdec.c:55
NULL_IF_CONFIG_SMALL
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition: internal.h:117
ff_subtitles_read_seek
int ff_subtitles_read_seek(AVFormatContext *s, int stream_index, int64_t min_ts, int64_t ts, int64_t max_ts, int flags)
Definition: subtitles.c:321
read_packet
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
Definition: avio_reading.c:42
pjs_probe
static int pjs_probe(const AVProbeData *p)
Definition: pjsdec.c:36