#include "ass.h"
#include "libavutil/avstring.h"
#include "libavutil/bprint.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, void *data, int *got_sub_ptr, AVPacket *avpkt) |
static av_cold int | sami_init (AVCodecContext *avctx) |
static av_cold int | sami_close (AVCodecContext *avctx) |
Variables | |
AVCodec | ff_sami_decoder |
Definition in file samidec.c.
static av_cold int sami_close | ( | AVCodecContext * | avctx | ) | [static] |
static int sami_decode_frame | ( | AVCodecContext * | avctx, | |
void * | data, | |||
int * | got_sub_ptr, | |||
AVPacket * | avpkt | |||
) | [static] |
static av_cold int sami_init | ( | AVCodecContext * | avctx | ) | [static] |
static int sami_paragraph_to_ass | ( | AVCodecContext * | avctx, | |
const char * | src | |||
) | [static] |
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, }