FFmpeg
Classes | Variables
samidec.c File Reference

SAMI subtitle decoder. More...

#include "ass.h"
#include "libavutil/avstring.h"
#include "libavutil/bprint.h"
#include "htmlsubtitles.h"

Classes

struct  SAMIContext
 

Variables

AVCodec ff_sami_decoder
 

Detailed Description

SAMI subtitle decoder.

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

Variable Documentation

§ ff_sami_decoder

AVCodec ff_sami_decoder
Initial value:
= {
.name = "sami",
.long_name = NULL_IF_CONFIG_SMALL("SAMI subtitle"),
.type = AVMEDIA_TYPE_SUBTITLE,
.id = AV_CODEC_ID_SAMI,
.priv_data_size = sizeof(SAMIContext),
.init = sami_init,
.close = sami_close,
.decode = sami_decode_frame,
.flush = sami_flush,
}
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