#include <stdarg.h>
#include "avcodec.h"
#include "libavutil/avstring.h"
#include "libavutil/bprint.h"
#include "ass_split.h"
#include "ass.h"
Go to the source code of this file.
|
static void | srt_print (SRTContext *s, const char *str,...) |
|
static int | srt_stack_push (SRTContext *s, const char c) |
|
static char | srt_stack_pop (SRTContext *s) |
|
static int | srt_stack_find (SRTContext *s, const char c) |
|
static void | srt_close_tag (SRTContext *s, char tag) |
|
static void | srt_stack_push_pop (SRTContext *s, const char c, int close) |
|
static void | srt_style_apply (SRTContext *s, const char *style) |
|
static av_cold int | srt_encode_init (AVCodecContext *avctx) |
|
static void | srt_text_cb (void *priv, const char *text, int len) |
|
static void | srt_new_line_cb (void *priv, int forced) |
|
static void | srt_style_cb (void *priv, char style, int close) |
|
static void | srt_color_cb (void *priv, unsigned int color, unsigned int color_id) |
|
static void | srt_font_name_cb (void *priv, const char *name) |
|
static void | srt_font_size_cb (void *priv, int size) |
|
static void | srt_alignment_cb (void *priv, int alignment) |
|
static void | srt_cancel_overrides_cb (void *priv, const char *style) |
|
static void | srt_move_cb (void *priv, int x1, int y1, int x2, int y2, int t1, int t2) |
|
static void | srt_end_cb (void *priv) |
|
static int | srt_encode_frame (AVCodecContext *avctx, unsigned char *buf, int bufsize, const AVSubtitle *sub) |
|
static int | srt_encode_close (AVCodecContext *avctx) |
|
#define SRT_STACK_SIZE 64 |
static int srt_stack_push |
( |
SRTContext * |
s, |
|
|
const char |
c |
|
) |
| |
|
static |
static int srt_stack_find |
( |
SRTContext * |
s, |
|
|
const char |
c |
|
) |
| |
|
static |
static void srt_stack_push_pop |
( |
SRTContext * |
s, |
|
|
const char |
c, |
|
|
int |
close |
|
) |
| |
|
static |
static void srt_text_cb |
( |
void * |
priv, |
|
|
const char * |
text, |
|
|
int |
len |
|
) |
| |
|
static |
static void srt_new_line_cb |
( |
void * |
priv, |
|
|
int |
forced |
|
) |
| |
|
static |
static void srt_style_cb |
( |
void * |
priv, |
|
|
char |
style, |
|
|
int |
close |
|
) |
| |
|
static |
static void srt_color_cb |
( |
void * |
priv, |
|
|
unsigned int |
color, |
|
|
unsigned int |
color_id |
|
) |
| |
|
static |
static void srt_font_name_cb |
( |
void * |
priv, |
|
|
const char * |
name |
|
) |
| |
|
static |
static void srt_font_size_cb |
( |
void * |
priv, |
|
|
int |
size |
|
) |
| |
|
static |
static void srt_alignment_cb |
( |
void * |
priv, |
|
|
int |
alignment |
|
) |
| |
|
static |
static void srt_cancel_overrides_cb |
( |
void * |
priv, |
|
|
const char * |
style |
|
) |
| |
|
static |
static void srt_move_cb |
( |
void * |
priv, |
|
|
int |
x1, |
|
|
int |
y1, |
|
|
int |
x2, |
|
|
int |
y2, |
|
|
int |
t1, |
|
|
int |
t2 |
|
) |
| |
|
static |
Initial value:= {
}
static void srt_font_size_cb(void *priv, int size)
static void srt_color_cb(void *priv, unsigned int color, unsigned int color_id)
static void srt_move_cb(void *priv, int x1, int y1, int x2, int y2, int t1, int t2)
static void srt_cancel_overrides_cb(void *priv, const char *style)
static void srt_style_cb(void *priv, char style, int close)
static void srt_font_name_cb(void *priv, const char *name)
static void srt_new_line_cb(void *priv, int forced)
static void srt_alignment_cb(void *priv, int alignment)
static void srt_text_cb(void *priv, const char *text, int len)
static void srt_end_cb(void *priv)
Definition at line 211 of file srtenc.c.