#include <ass/ass.h>
#include "config_components.h"
#include "libavutil/avstring.h"
#include "libavutil/mem.h"
#include "libavutil/opt.h"
#include "filters.h"
#include "drawutils.h"
#include "avfilter.h"
#include "formats.h"
#include "video.h"
Go to the source code of this file.
|
static enum AVColorSpace | ass_get_color_space (ASS_YCbCrMatrix ass_matrix, enum AVColorSpace inlink_space) |
|
static enum AVColorRange | ass_get_color_range (ASS_YCbCrMatrix ass_matrix, enum AVColorRange inlink_range) |
|
static void | ass_log (int ass_level, const char *fmt, va_list args, void *ctx) |
|
static av_cold int | init (AVFilterContext *ctx) |
|
static av_cold void | uninit (AVFilterContext *ctx) |
|
static int | query_formats (const AVFilterContext *ctx, AVFilterFormatsConfig **cfg_in, AVFilterFormatsConfig **cfg_out) |
|
static int | config_input (AVFilterLink *inlink) |
|
static void | overlay_ass_image (AssContext *ass, AVFrame *picref, const ASS_Image *image) |
|
static int | filter_frame (AVFilterLink *inlink, AVFrame *picref) |
|
◆ FF_ASS_FEATURE_WRAP_UNICODE
#define FF_ASS_FEATURE_WRAP_UNICODE (LIBASS_VERSION >= 0x01600010) |
◆ OFFSET
◆ FLAGS
◆ COMMON_OPTIONS
◆ AR
#define AR |
( |
|
c | ) |
( (c)>>24) |
◆ AG
#define AG |
( |
|
c | ) |
(((c)>>16)&0xFF) |
◆ AB
#define AB |
( |
|
c | ) |
(((c)>>8) &0xFF) |
◆ AA
#define AA |
( |
|
c | ) |
((0xFF-(c)) &0xFF) |
◆ ass_get_color_space()
◆ ass_get_color_range()
◆ ass_log()
static void ass_log |
( |
int |
ass_level, |
|
|
const char * |
fmt, |
|
|
va_list |
args, |
|
|
void * |
ctx |
|
) |
| |
|
static |
◆ init()
◆ uninit()
◆ query_formats()
◆ config_input()
◆ overlay_ass_image()
static void overlay_ass_image |
( |
AssContext * |
ass, |
|
|
AVFrame * |
picref, |
|
|
const ASS_Image * |
image |
|
) |
| |
|
static |
◆ filter_frame()
◆ ass_libavfilter_log_level_map
const int ass_libavfilter_log_level_map[] |
|
static |
◆ ass_inputs
Initial value:= {
{
.name = "default",
},
}
Definition at line 245 of file vf_subtitles.c.