OpenFFmpeg
Classes | Variables
mpl2dec.c File Reference

MPL2 subtitles format demuxer. More...

#include "libavutil/intreadwrite.h"
#include "avformat.h"
#include "internal.h"
#include "subtitles.h"

Classes

struct  MPL2Context
 

Variables

AVInputFormat ff_mpl2_demuxer
 

Detailed Description

MPL2 subtitles format demuxer.

Variable Documentation

§ ff_mpl2_demuxer

AVInputFormat ff_mpl2_demuxer
Initial value:
= {
.name = "mpl2",
.long_name = NULL_IF_CONFIG_SMALL("MPL2 subtitles"),
.priv_data_size = sizeof(MPL2Context),
.read_probe = mpl2_probe,
.read_header = mpl2_read_header,
.read_packet = mpl2_read_packet,
.read_seek2 = mpl2_read_seek,
.read_close = mpl2_read_close,
.extensions = "txt,mpl2",
}
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:186
Definition: mpl2dec.c:32