FFmpeg
Loading...
Searching...
No Matches
samidec.c File Reference

SAMI subtitle decoder. More...

#include "ass.h"
#include "libavutil/attributes.h"
#include "libavutil/avstring.h"
#include "libavutil/bprint.h"
#include "libavutil/mem.h"
#include "codec_internal.h"
#include "htmlsubtitles.h"

Go to the source code of this file.

Data Structures

struct  SAMIContext
 

Functions

static int sami_paragraph_to_ass (AVCodecContext *avctx, const char *src)
 
static int sami_decode_frame (AVCodecContext *avctx, AVSubtitle *sub, int *got_sub_ptr, const AVPacket *avpkt)
 
static av_cold int sami_init (AVCodecContext *avctx)
 
static av_cold int sami_close (AVCodecContext *avctx)
 
static av_cold void sami_flush (AVCodecContext *avctx)
 

Variables

const FFCodec ff_sami_decoder
 

Detailed Description

SAMI subtitle decoder.

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

Definition in file samidec.c.

Function Documentation

◆ sami_paragraph_to_ass()

static int sami_paragraph_to_ass ( AVCodecContext * avctx,
const char * src )
static

Definition at line 44 of file samidec.c.

Referenced by sami_decode_frame().

◆ sami_decode_frame()

static int sami_decode_frame ( AVCodecContext * avctx,
AVSubtitle * sub,
int * got_sub_ptr,
const AVPacket * avpkt )
static

Definition at line 137 of file samidec.c.

◆ sami_init()

static av_cold int sami_init ( AVCodecContext * avctx)
static

Definition at line 156 of file samidec.c.

◆ sami_close()

static av_cold int sami_close ( AVCodecContext * avctx)
static

Definition at line 167 of file samidec.c.

◆ sami_flush()

static av_cold void sami_flush ( AVCodecContext * avctx)
static

Definition at line 178 of file samidec.c.

Variable Documentation

◆ ff_sami_decoder

const FFCodec ff_sami_decoder
Initial value:
= {
.p.name = "sami",
CODEC_LONG_NAME("SAMI subtitle"),
.priv_data_size = sizeof(SAMIContext),
.flush = sami_flush,
}
static av_cold void close(AVCodecParserContext *s)
Definition apv_parser.c:197
#define CODEC_LONG_NAME(str)
#define FF_CODEC_DECODE_SUB_CB(func)
int(* init)(AVBSFContext *ctx)
Definition dts2pts.c:608
@ AV_CODEC_ID_SAMI
Definition codec_id.h:578
@ AVMEDIA_TYPE_SUBTITLE
Definition avutil.h:203
static av_cold int sami_init(AVCodecContext *avctx)
Definition samidec.c:156
static av_cold void sami_flush(AVCodecContext *avctx)
Definition samidec.c:178
static av_cold int sami_close(AVCodecContext *avctx)
Definition samidec.c:167
static int sami_decode_frame(AVCodecContext *avctx, AVSubtitle *sub, int *got_sub_ptr, const AVPacket *avpkt)
Definition samidec.c:137

Definition at line 185 of file samidec.c.