libavfilter/vf_drawtext.c File Reference

drawtext filter, based on the original vhook/drawtext.c filter by Gustavo Sverzut Barbieri More...

#include <sys/time.h>
#include <time.h>
#include "config.h"
#include "libavutil/avstring.h"
#include "libavutil/file.h"
#include "libavutil/eval.h"
#include "libavutil/opt.h"
#include "libavutil/random_seed.h"
#include "libavutil/parseutils.h"
#include "libavutil/timecode.h"
#include "libavutil/tree.h"
#include "libavutil/lfg.h"
#include "avfilter.h"
#include "drawutils.h"
#include "video.h"
#include <ft2build.h>
#include <freetype/config/ftheader.h>
#include <FT_FREETYPE_H>
#include <FT_GLYPH_H>
#include <FT_ERRORS_H>

Go to the source code of this file.

Data Structures

struct  DrawTextContext
struct  ft_error

Defines

#define OFFSET(x)   offsetof(DrawTextContext, x)
#define FT_ERROR_START_LIST   {
#define FT_ERRORDEF(e, v, s)   { (e), (s) },
#define FT_ERROR_END_LIST   { 0, NULL } };
#define FT_ERRMSG(e)   ft_errors[e].err_msg

Typedefs

typedef double(* eval_func2 )(void *, double a, double b)

Enumerations

enum  var_name {
  VAR_B1, VAR_B2, VAR_S1, VAR_S2,
  VAR_T1, VAR_T2, VAR_NB, VAR_N,
  VAR_T, VAR_S, VAR_VARS_NB, VAR_W,
  VAR_H, VAR_CW, VAR_CH, VAR_HSUB,
  VAR_VSUB, VARS_NB, VAR_IN_W, VAR_IW,
  VAR_IN_H, VAR_IH, VAR_OUT_W, VAR_OW,
  VAR_OUT_H, VAR_OH, VAR_A, VAR_SAR,
  VAR_DAR, VAR_HSUB, VAR_VSUB, VAR_X,
  VAR_Y, VAR_N, VAR_POS, VAR_T,
  VAR_VARS_NB, VAR_DAR, VAR_HSUB, VAR_VSUB,
  VAR_LINE_H, VAR_LH, VAR_MAIN_H, VAR_h,
  VAR_H, VAR_MAIN_W, VAR_w, VAR_W,
  VAR_MAX_GLYPH_A, VAR_ASCENT, VAR_MAX_GLYPH_D, VAR_DESCENT,
  VAR_MAX_GLYPH_H, VAR_MAX_GLYPH_W, VAR_N, VAR_SAR,
  VAR_T, VAR_TEXT_H, VAR_TH, VAR_TEXT_W,
  VAR_TW, VAR_X, VAR_Y, VAR_VARS_NB,
  VAR_W, VAR_H, VAR_VAL, VAR_MAXVAL,
  VAR_MINVAL, VAR_NEGVAL, VAR_CLIPVAL, VAR_VARS_NB,
  VAR_MAIN_W, VAR_MW, VAR_MAIN_H, VAR_MH,
  VAR_OVERLAY_W, VAR_OW, VAR_OVERLAY_H, VAR_OH,
  VAR_VARS_NB, VAR_IN_W, VAR_IW, VAR_IN_H,
  VAR_IH, VAR_OUT_W, VAR_OW, VAR_OUT_H,
  VAR_OH, VAR_X, VAR_Y, VAR_A,
  VAR_SAR, VAR_DAR, VAR_HSUB, VAR_VSUB,
  VARS_NB, VAR_IN_W, VAR_IW, VAR_IN_H,
  VAR_IH, VAR_OUT_W, VAR_OW, VAR_OUT_H,
  VAR_OH, VAR_A, VAR_SAR, VAR_DAR,
  VAR_HSUB, VAR_VSUB, VARS_NB, VAR_TB,
  VAR_PTS, VAR_START_PTS, VAR_PREV_PTS, VAR_PREV_SELECTED_PTS,
  VAR_T, VAR_START_T, VAR_PREV_T, VAR_PREV_SELECTED_T,
  VAR_PICT_TYPE, VAR_PICT_TYPE_I, VAR_PICT_TYPE_P, VAR_PICT_TYPE_B,
  VAR_PICT_TYPE_S, VAR_PICT_TYPE_SI, VAR_PICT_TYPE_SP, VAR_PICT_TYPE_BI,
  VAR_INTERLACE_TYPE, VAR_INTERLACE_TYPE_P, VAR_INTERLACE_TYPE_T, VAR_INTERLACE_TYPE_B,
  VAR_N, VAR_SELECTED_N, VAR_PREV_SELECTED_N, VAR_KEY,
  VAR_POS, VAR_VARS_NB, VAR_INTERLACED, VAR_N,
  VAR_POS, VAR_PREV_INPTS, VAR_PREV_OUTPTS, VAR_PTS,
  VAR_STARTPTS, VAR_TB, VAR_VARS_NB, VAR_AVTB,
  VAR_INTB, VAR_VARS_NB, VAR_X, VAR_Y,
  VAR_W, VAR_H, VAR_TIME, VAR_SPEED,
  VAR_TEMPO, VAR_ORDER, VAR_PATTERN, VAR_ROW,
  VAR_VARS_NB
}

