FFmpeg
Classes | Variables
vplayerdec.c File Reference

VPlayer subtitles format demuxer. More...

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

Classes

struct  VPlayerContext
 

Variables

AVInputFormat ff_vplayer_demuxer
 

Detailed Description

VPlayer subtitles format demuxer.

Variable Documentation

§ ff_vplayer_demuxer

AVInputFormat ff_vplayer_demuxer
Initial value:
= {
.name = "vplayer",
.long_name = NULL_IF_CONFIG_SMALL("VPlayer subtitles"),
.priv_data_size = sizeof(VPlayerContext),
.read_probe = vplayer_probe,
.read_header = vplayer_read_header,
.read_packet = vplayer_read_packet,
.read_seek2 = vplayer_read_seek,
.read_close = vplayer_read_close,
.extensions = "txt",
}
Definition: vplayerdec.c:30
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:186