FFmpeg
Classes | Variables
mpsubdec.c File Reference

MPlayer subtitles format demuxer. More...

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

Classes

struct  MPSubContext
 

Variables

AVInputFormat ff_mpsub_demuxer
 

Detailed Description

MPlayer subtitles format demuxer.

Variable Documentation

§ ff_mpsub_demuxer

AVInputFormat ff_mpsub_demuxer
Initial value:
= {
.name = "mpsub",
.long_name = NULL_IF_CONFIG_SMALL("MPlayer subtitles"),
.priv_data_size = sizeof(MPSubContext),
.read_probe = mpsub_probe,
.read_header = mpsub_read_header,
.read_packet = mpsub_read_packet,
.read_seek2 = mpsub_read_seek,
.read_close = mpsub_read_close,
.extensions = "sub",
}
Definition: mpsubdec.c:30
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:186