Functions

static double drand (void *opaque, double min, double max)
static const char * drawtext_get_name (void *ctx)
static int glyph_cmp (void *key, const void *b)
static int load_glyph (AVFilterContext *ctx, Glyph **glyph_ptr, uint32_t code)
 Load glyphs corresponding to the UTF-32 codepoint code.
static int load_font_file (AVFilterContext *ctx, const char *path, int index, const char **error)
static int load_font (AVFilterContext *ctx)
static av_cold int init (AVFilterContext *ctx, const char *args, void *opaque)
static int query_formats (AVFilterContext *ctx)
static int glyph_enu_free (void *opaque, void *elem)
static av_cold void uninit (AVFilterContext *ctx)
static int is_newline (uint32_t c)
static int config_input (AVFilterLink *inlink)
static int command (AVFilterContext *ctx, const char *cmd, const char *arg, char *res, int res_len, int flags)
static int draw_glyphs (DrawTextContext *dtext, AVFilterBufferRef *picref, int width, int height, const uint8_t rgbcolor[4], FFDrawColor *color, int x, int y)
static int draw_text (AVFilterContext *ctx, AVFilterBufferRef *picref, int width, int height)
static void null_draw_slice (AVFilterLink *link, int y, int h, int slice_dir)
static void end_frame (AVFilterLink *inlink)

Variables

static const char *const var_names []
static const char *const fun2_names []
static const eval_func2 fun2 []
static const AVOption drawtext_options []
static const AVClass drawtext_class
struct ft_error ft_errors []
AVFilter avfilter_vf_drawtext


Detailed Description

drawtext filter, based on the original vhook/drawtext.c filter by Gustavo Sverzut Barbieri

Definition in file vf_drawtext.c.


Define Documentation

#define FT_ERRMSG (  )     ft_errors[e].err_msg

Referenced by init(), and load_font_file().

#define FT_ERROR_END_LIST   { 0, NULL } };

Definition at line 222 of file vf_drawtext.c.

#define FT_ERROR_START_LIST   {

Definition at line 220 of file vf_drawtext.c.

#define FT_ERRORDEF ( e,
v,
 )     { (e), (s) },

Definition at line 221 of file vf_drawtext.c.

#define OFFSET (  )     offsetof(DrawTextContext, x)

Definition at line 162 of file vf_drawtext.c.


Typedef Documentation

typedef double(* eval_func2)(void *, double a, double b)

Definition at line 85 of file vf_drawtext.c.


Enumeration Type Documentation

enum var_name

