FFmpeg
Classes | Variables
pjsdec.c File Reference

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

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

Classes

struct  PJSContext
 

Variables

AVInputFormat ff_pjs_demuxer
 

Detailed Description

PJS (Phoenix Japanimation Society) subtitles format demuxer.

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

Variable Documentation

§ ff_pjs_demuxer

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_probe = pjs_probe,
.read_header = pjs_read_header,
.read_packet = pjs_read_packet,
.read_seek2 = pjs_read_seek,
.read_close = pjs_read_close,
.extensions = "pjs",
}
Definition: pjsdec.c:32
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:186