FFmpeg
Classes | Variables
samidec.c File Reference

SAMI subtitle demuxer. More...

#include "avformat.h"
#include "internal.h"
#include "subtitles.h"
#include "libavcodec/internal.h"
#include "libavutil/avstring.h"
#include "libavutil/bprint.h"
#include "libavutil/intreadwrite.h"

Classes

struct  SAMIContext
 

Variables

AVInputFormat ff_sami_demuxer
 

Detailed Description

SAMI subtitle demuxer.

See also
http://msdn.microsoft.com/en-us/library/ms971327.aspx

Variable Documentation

§ ff_sami_demuxer

AVInputFormat ff_sami_demuxer
Initial value:
= {
.name = "sami",
.long_name = NULL_IF_CONFIG_SMALL("SAMI subtitle format"),
.priv_data_size = sizeof(SAMIContext),
.read_probe = sami_probe,
.read_header = sami_read_header,
.read_packet = sami_read_packet,
.read_seek2 = sami_read_seek,
.read_close = sami_read_close,
.extensions = "smi,sami",
}
Definition: samidec.c:32
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:186