00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef AVCODEC_ASS_H
00023 #define AVCODEC_ASS_H
00024
00025 #include "avcodec.h"
00026
00031 #define ASS_DEFAULT_FONT "Arial"
00032 #define ASS_DEFAULT_FONT_SIZE 16
00033 #define ASS_DEFAULT_COLOR 0xffffff
00034 #define ASS_DEFAULT_BACK_COLOR 0
00035 #define ASS_DEFAULT_BOLD 0
00036 #define ASS_DEFAULT_ITALIC 0
00037 #define ASS_DEFAULT_UNDERLINE 0
00038 #define ASS_DEFAULT_ALIGNMENT 2
00039
00056 int ff_ass_subtitle_header(AVCodecContext *avctx,
00057 const char *font, int font_size,
00058 int color, int back_color,
00059 int bold, int italic, int underline,
00060 int alignment);
00061
00069 int ff_ass_subtitle_header_default(AVCodecContext *avctx);
00070
00087 int ff_ass_add_rect(AVSubtitle *sub, const char *dialog,
00088 int ts_start, int ts_end, int raw);
00089
00090 #endif