libavfilter/vf_ass.c File Reference
Libass subtitles burning filter.
More...
#include <ass/ass.h>
#include "libavutil/avstring.h"
#include "libavutil/imgutils.h"
#include "libavutil/opt.h"
#include "libavutil/parseutils.h"
#include "drawutils.h"
#include "avfilter.h"
#include "internal.h"
#include "formats.h"
#include "video.h"
Go to the source code of this file.
|
Data Structures |
struct | AssContext |
Defines |
#define | OFFSET(x) offsetof(AssContext, x) |
#define | FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM |
#define | AR(c) ( (c)>>24) |
#define | AG(c) (((c)>>16)&0xFF) |
#define | AB(c) (((c)>>8) &0xFF) |
#define | AA(c) ((0xFF-c) &0xFF) |
Functions |
| AVFILTER_DEFINE_CLASS (ass) |
static void | ass_log (int ass_level, const char *fmt, va_list args, void *ctx) |
static av_cold int | init (AVFilterContext *ctx, const char *args) |
static av_cold void | uninit (AVFilterContext *ctx) |
static int | query_formats (AVFilterContext *ctx) |
static int | config_input (AVFilterLink *inlink) |
static int | null_draw_slice (AVFilterLink *link, int y, int h, int slice_dir) |
static void | overlay_ass_image (AssContext *ass, AVFilterBufferRef *picref, const ASS_Image *image) |
static int | end_frame (AVFilterLink *inlink) |
Variables |
static const AVOption | ass_options [] |
static const int | ass_libavfilter_log_level_map [] |
AVFilter | avfilter_vf_ass |
Detailed Description
Libass subtitles burning filter.
- See also:
- {http://www.matroska.org/technical/specs/subtitles/ssa.html}
Definition in file vf_ass.c.
Define Documentation
#define AA |
( |
c |
|
) |
((0xFF-c) &0xFF) |
#define AB |
( |
c |
|
) |
(((c)>>8) &0xFF) |
#define AG |
( |
c |
|
) |
(((c)>>16)&0xFF) |
#define AR |
( |
c |
|
) |
( (c)>>24) |
#define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM |
Function Documentation
static void ass_log |
( |
int |
ass_level, |
|
|
const char * |
fmt, |
|
|
va_list |
args, |
|
|
void * |
ctx | |
|
) |
| | [static] |
AVFILTER_DEFINE_CLASS |
( |
ass |
|
) |
|
Variable Documentation
Initial value:
Definition at line 56 of file vf_ass.c.
Initial value:
{
.name = "ass",
.description = NULL_IF_CONFIG_SMALL("Render subtitles onto input video using the libass library."),
.priv_size = sizeof(AssContext),
.init = init,
.uninit = uninit,
.query_formats = query_formats,
.inputs = (const AVFilterPad[]) {
{ .name = "default",
.type = AVMEDIA_TYPE_VIDEO,
.get_video_buffer = ff_null_get_video_buffer,
.start_frame = ff_null_start_frame,
.draw_slice = null_draw_slice,
.end_frame = end_frame,
.config_props = config_input,
.min_perms = AV_PERM_WRITE | AV_PERM_READ },
{ .name = NULL}
},
.outputs = (const AVFilterPad[]) {
{ .name = "default",
.type = AVMEDIA_TYPE_VIDEO, },
{ .name = NULL}
},
.priv_class = &ass_class,
}
Definition at line 202 of file vf_ass.c.