#include <string.h>
#include "avcodec.h"
#include "ass.h"
#include "ass_split.h"
#include "libavutil/internal.h"
#include "libavutil/mem.h"
Go to the source code of this file.
Functions | |
static av_cold int | ass_decode_init (AVCodecContext *avctx) |
static int | ass_decode_frame (AVCodecContext *avctx, void *data, int *got_sub_ptr, AVPacket *avpkt) |
static int | ass_decode_close (AVCodecContext *avctx) |
Variables | |
AVCodec | ff_ass_decoder |
static int ass_decode_close | ( | AVCodecContext * | avctx | ) | [static] |
static int ass_decode_frame | ( | AVCodecContext * | avctx, | |
void * | data, | |||
int * | got_sub_ptr, | |||
AVPacket * | avpkt | |||
) | [static] |
static av_cold int ass_decode_init | ( | AVCodecContext * | avctx | ) | [static] |
Initial value:
{ .name = "ass", .long_name = NULL_IF_CONFIG_SMALL("SSA (SubStation Alpha) subtitle"), .type = AVMEDIA_TYPE_SUBTITLE, .id = AV_CODEC_ID_SSA, .init = ass_decode_init, .decode = ass_decode_frame, .close = ass_decode_close, }