#include "avcodec.h"#include "ass.h"#include "libavutil/avstring.h"#include "libavutil/common.h"#include "libavutil/bprint.h"#include "libavutil/intreadwrite.h"Go to the source code of this file.
Functions | |
| static int | text_to_ass (AVBPrint *buf, const char *text, const char *text_end) |
| static int | mov_text_init (AVCodecContext *avctx) |
| static int | mov_text_decode_frame (AVCodecContext *avctx, void *data, int *got_sub_ptr, AVPacket *avpkt) |
Variables | |
| AVCodec | ff_movtext_decoder |
| static int mov_text_decode_frame | ( | AVCodecContext * | avctx, | |
| void * | data, | |||
| int * | got_sub_ptr, | |||
| AVPacket * | avpkt | |||
| ) | [static] |
Definition at line 59 of file movtextdec.c.
| static int mov_text_init | ( | AVCodecContext * | avctx | ) | [static] |
Definition at line 49 of file movtextdec.c.
Definition at line 29 of file movtextdec.c.
Initial value:
{
.name = "mov_text",
.long_name = NULL_IF_CONFIG_SMALL("3GPP Timed Text subtitle"),
.type = AVMEDIA_TYPE_SUBTITLE,
.id = AV_CODEC_ID_MOV_TEXT,
.init = mov_text_init,
.decode = mov_text_decode_frame,
}
Definition at line 109 of file movtextdec.c.
1.5.8