Enumerator:
VAR_B1 
VAR_B2 
VAR_S1 
VAR_S2 
VAR_T1 
VAR_T2 
VAR_NB 
VAR_N 
VAR_T 
VAR_S 
VAR_VARS_NB 
VAR_W 
VAR_H 
VAR_CW 
VAR_CH 
VAR_HSUB 
VAR_VSUB 
VARS_NB 
VAR_IN_W 
VAR_IW 
VAR_IN_H 
VAR_IH 
VAR_OUT_W 
VAR_OW 
VAR_OUT_H 
VAR_OH 
VAR_A 
VAR_SAR 
VAR_DAR 
VAR_HSUB 
VAR_VSUB 
VAR_X 
VAR_Y 
VAR_N 
VAR_POS 
VAR_T 
VAR_VARS_NB 
VAR_DAR 
VAR_HSUB 
VAR_VSUB 
VAR_LINE_H 
VAR_LH 
VAR_MAIN_H 
VAR_h 
VAR_H 
VAR_MAIN_W 
VAR_w 
VAR_W 
VAR_MAX_GLYPH_A 
VAR_ASCENT 
VAR_MAX_GLYPH_D 
VAR_DESCENT 
VAR_MAX_GLYPH_H 
VAR_MAX_GLYPH_W 
VAR_N 
VAR_SAR 
VAR_T 
VAR_TEXT_H 
VAR_TH 
VAR_TEXT_W 
VAR_TW 
VAR_X 
VAR_Y 
VAR_VARS_NB 
VAR_W 
VAR_H 
VAR_VAL 
VAR_MAXVAL 
VAR_MINVAL 
VAR_NEGVAL 
VAR_CLIPVAL 
VAR_VARS_NB 
VAR_MAIN_W 
VAR_MW 
VAR_MAIN_H 
VAR_MH 
VAR_OVERLAY_W 
VAR_OW 
VAR_OVERLAY_H 
VAR_OH 
VAR_VARS_NB 
VAR_IN_W 
VAR_IW 
VAR_IN_H 
VAR_IH 
VAR_OUT_W 
VAR_OW 
VAR_OUT_H 
VAR_OH 
VAR_X 
VAR_Y 
VAR_A 
VAR_SAR 
VAR_DAR 
VAR_HSUB 
VAR_VSUB 
VARS_NB 
VAR_IN_W 
VAR_IW 
VAR_IN_H 
VAR_IH 
VAR_OUT_W 
VAR_OW 
VAR_OUT_H 
VAR_OH 
VAR_A 
VAR_SAR 
VAR_DAR 
VAR_HSUB 
VAR_VSUB 
VARS_NB 
VAR_TB 
VAR_PTS 
VAR_START_PTS 
VAR_PREV_PTS 
VAR_PREV_SELECTED_PTS 
VAR_T 
VAR_START_T 
VAR_PREV_T 
VAR_PREV_SELECTED_T 
VAR_PICT_TYPE 
VAR_PICT_TYPE_I 
VAR_PICT_TYPE_P 
VAR_PICT_TYPE_B 
VAR_PICT_TYPE_S 
VAR_PICT_TYPE_SI 
VAR_PICT_TYPE_SP 
VAR_PICT_TYPE_BI 
VAR_INTERLACE_TYPE 
VAR_INTERLACE_TYPE_P 
VAR_INTERLACE_TYPE_T 
VAR_INTERLACE_TYPE_B 
VAR_N 
VAR_SELECTED_N 
VAR_PREV_SELECTED_N 
VAR_KEY 
VAR_POS 
VAR_VARS_NB 
VAR_INTERLACED 
VAR_N 
VAR_POS 
VAR_PREV_INPTS 
VAR_PREV_OUTPTS 
VAR_PTS 
VAR_STARTPTS 
VAR_TB 
VAR_VARS_NB 
VAR_AVTB 
VAR_INTB 
VAR_VARS_NB 
VAR_X 
VAR_Y 
VAR_W 
VAR_H 
VAR_TIME 
VAR_SPEED 
VAR_TEMPO 
VAR_ORDER 
VAR_PATTERN 
VAR_ROW 
VAR_VARS_NB 

Definition at line 92 of file vf_drawtext.c.


Function Documentation

static int command ( AVFilterContext ctx,
const char *  cmd,
const char *  arg,
char *  res,
int  res_len,
int  flags 
) [static]

Definition at line 585 of file vf_drawtext.c.

Referenced by cdg_decode_frame(), idcin_read_packet(), and transcode().

static int config_input ( AVFilterLink inlink  )  [static]

Definition at line 548 of file vf_drawtext.c.

static double drand ( void *  opaque,
double  min,
double  max 
) [static]

Definition at line 80 of file vf_drawtext.c.

static int draw_glyphs ( DrawTextContext dtext,
AVFilterBufferRef picref,
int  width,
int  height,
const uint8_t  rgbcolor[4],
FFDrawColor color,
int  x,
int  y 
) [static]

Definition at line 601 of file vf_drawtext.c.

Referenced by draw_text().

static int draw_text ( AVFilterContext ctx,
AVFilterBufferRef picref,
int  width,
int  height 
) [static]

Definition at line 639 of file vf_drawtext.c.

Referenced by end_frame().

static const char* drawtext_get_name ( void *  ctx  )  [static]

Definition at line 208 of file vf_drawtext.c.

static void end_frame ( AVFilterLink inlink  )  [static]

Definition at line 801 of file vf_drawtext.c.

static int glyph_cmp ( void *  key,
const void *  b 
) [static]

Definition at line 243 of file vf_drawtext.c.

Referenced by draw_glyphs(), draw_text(), and load_glyph().

static int glyph_enu_free ( void *  opaque,
void *  elem 
) [static]

Definition at line 504 of file vf_drawtext.c.

Referenced by uninit().

static av_cold int init ( AVFilterContext ctx,
const char *  args,
void *  opaque 
) [static]

Definition at line 389 of file vf_drawtext.c.

static int is_newline ( uint32_t  c  )  [inline, static]

Definition at line 543 of file vf_drawtext.c.

Referenced by draw_text().

static int load_font ( AVFilterContext ctx  )  [static]

Definition at line 369 of file vf_drawtext.c.

Referenced by init().

static int load_font_file ( AVFilterContext ctx,
const char *  path,
int  index,
const char **  error 
) [static]

Definition at line 304 of file vf_drawtext.c.

Referenced by load_font().

static int load_glyph ( AVFilterContext ctx,
Glyph **  glyph_ptr,
uint32_t  code 
) [static]

Load glyphs corresponding to the UTF-32 codepoint code.

Definition at line 253 of file vf_drawtext.c.

Referenced by draw_text(), and init().

static void null_draw_slice ( AVFilterLink link,
int  y,
int  h,
int  slice_dir 
) [static]

Definition at line 799 of file vf_drawtext.c.

static int query_formats ( AVFilterContext ctx  )  [static]

Definition at line 498 of file vf_drawtext.c.

static av_cold void uninit ( AVFilterContext ctx  )  [static]

Definition at line 514 of file vf_drawtext.c.


Variable Documentation

Initial value:

 {
    .name          = "drawtext",
    .description   = NULL_IF_CONFIG_SMALL("Draw text on top of video frames using libfreetype library."),
    .priv_size     = sizeof(DrawTextContext),
    .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,
                                    .rej_perms        = AV_PERM_PRESERVE },
                                  { .name = NULL}},
    .outputs   = (const AVFilterPad[]) {{ .name       = "default",
                                    .type             = AVMEDIA_TYPE_VIDEO, },
                                  { .name = NULL}},
    .process_command = command,
}

Definition at line 824 of file vf_drawtext.c.

const AVClass drawtext_class [static]

Initial value:

 {
    "DrawTextContext",
    drawtext_get_name,
    drawtext_options
}

Definition at line 213 of file vf_drawtext.c.

const AVOption drawtext_options[] [static]

Definition at line 164 of file vf_drawtext.c.

struct ft_error ft_errors[]

const eval_func2 fun2[] [static]

Initial value:

 {
    drand,
    NULL
}

Definition at line 87 of file vf_drawtext.c.

Referenced by config_input().

const char* const fun2_names[] [static]

Initial value:

 {
    "rand"
}

Definition at line 76 of file vf_drawtext.c.

Referenced by config_input().

const char* const var_names[] [static]

Initial value:

 {
    "dar",
    "hsub", "vsub",
    "line_h", "lh",           
    "main_h", "h", "H",       
    "main_w", "w", "W",       
    "max_glyph_a", "ascent",  
    "max_glyph_d", "descent", 
    "max_glyph_h",            
    "max_glyph_w",            
    "n",                      
    "sar",
    "t",                      
    "text_h", "th",           
    "text_w", "tw",           
    "x",
    "y",
    NULL
}

Definition at line 56 of file vf_drawtext.c.


Generated on Fri Oct 26 02:48:01 2012 for FFmpeg by  doxygen 1.5.8