libavfilter/vf_drawtext.c
a5b64584
 /*
  * Copyright (c) 2011 Stefano Sabatini
  * Copyright (c) 2010 S.N. Hemanth Meenakshisundaram
  * Copyright (c) 2003 Gustavo Sverzut Barbieri <gsbarbieri@yahoo.com.br>
  *
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
  * version 2.1 of the License, or (at your option) any later version.
  *
  * FFmpeg is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
  * License along with FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
 /**
  * @file
124e2884
  * drawtext filter, based on the original vhook/drawtext.c
a5b64584
  * filter by Gustavo Sverzut Barbieri
  */
 
3e309c5d
 #include "config.h"
f1b239ec
 
3e309c5d
 #if HAVE_SYS_TIME_H
a5b64584
 #include <sys/time.h>
3e309c5d
 #endif
443261cb
 #include <sys/types.h>
f1b239ec
 #include <sys/stat.h>
a5b64584
 #include <time.h>
576ced55
 #if HAVE_UNISTD_H
f1b239ec
 #include <unistd.h>
576ced55
 #endif
dec87454
 #include <fenv.h>
f1b239ec
 
 #if CONFIG_LIBFONTCONFIG
 #include <fontconfig/fontconfig.h>
 #endif
a5b64584
 
fa4e30af
 #include "libavutil/avstring.h"
29e388ab
 #include "libavutil/bprint.h"
33e11284
 #include "libavutil/common.h"
a5b64584
 #include "libavutil/file.h"
f88d5df3
 #include "libavutil/eval.h"
a5b64584
 #include "libavutil/opt.h"
f5edfc9e
 #include "libavutil/random_seed.h"
a5b64584
 #include "libavutil/parseutils.h"
f65600d5
 #include "libavutil/timecode.h"
6b9b42cc
 #include "libavutil/time_internal.h"
a5b64584
 #include "libavutil/tree.h"
f5edfc9e
 #include "libavutil/lfg.h"
a5b64584
 #include "avfilter.h"
 #include "drawutils.h"
b74a1da4
 #include "formats.h"
9d0bfc50
 #include "internal.h"
c04c533f
 #include "video.h"
a5b64584
 
a0b71e9f
 #if CONFIG_LIBFRIBIDI
 #include <fribidi.h>
 #endif
 
a5b64584
 #include <ft2build.h>
 #include FT_FREETYPE_H
 #include FT_GLYPH_H
78a9f185
 #include FT_STROKER_H
a5b64584
 
b0f29db5
 static const char *const var_names[] = {
65d2b2fb
     "dar",
     "hsub", "vsub",
     "line_h", "lh",           ///< line height, same as max_glyph_h
dda3d716
     "main_h", "h", "H",       ///< height of the input video
65d2b2fb
     "main_w", "w", "W",       ///< width  of the input video
482ce0ce
     "max_glyph_a", "ascent",  ///< max glyph ascent
     "max_glyph_d", "descent", ///< min glyph descent
65d2b2fb
     "max_glyph_h",            ///< max glyph height
     "max_glyph_w",            ///< max glyph width
     "n",                      ///< number of frame
482ce0ce
     "sar",
65d2b2fb
     "t",                      ///< timestamp expressed in seconds
     "text_h", "th",           ///< height of the rendered text
     "text_w", "tw",           ///< width  of the rendered text
482ce0ce
     "x",
     "y",
a9a537b1
     "pict_type",
482ce0ce
     NULL
 };
 
b0f29db5
 static const char *const fun2_names[] = {
     "rand"
f5edfc9e
 };
 
 static double drand(void *opaque, double min, double max)
 {
78212cef
     return min + (max-min) / UINT_MAX * av_lfg_get(opaque);
f5edfc9e
 }
 
 typedef double (*eval_func2)(void *, double a, double b);
 
 static const eval_func2 fun2[] = {
     drand,
     NULL
 };
 
482ce0ce
 enum var_name {
65d2b2fb
     VAR_DAR,
     VAR_HSUB, VAR_VSUB,
     VAR_LINE_H, VAR_LH,
dda3d716
     VAR_MAIN_H, VAR_h, VAR_H,
65d2b2fb
     VAR_MAIN_W, VAR_w, VAR_W,
482ce0ce
     VAR_MAX_GLYPH_A, VAR_ASCENT,
     VAR_MAX_GLYPH_D, VAR_DESCENT,
65d2b2fb
     VAR_MAX_GLYPH_H,
     VAR_MAX_GLYPH_W,
     VAR_N,
482ce0ce
     VAR_SAR,
65d2b2fb
     VAR_T,
     VAR_TEXT_H, VAR_TH,
     VAR_TEXT_W, VAR_TW,
482ce0ce
     VAR_X,
     VAR_Y,
a9a537b1
     VAR_PICT_TYPE,
482ce0ce
     VAR_VARS_NB
 };
 
c437c251
 enum expansion_mode {
     EXP_NONE,
     EXP_NORMAL,
     EXP_STRFTIME,
 };
 
58400ac1
 typedef struct DrawTextContext {
a5b64584
     const AVClass *class;
ee7b5d4e
     int exp_mode;                   ///< expansion mode to use for the text
80daa247
     int reinit;                     ///< tells if the filter is being reinited
f1b239ec
 #if CONFIG_LIBFONTCONFIG
     uint8_t *font;              ///< font to be used
 #endif
a5b64584
     uint8_t *fontfile;              ///< font to be used
     uint8_t *text;                  ///< text to be drawn
29e388ab
     AVBPrint expanded_text;         ///< used to contain the expanded text
e9ff5df0
     uint8_t *fontcolor_expr;        ///< fontcolor expression to evaluate
     AVBPrint expanded_fontcolor;    ///< used to contain the expanded fontcolor spec
a5b64584
     int ft_load_flags;              ///< flags used for loading fonts, see FT_LOAD_*
     FT_Vector *positions;           ///< positions for each element in the text
ce207e05
     size_t nb_positions;            ///< number of elements of positions array
a5b64584
     char *textfile;                 ///< file with text to be drawn
db56a750
     int x;                          ///< x position to start drawing text
     int y;                          ///< y position to start drawing text
482ce0ce
     int max_glyph_w;                ///< max glyph width
2d38081b
     int max_glyph_h;                ///< max glyph height
c5420f10
     int shadowx, shadowy;
78a9f185
     int borderw;                    ///< border width
6442e4ab
     char *fontsize_expr;            ///< expression for fontsize
     AVExpr *fontsize_pexpr;         ///< parsed expressions for fontsize
a5b64584
     unsigned int fontsize;          ///< font size to use
6442e4ab
     unsigned int default_fontsize;  ///< default font size to use
a5b64584
 
90096e42
     int line_spacing;               ///< lines spacing in pixels
a5b64584
     short int draw_box;             ///< draw box around text - true or false
c84b75c8
     int boxborderw;                 ///< box border width
a5b64584
     int use_kerning;                ///< font kerning is used - true/false
     int tabsize;                    ///< tab size
e496c45d
     int fix_bounds;                 ///< do we let it go out of frame bounds - t/f
a5b64584
 
a63712d3
     FFDrawContext dc;
     FFDrawColor fontcolor;          ///< foreground color
     FFDrawColor shadowcolor;        ///< shadow color
78a9f185
     FFDrawColor bordercolor;        ///< border color
a63712d3
     FFDrawColor boxcolor;           ///< background color
 
a5b64584
     FT_Library library;             ///< freetype font library handle
     FT_Face face;                   ///< freetype font face handle
78a9f185
     FT_Stroker stroker;             ///< freetype stroker handle
a5b64584
     struct AVTreeNode *glyphs;      ///< rendered glyphs, stored using the UTF-32 char code
f88d5df3
     char *x_expr;                   ///< expression for x position
     char *y_expr;                   ///< expression for y position
     AVExpr *x_pexpr, *y_pexpr;      ///< parsed expressions for x and y
595cfdef
     int64_t basetime;               ///< base pts time in the real world for display
482ce0ce
     double var_values[VAR_VARS_NB];
9b2c57be
     char   *a_expr;
     AVExpr *a_pexpr;
     int alpha;
f5edfc9e
     AVLFG  prng;                    ///< random
f65600d5
     char       *tc_opt_string;      ///< specified timecode option string
     AVRational  tc_rate;            ///< frame rate for timecode
     AVTimecode  tc;                 ///< timecode context
4fe54487
     int tc24hmax;                   ///< 1 if timecode is wrapped to 24 hours, 0 otherwise
0444733b
     int reload;                     ///< reload text file for each frame
0defc77e
     int start_number;               ///< starting frame number for n/frame_num var
a0b71e9f
 #if CONFIG_LIBFRIBIDI
     int text_shaping;               ///< 1 to shape the text before drawing it
 #endif
c5a1b18f
     AVDictionary *metadata;
a5b64584
 } DrawTextContext;
 
 #define OFFSET(x) offsetof(DrawTextContext, x)
42d621d1
 #define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
a5b64584
 
 static const AVOption drawtext_options[]= {
de656ea9
     {"fontfile",    "set font file",        OFFSET(fontfile),           AV_OPT_TYPE_STRING, {.str=NULL},  CHAR_MIN, CHAR_MAX, FLAGS},
     {"text",        "set text",             OFFSET(text),               AV_OPT_TYPE_STRING, {.str=NULL},  CHAR_MIN, CHAR_MAX, FLAGS},
     {"textfile",    "set text file",        OFFSET(textfile),           AV_OPT_TYPE_STRING, {.str=NULL},  CHAR_MIN, CHAR_MAX, FLAGS},
1d2ecf96
     {"fontcolor",   "set foreground color", OFFSET(fontcolor.rgba),     AV_OPT_TYPE_COLOR,  {.str="black"}, CHAR_MIN, CHAR_MAX, FLAGS},
e9ff5df0
     {"fontcolor_expr", "set foreground color expression", OFFSET(fontcolor_expr), AV_OPT_TYPE_STRING, {.str=""}, CHAR_MIN, CHAR_MAX, FLAGS},
1d2ecf96
     {"boxcolor",    "set box color",        OFFSET(boxcolor.rgba),      AV_OPT_TYPE_COLOR,  {.str="white"}, CHAR_MIN, CHAR_MAX, FLAGS},
78a9f185
     {"bordercolor", "set border color",     OFFSET(bordercolor.rgba),   AV_OPT_TYPE_COLOR,  {.str="black"}, CHAR_MIN, CHAR_MAX, FLAGS},
1d2ecf96
     {"shadowcolor", "set shadow color",     OFFSET(shadowcolor.rgba),   AV_OPT_TYPE_COLOR,  {.str="black"}, CHAR_MIN, CHAR_MAX, FLAGS},
1cab6a33
     {"box",         "set box",              OFFSET(draw_box),           AV_OPT_TYPE_BOOL,   {.i64=0},     0,        1       , FLAGS},
c84b75c8
     {"boxborderw",  "set box border width", OFFSET(boxborderw),         AV_OPT_TYPE_INT,    {.i64=0},     INT_MIN,  INT_MAX , FLAGS},
90096e42
     {"line_spacing",  "set line spacing in pixels", OFFSET(line_spacing),   AV_OPT_TYPE_INT,    {.i64=0},     INT_MIN,  INT_MAX,FLAGS},
6442e4ab
     {"fontsize",    "set font size",        OFFSET(fontsize_expr),      AV_OPT_TYPE_STRING, {.str=NULL},  CHAR_MIN, CHAR_MAX , FLAGS},
de656ea9
     {"x",           "set x expression",     OFFSET(x_expr),             AV_OPT_TYPE_STRING, {.str="0"},   CHAR_MIN, CHAR_MAX, FLAGS},
     {"y",           "set y expression",     OFFSET(y_expr),             AV_OPT_TYPE_STRING, {.str="0"},   CHAR_MIN, CHAR_MAX, FLAGS},
d3dbae1c
     {"shadowx",     "set shadow x offset",  OFFSET(shadowx),            AV_OPT_TYPE_INT,    {.i64=0},     INT_MIN,  INT_MAX , FLAGS},
     {"shadowy",     "set shadow y offset",  OFFSET(shadowy),            AV_OPT_TYPE_INT,    {.i64=0},     INT_MIN,  INT_MAX , FLAGS},
78a9f185
     {"borderw",     "set border width",     OFFSET(borderw),            AV_OPT_TYPE_INT,    {.i64=0},     INT_MIN,  INT_MAX , FLAGS},
de656ea9
     {"tabsize",     "set tab size",         OFFSET(tabsize),            AV_OPT_TYPE_INT,    {.i64=4},     0,        INT_MAX , FLAGS},
     {"basetime",    "set base time",        OFFSET(basetime),           AV_OPT_TYPE_INT64,  {.i64=AV_NOPTS_VALUE}, INT64_MIN, INT64_MAX , FLAGS},
f1b239ec
 #if CONFIG_LIBFONTCONFIG
     { "font",        "Font name",            OFFSET(font),               AV_OPT_TYPE_STRING, { .str = "Sans" },           .flags = FLAGS },
 #endif
de656ea9
 
     {"expansion", "set the expansion mode", OFFSET(exp_mode), AV_OPT_TYPE_INT, {.i64=EXP_NORMAL}, 0, 2, FLAGS, "expansion"},
         {"none",     "set no expansion",                    OFFSET(exp_mode), AV_OPT_TYPE_CONST, {.i64=EXP_NONE},     0, 0, FLAGS, "expansion"},
         {"normal",   "set normal expansion",                OFFSET(exp_mode), AV_OPT_TYPE_CONST, {.i64=EXP_NORMAL},   0, 0, FLAGS, "expansion"},
         {"strftime", "set strftime expansion (deprecated)", OFFSET(exp_mode), AV_OPT_TYPE_CONST, {.i64=EXP_STRFTIME}, 0, 0, FLAGS, "expansion"},
 
     {"timecode",        "set initial timecode",             OFFSET(tc_opt_string), AV_OPT_TYPE_STRING,   {.str=NULL}, CHAR_MIN, CHAR_MAX, FLAGS},
1cab6a33
     {"tc24hmax",        "set 24 hours max (timecode only)", OFFSET(tc24hmax),      AV_OPT_TYPE_BOOL,     {.i64=0},           0,        1, FLAGS},
de656ea9
     {"timecode_rate",   "set rate (timecode only)",         OFFSET(tc_rate),       AV_OPT_TYPE_RATIONAL, {.dbl=0},           0,  INT_MAX, FLAGS},
     {"r",               "set rate (timecode only)",         OFFSET(tc_rate),       AV_OPT_TYPE_RATIONAL, {.dbl=0},           0,  INT_MAX, FLAGS},
     {"rate",            "set rate (timecode only)",         OFFSET(tc_rate),       AV_OPT_TYPE_RATIONAL, {.dbl=0},           0,  INT_MAX, FLAGS},
1cab6a33
     {"reload",     "reload text file for each frame",                       OFFSET(reload),     AV_OPT_TYPE_BOOL, {.i64=0}, 0, 1, FLAGS},
9b2c57be
     { "alpha",       "apply alpha while rendering", OFFSET(a_expr),      AV_OPT_TYPE_STRING, { .str = "1"     },          .flags = FLAGS },
1cab6a33
     {"fix_bounds", "check and fix text coords to avoid clipping", OFFSET(fix_bounds), AV_OPT_TYPE_BOOL, {.i64=1}, 0, 1, FLAGS},
0defc77e
     {"start_number", "start frame number for n/frame_num variable", OFFSET(start_number), AV_OPT_TYPE_INT, {.i64=0}, 0, INT_MAX, FLAGS},
a5b64584
 
a0b71e9f
 #if CONFIG_LIBFRIBIDI
1cab6a33
     {"text_shaping", "attempt to shape text before drawing", OFFSET(text_shaping), AV_OPT_TYPE_BOOL, {.i64=1}, 0, 1, FLAGS},
a0b71e9f
 #endif
 
8ec464c6
     /* FT_LOAD_* flags */
222fb827
     { "ft_load_flags", "set font loading flags for libfreetype", OFFSET(ft_load_flags), AV_OPT_TYPE_FLAGS, { .i64 = FT_LOAD_DEFAULT }, 0, INT_MAX, FLAGS, "ft_load_flags" },
8ec464c6
         { "default",                     NULL, 0, AV_OPT_TYPE_CONST, { .i64 = FT_LOAD_DEFAULT },                     .flags = FLAGS, .unit = "ft_load_flags" },
         { "no_scale",                    NULL, 0, AV_OPT_TYPE_CONST, { .i64 = FT_LOAD_NO_SCALE },                    .flags = FLAGS, .unit = "ft_load_flags" },
         { "no_hinting",                  NULL, 0, AV_OPT_TYPE_CONST, { .i64 = FT_LOAD_NO_HINTING },                  .flags = FLAGS, .unit = "ft_load_flags" },
         { "render",                      NULL, 0, AV_OPT_TYPE_CONST, { .i64 = FT_LOAD_RENDER },                      .flags = FLAGS, .unit = "ft_load_flags" },
         { "no_bitmap",                   NULL, 0, AV_OPT_TYPE_CONST, { .i64 = FT_LOAD_NO_BITMAP },                   .flags = FLAGS, .unit = "ft_load_flags" },
         { "vertical_layout",             NULL, 0, AV_OPT_TYPE_CONST, { .i64 = FT_LOAD_VERTICAL_LAYOUT },             .flags = FLAGS, .unit = "ft_load_flags" },
         { "force_autohint",              NULL, 0, AV_OPT_TYPE_CONST, { .i64 = FT_LOAD_FORCE_AUTOHINT },              .flags = FLAGS, .unit = "ft_load_flags" },
         { "crop_bitmap",                 NULL, 0, AV_OPT_TYPE_CONST, { .i64 = FT_LOAD_CROP_BITMAP },                 .flags = FLAGS, .unit = "ft_load_flags" },
         { "pedantic",                    NULL, 0, AV_OPT_TYPE_CONST, { .i64 = FT_LOAD_PEDANTIC },                    .flags = FLAGS, .unit = "ft_load_flags" },
         { "ignore_global_advance_width", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = FT_LOAD_IGNORE_GLOBAL_ADVANCE_WIDTH }, .flags = FLAGS, .unit = "ft_load_flags" },
         { "no_recurse",                  NULL, 0, AV_OPT_TYPE_CONST, { .i64 = FT_LOAD_NO_RECURSE },                  .flags = FLAGS, .unit = "ft_load_flags" },
         { "ignore_transform",            NULL, 0, AV_OPT_TYPE_CONST, { .i64 = FT_LOAD_IGNORE_TRANSFORM },            .flags = FLAGS, .unit = "ft_load_flags" },
         { "monochrome",                  NULL, 0, AV_OPT_TYPE_CONST, { .i64 = FT_LOAD_MONOCHROME },                  .flags = FLAGS, .unit = "ft_load_flags" },
         { "linear_design",               NULL, 0, AV_OPT_TYPE_CONST, { .i64 = FT_LOAD_LINEAR_DESIGN },               .flags = FLAGS, .unit = "ft_load_flags" },
         { "no_autohint",                 NULL, 0, AV_OPT_TYPE_CONST, { .i64 = FT_LOAD_NO_AUTOHINT },                 .flags = FLAGS, .unit = "ft_load_flags" },
b211607b
     { NULL }
a5b64584
 };
 
c17808ce
 AVFILTER_DEFINE_CLASS(drawtext);
a5b64584
 
 #undef __FTERRORS_H__
 #define FT_ERROR_START_LIST {
 #define FT_ERRORDEF(e, v, s) { (e), (s) },
 #define FT_ERROR_END_LIST { 0, NULL } };
 
ca6f0f85
 static const struct ft_error {
a5b64584
     int err;
     const char *err_msg;
6d7aa437
 } ft_errors[] =
a5b64584
 #include FT_ERRORS_H
 
 #define FT_ERRMSG(e) ft_errors[e].err_msg
 
58400ac1
 typedef struct Glyph {
85eabd74
     FT_Glyph glyph;
4582e116
     FT_Glyph border_glyph;
a5b64584
     uint32_t code;
6442e4ab
     unsigned int fontsize;
a5b64584
     FT_Bitmap bitmap; ///< array holding bitmaps of font
78a9f185
     FT_Bitmap border_bitmap; ///< array holding bitmaps of font border
a5b64584
     FT_BBox bbox;
     int advance;
     int bitmap_left;
     int bitmap_top;
 } Glyph;
 
7c8fcbbd
 static int glyph_cmp(const void *key, const void *b)
a5b64584
 {
     const Glyph *a = key, *bb = b;
     int64_t diff = (int64_t)a->code - (int64_t)bb->code;
6442e4ab
 
     if (diff != 0)
          return diff > 0 ? 1 : -1;
     else
          return FFDIFFSIGN((int64_t)a->fontsize, (int64_t)bb->fontsize);
a5b64584
 }
 
 /**
  * Load glyphs corresponding to the UTF-32 codepoint code.
  */
 static int load_glyph(AVFilterContext *ctx, Glyph **glyph_ptr, uint32_t code)
 {
d3735f7a
     DrawTextContext *s = ctx->priv;
222fb827
     FT_BitmapGlyph bitmapglyph;
a5b64584
     Glyph *glyph;
     struct AVTreeNode *node = NULL;
     int ret;
 
d3735f7a
     /* load glyph into s->face->glyph */
     if (FT_Load_Char(s->face, code, s->ft_load_flags))
a5b64584
         return AVERROR(EINVAL);
 
85eabd74
     glyph = av_mallocz(sizeof(*glyph));
     if (!glyph) {
a5b64584
         ret = AVERROR(ENOMEM);
         goto error;
     }
     glyph->code  = code;
6442e4ab
     glyph->fontsize = s->fontsize;
a5b64584
 
85eabd74
     if (FT_Get_Glyph(s->face->glyph, &glyph->glyph)) {
a5b64584
         ret = AVERROR(EINVAL);
         goto error;
     }
78a9f185
     if (s->borderw) {
85eabd74
         glyph->border_glyph = glyph->glyph;
4582e116
         if (FT_Glyph_StrokeBorder(&glyph->border_glyph, s->stroker, 0, 0) ||
             FT_Glyph_To_Bitmap(&glyph->border_glyph, FT_RENDER_MODE_NORMAL, 0, 1)) {
78a9f185
             ret = AVERROR_EXTERNAL;
             goto error;
         }
4582e116
         bitmapglyph = (FT_BitmapGlyph) glyph->border_glyph;
78a9f185
         glyph->border_bitmap = bitmapglyph->bitmap;
     }
85eabd74
     if (FT_Glyph_To_Bitmap(&glyph->glyph, FT_RENDER_MODE_NORMAL, 0, 1)) {
222fb827
         ret = AVERROR_EXTERNAL;
         goto error;
     }
85eabd74
     bitmapglyph = (FT_BitmapGlyph) glyph->glyph;
a5b64584
 
222fb827
     glyph->bitmap      = bitmapglyph->bitmap;
     glyph->bitmap_left = bitmapglyph->left;
     glyph->bitmap_top  = bitmapglyph->top;
d3735f7a
     glyph->advance     = s->face->glyph->advance.x >> 6;
a5b64584
 
     /* measure text height to calculate text_height (or the maximum text height) */
85eabd74
     FT_Glyph_Get_CBox(glyph->glyph, ft_glyph_bbox_pixels, &glyph->bbox);
a5b64584
 
     /* cache the newly created glyph */
b68aac7e
     if (!(node = av_tree_node_alloc())) {
a5b64584
         ret = AVERROR(ENOMEM);
         goto error;
     }
d3735f7a
     av_tree_insert(&s->glyphs, glyph, glyph_cmp, &node);
a5b64584
 
     if (glyph_ptr)
         *glyph_ptr = glyph;
     return 0;
 
 error:
     if (glyph)
         av_freep(&glyph->glyph);
4582e116
 
a5b64584
     av_freep(&glyph);
     av_freep(&node);
     return ret;
 }
 
6442e4ab
 static av_cold int set_fontsize(AVFilterContext *ctx, unsigned int fontsize)
 {
     int err;
     DrawTextContext *s = ctx->priv;
 
     if ((err = FT_Set_Pixel_Sizes(s->face, 0, fontsize))) {
         av_log(ctx, AV_LOG_ERROR, "Could not set font size to %d pixels: %s\n",
                fontsize, FT_ERRMSG(err));
         return AVERROR(EINVAL);
     }
 
     s->fontsize = fontsize;
 
     return 0;
 }
 
 static av_cold int parse_fontsize(AVFilterContext *ctx)
 {
     DrawTextContext *s = ctx->priv;
     int err;
 
     if (s->fontsize_pexpr)
         return 0;
 
     if (s->fontsize_expr == NULL)
         return AVERROR(EINVAL);
 
     if ((err = av_expr_parse(&s->fontsize_pexpr, s->fontsize_expr, var_names,
                              NULL, NULL, fun2_names, fun2, 0, ctx)) < 0)
         return err;
 
     return 0;
 }
 
 static av_cold int update_fontsize(AVFilterContext *ctx)
 {
     DrawTextContext *s = ctx->priv;
     unsigned int fontsize = s->default_fontsize;
     int err;
     double size, roundedsize;
 
     // if no fontsize specified use the default
     if (s->fontsize_expr != NULL) {
         if ((err = parse_fontsize(ctx)) < 0)
            return err;
 
         size = av_expr_eval(s->fontsize_pexpr, s->var_values, &s->prng);
 
         if (!isnan(size)) {
             roundedsize = round(size);
             // test for overflow before cast
             if (!(roundedsize > INT_MIN && roundedsize < INT_MAX)) {
                 av_log(ctx, AV_LOG_ERROR, "fontsize overflow\n");
                 return AVERROR(EINVAL);
             }
 
             fontsize = roundedsize;
         }
     }
 
     if (fontsize == 0)
         fontsize = 1;
 
     // no change
     if (fontsize == s->fontsize)
         return 0;
 
     return set_fontsize(ctx, fontsize);
 }
 
443261cb
 static int load_font_file(AVFilterContext *ctx, const char *path, int index)
40b7a27b
 {
04dd5dde
     DrawTextContext *s = ctx->priv;
40b7a27b
     int err;
 
04dd5dde
     err = FT_New_Face(s->library, path, index, &s->face);
40b7a27b
     if (err) {
1d6308db
 #if !CONFIG_LIBFONTCONFIG
443261cb
         av_log(ctx, AV_LOG_ERROR, "Could not load font \"%s\": %s\n",
                s->fontfile, FT_ERRMSG(err));
1d6308db
 #endif
40b7a27b
         return AVERROR(EINVAL);
     }
     return 0;
 }
 
443261cb
 #if CONFIG_LIBFONTCONFIG
 static int load_font_fontconfig(AVFilterContext *ctx)
40b7a27b
 {
04dd5dde
     DrawTextContext *s = ctx->priv;
40b7a27b
     FcConfig *fontconfig;
f1b239ec
     FcPattern *pat, *best;
40b7a27b
     FcResult result = FcResultMatch;
     FcChar8 *filename;
443261cb
     int index;
40b7a27b
     double size;
f1b239ec
     int err = AVERROR(ENOENT);
6442e4ab
     int parse_err;
40b7a27b
 
     fontconfig = FcInitLoadConfigAndFonts();
     if (!fontconfig) {
443261cb
         av_log(ctx, AV_LOG_ERROR, "impossible to init fontconfig\n");
f1b239ec
         return AVERROR_UNKNOWN;
40b7a27b
     }
443261cb
     pat = FcNameParse(s->fontfile ? s->fontfile :
40b7a27b
                           (uint8_t *)(intptr_t)"default");
443261cb
     if (!pat) {
         av_log(ctx, AV_LOG_ERROR, "could not parse fontconfig pat");
40b7a27b
         return AVERROR(EINVAL);
     }
f1b239ec
 
     FcPatternAddString(pat, FC_FAMILY, s->font);
6442e4ab
 
     parse_err = parse_fontsize(ctx);
     if (!parse_err) {
         double size = av_expr_eval(s->fontsize_pexpr, s->var_values, &s->prng);
 
         if (isnan(size)) {
             av_log(ctx, AV_LOG_ERROR, "impossible to find font information");
             return AVERROR(EINVAL);
         }
 
         FcPatternAddDouble(pat, FC_SIZE, size);
     }
f1b239ec
 
     FcDefaultSubstitute(pat);
 
443261cb
     if (!FcConfigSubstitute(fontconfig, pat, FcMatchPattern)) {
         av_log(ctx, AV_LOG_ERROR, "could not substitue fontconfig options"); /* very unlikely */
f1b239ec
         FcPatternDestroy(pat);
         return AVERROR(ENOMEM);
40b7a27b
     }
f1b239ec
 
443261cb
     best = FcFontMatch(fontconfig, pat, &result);
f1b239ec
     FcPatternDestroy(pat);
 
443261cb
     if (!best || result != FcResultMatch) {
         av_log(ctx, AV_LOG_ERROR,
                "Cannot find a valid font for the family %s\n",
f1b239ec
                s->font);
         goto fail;
40b7a27b
     }
f1b239ec
 
443261cb
     if (
         FcPatternGetInteger(best, FC_INDEX, 0, &index   ) != FcResultMatch ||
         FcPatternGetDouble (best, FC_SIZE,  0, &size    ) != FcResultMatch) {
         av_log(ctx, AV_LOG_ERROR, "impossible to find font information");
40b7a27b
         return AVERROR(EINVAL);
     }
f1b239ec
 
443261cb
     if (FcPatternGetString(best, FC_FILE, 0, &filename) != FcResultMatch) {
f1b239ec
         av_log(ctx, AV_LOG_ERROR, "No file path for %s\n",
                s->font);
         goto fail;
     }
 
40b7a27b
     av_log(ctx, AV_LOG_INFO, "Using \"%s\"\n", filename);
6442e4ab
     if (parse_err)
         s->default_fontsize = size + 0.5;
f1b239ec
 
443261cb
     err = load_font_file(ctx, filename, index);
40b7a27b
     if (err)
         return err;
     FcConfigDestroy(fontconfig);
f1b239ec
 fail:
     FcPatternDestroy(best);
     return err;
40b7a27b
 }
 #endif
 
 static int load_font(AVFilterContext *ctx)
 {
04dd5dde
     DrawTextContext *s = ctx->priv;
40b7a27b
     int err;
 
     /* load the face, and set up the encoding, which is by default UTF-8 */
443261cb
     err = load_font_file(ctx, s->fontfile, 0);
40b7a27b
     if (!err)
         return 0;
443261cb
 #if CONFIG_LIBFONTCONFIG
     err = load_font_fontconfig(ctx);
40b7a27b
     if (!err)
         return 0;
 #endif
     return err;
 }
 
0444733b
 static int load_textfile(AVFilterContext *ctx)
 {
04dd5dde
     DrawTextContext *s = ctx->priv;
0444733b
     int err;
     uint8_t *textbuf;
6956b048
     uint8_t *tmp;
0444733b
     size_t textbuf_size;
 
04dd5dde
     if ((err = av_file_map(s->textfile, &textbuf, &textbuf_size, 0, ctx)) < 0) {
0444733b
         av_log(ctx, AV_LOG_ERROR,
                "The text file '%s' could not be read or is empty\n",
04dd5dde
                s->textfile);
0444733b
         return err;
     }
 
0b2f860d
     if (textbuf_size > SIZE_MAX - 1 || !(tmp = av_realloc(s->text, textbuf_size + 1))) {
6956b048
         av_file_unmap(textbuf, textbuf_size);
0444733b
         return AVERROR(ENOMEM);
6956b048
     }
     s->text = tmp;
04dd5dde
     memcpy(s->text, textbuf, textbuf_size);
     s->text[textbuf_size] = 0;
0444733b
     av_file_unmap(textbuf, textbuf_size);
 
     return 0;
 }
 
a0b71e9f
 static inline int is_newline(uint32_t c)
 {
     return c == '\n' || c == '\r' || c == '\f' || c == '\v';
 }
 
 #if CONFIG_LIBFRIBIDI
 static int shape_text(AVFilterContext *ctx)
 {
     DrawTextContext *s = ctx->priv;
     uint8_t *tmp;
     int ret = AVERROR(ENOMEM);
     static const FriBidiFlags flags = FRIBIDI_FLAGS_DEFAULT |
                                       FRIBIDI_FLAGS_ARABIC;
     FriBidiChar *unicodestr = NULL;
     FriBidiStrIndex len;
     FriBidiParType direction = FRIBIDI_PAR_LTR;
     FriBidiStrIndex line_start = 0;
     FriBidiStrIndex line_end = 0;
     FriBidiLevel *embedding_levels = NULL;
     FriBidiArabicProp *ar_props = NULL;
     FriBidiCharType *bidi_types = NULL;
     FriBidiStrIndex i,j;
 
     len = strlen(s->text);
     if (!(unicodestr = av_malloc_array(len, sizeof(*unicodestr)))) {
         goto out;
     }
     len = fribidi_charset_to_unicode(FRIBIDI_CHAR_SET_UTF8,
                                      s->text, len, unicodestr);
 
     bidi_types = av_malloc_array(len, sizeof(*bidi_types));
     if (!bidi_types) {
         goto out;
     }
 
     fribidi_get_bidi_types(unicodestr, len, bidi_types);
 
     embedding_levels = av_malloc_array(len, sizeof(*embedding_levels));
     if (!embedding_levels) {
         goto out;
     }
 
     if (!fribidi_get_par_embedding_levels(bidi_types, len, &direction,
                                           embedding_levels)) {
         goto out;
     }
 
     ar_props = av_malloc_array(len, sizeof(*ar_props));
     if (!ar_props) {
         goto out;
     }
 
     fribidi_get_joining_types(unicodestr, len, ar_props);
     fribidi_join_arabic(bidi_types, len, embedding_levels, ar_props);
     fribidi_shape(flags, embedding_levels, len, ar_props, unicodestr);
 
     for (line_end = 0, line_start = 0; line_end < len; line_end++) {
         if (is_newline(unicodestr[line_end]) || line_end == len - 1) {
             if (!fribidi_reorder_line(flags, bidi_types,
                                       line_end - line_start + 1, line_start,
                                       direction, embedding_levels, unicodestr,
                                       NULL)) {
                 goto out;
             }
             line_start = line_end + 1;
         }
     }
 
     /* Remove zero-width fill chars put in by libfribidi */
     for (i = 0, j = 0; i < len; i++)
         if (unicodestr[i] != FRIBIDI_CHAR_FILL)
             unicodestr[j++] = unicodestr[i];
     len = j;
 
     if (!(tmp = av_realloc(s->text, (len * 4 + 1) * sizeof(*s->text)))) {
         /* Use len * 4, as a unicode character can be up to 4 bytes in UTF-8 */
         goto out;
     }
 
     s->text = tmp;
     len = fribidi_unicode_to_charset(FRIBIDI_CHAR_SET_UTF8,
                                      unicodestr, len, s->text);
     ret = 0;
 
 out:
     av_free(unicodestr);
     av_free(embedding_levels);
     av_free(ar_props);
     av_free(bidi_types);
     return ret;
 }
 #endif
 
d69a4177
 static av_cold int init(AVFilterContext *ctx)
a5b64584
 {
     int err;
d3735f7a
     DrawTextContext *s = ctx->priv;
a5b64584
     Glyph *glyph;
 
6442e4ab
     av_expr_free(s->fontsize_pexpr);
     s->fontsize_pexpr = NULL;
 
     s->fontsize = 0;
     s->default_fontsize = 16;
 
443261cb
     if (!s->fontfile && !CONFIG_LIBFONTCONFIG) {
a5b64584
         av_log(ctx, AV_LOG_ERROR, "No font filename provided\n");
         return AVERROR(EINVAL);
     }
 
d3735f7a
     if (s->textfile) {
         if (s->text) {
a5b64584
             av_log(ctx, AV_LOG_ERROR,
                    "Both text and text file provided. Please provide only one\n");
             return AVERROR(EINVAL);
         }
0444733b
         if ((err = load_textfile(ctx)) < 0)
a5b64584
             return err;
     }
 
04dd5dde
     if (s->reload && !s->textfile)
0444733b
         av_log(ctx, AV_LOG_WARNING, "No file to reload\n");
 
04dd5dde
     if (s->tc_opt_string) {
         int ret = av_timecode_init_from_string(&s->tc, s->tc_rate,
                                                s->tc_opt_string, ctx);
f65600d5
         if (ret < 0)
             return ret;
04dd5dde
         if (s->tc24hmax)
             s->tc.flags |= AV_TIMECODE_FLAG_24HOURSMAX;
         if (!s->text)
             s->text = av_strdup("");
fa4e30af
     }
 
d3735f7a
     if (!s->text) {
a5b64584
         av_log(ctx, AV_LOG_ERROR,
fa4e30af
                "Either text, a valid file or a timecode must be provided\n");
a5b64584
         return AVERROR(EINVAL);
     }
 
4cb26c3c
 #if CONFIG_LIBFRIBIDI
     if (s->text_shaping)
         if ((err = shape_text(ctx)) < 0)
             return err;
 #endif
 
d3735f7a
     if ((err = FT_Init_FreeType(&(s->library)))) {
a5b64584
         av_log(ctx, AV_LOG_ERROR,
                "Could not load FreeType: %s\n", FT_ERRMSG(err));
         return AVERROR(EINVAL);
     }
 
6442e4ab
     if ((err = load_font(ctx)) < 0)
         return err;
 
     if ((err = update_fontsize(ctx)) < 0)
40b7a27b
         return err;
a5b64584
 
78a9f185
     if (s->borderw) {
         if (FT_Stroker_New(s->library, &s->stroker)) {
             av_log(ctx, AV_LOG_ERROR, "Coult not init FT stroker\n");
             return AVERROR_EXTERNAL;
         }
         FT_Stroker_Set(s->stroker, s->borderw << 6, FT_STROKER_LINECAP_ROUND,
                        FT_STROKER_LINEJOIN_ROUND, 0);
     }
 
d3735f7a
     s->use_kerning = FT_HAS_KERNING(s->face);
a5b64584
 
     /* load the fallback glyph with code 0 */
     load_glyph(ctx, NULL, 0);
 
     /* set the tabsize in pixels */
2f0f9a87
     if ((err = load_glyph(ctx, &glyph, ' ')) < 0) {
a5b64584
         av_log(ctx, AV_LOG_ERROR, "Could not set tabsize.\n");
         return err;
     }
d3735f7a
     s->tabsize *= glyph->advance;
a5b64584
 
04dd5dde
     if (s->exp_mode == EXP_STRFTIME &&
         (strchr(s->text, '%') || strchr(s->text, '\\')))
c437c251
         av_log(ctx, AV_LOG_WARNING, "expansion=strftime is deprecated.\n");
 
04dd5dde
     av_bprint_init(&s->expanded_text, 0, AV_BPRINT_SIZE_UNLIMITED);
e9ff5df0
     av_bprint_init(&s->expanded_fontcolor, 0, AV_BPRINT_SIZE_UNLIMITED);
29e388ab
 
a5b64584
     return 0;
 }
 
 static int query_formats(AVFilterContext *ctx)
 {
a0854c08
     return ff_set_common_formats(ctx, ff_draw_supported_pixel_formats(0));
a5b64584
 }
 
 static int glyph_enu_free(void *opaque, void *elem)
 {
423047ea
     Glyph *glyph = elem;
 
85eabd74
     FT_Done_Glyph(glyph->glyph);
4582e116
     FT_Done_Glyph(glyph->border_glyph);
a5b64584
     av_free(elem);
     return 0;
 }
 
 static av_cold void uninit(AVFilterContext *ctx)
 {
d3735f7a
     DrawTextContext *s = ctx->priv;
a5b64584
 
3fb29588
     av_expr_free(s->x_pexpr);
     av_expr_free(s->y_pexpr);
4cca2f74
     av_expr_free(s->a_pexpr);
6442e4ab
     av_expr_free(s->fontsize_pexpr);
 
     s->x_pexpr = s->y_pexpr = s->a_pexpr = s->fontsize_pexpr = NULL;
 
d3735f7a
     av_freep(&s->positions);
04dd5dde
     s->nb_positions = 0;
3de68420
 
d3735f7a
     av_tree_enumerate(s->glyphs, NULL, NULL, glyph_enu_free);
     av_tree_destroy(s->glyphs);
04dd5dde
     s->glyphs = NULL;
3de68420
 
d3735f7a
     FT_Done_Face(s->face);
78a9f185
     FT_Stroker_Done(s->stroker);
d3735f7a
     FT_Done_FreeType(s->library);
29e388ab
 
04dd5dde
     av_bprint_finalize(&s->expanded_text, NULL);
e9ff5df0
     av_bprint_finalize(&s->expanded_fontcolor, NULL);
a5b64584
 }
 
 static int config_input(AVFilterLink *inlink)
 {
482ce0ce
     AVFilterContext *ctx = inlink->dst;
d3735f7a
     DrawTextContext *s = ctx->priv;
a5b64584
     int ret;
 
9d16e46d
     ff_draw_init(&s->dc, inlink->format, FF_DRAW_PROCESS_ALPHA);
04dd5dde
     ff_draw_color(&s->dc, &s->fontcolor,   s->fontcolor.rgba);
     ff_draw_color(&s->dc, &s->shadowcolor, s->shadowcolor.rgba);
78a9f185
     ff_draw_color(&s->dc, &s->bordercolor, s->bordercolor.rgba);
04dd5dde
     ff_draw_color(&s->dc, &s->boxcolor,    s->boxcolor.rgba);
 
     s->var_values[VAR_w]     = s->var_values[VAR_W]     = s->var_values[VAR_MAIN_W] = inlink->w;
     s->var_values[VAR_h]     = s->var_values[VAR_H]     = s->var_values[VAR_MAIN_H] = inlink->h;
     s->var_values[VAR_SAR]   = inlink->sample_aspect_ratio.num ? av_q2d(inlink->sample_aspect_ratio) : 1;
     s->var_values[VAR_DAR]   = (double)inlink->w / inlink->h * s->var_values[VAR_SAR];
     s->var_values[VAR_HSUB]  = 1 << s->dc.hsub_max;
     s->var_values[VAR_VSUB]  = 1 << s->dc.vsub_max;
     s->var_values[VAR_X]     = NAN;
     s->var_values[VAR_Y]     = NAN;
     s->var_values[VAR_T]     = NAN;
ec11ff84
 
04dd5dde
     av_lfg_init(&s->prng, av_get_random_seed());
ec11ff84
 
71fcb607
     av_expr_free(s->x_pexpr);
     av_expr_free(s->y_pexpr);
4cca2f74
     av_expr_free(s->a_pexpr);
     s->x_pexpr = s->y_pexpr = s->a_pexpr = NULL;
30d40c9e
 
04dd5dde
     if ((ret = av_expr_parse(&s->x_pexpr, s->x_expr, var_names,
8e2bab5d
                              NULL, NULL, fun2_names, fun2, 0, ctx)) < 0 ||
04dd5dde
         (ret = av_expr_parse(&s->y_pexpr, s->y_expr, var_names,
12215016
                              NULL, NULL, fun2_names, fun2, 0, ctx)) < 0 ||
         (ret = av_expr_parse(&s->a_pexpr, s->a_expr, var_names,
8e2bab5d
                              NULL, NULL, fun2_names, fun2, 0, ctx)) < 0)
 
482ce0ce
         return AVERROR(EINVAL);
 
a5b64584
     return 0;
 }
 
f782ce3b
 static int command(AVFilterContext *ctx, const char *cmd, const char *arg, char *res, int res_len, int flags)
 {
04dd5dde
     DrawTextContext *s = ctx->priv;
80daa247
 
9921613e
     if (!strcmp(cmd, "reinit")) {
b881a2e2
         int ret;
f782ce3b
         uninit(ctx);
04dd5dde
         s->reinit = 1;
6d7119db
         if ((ret = av_set_options_string(ctx, arg, "=", ":")) < 0)
             return ret;
fd6228e6
         if ((ret = init(ctx)) < 0)
b881a2e2
             return ret;
         return config_input(ctx->inputs[0]);
f782ce3b
     }
 
     return AVERROR(ENOSYS);
 }
 
a9a537b1
 static int func_pict_type(AVFilterContext *ctx, AVBPrint *bp,
                           char *fct, unsigned argc, char **argv, int tag)
 {
04dd5dde
     DrawTextContext *s = ctx->priv;
a9a537b1
 
04dd5dde
     av_bprintf(bp, "%c", av_get_picture_type_char(s->var_values[VAR_PICT_TYPE]));
a9a537b1
     return 0;
 }
 
c437c251
 static int func_pts(AVFilterContext *ctx, AVBPrint *bp,
                     char *fct, unsigned argc, char **argv, int tag)
 {
04dd5dde
     DrawTextContext *s = ctx->priv;
41334fca
     const char *fmt;
     double pts = s->var_values[VAR_T];
     int ret;
c437c251
 
41334fca
     fmt = argc >= 1 ? argv[0] : "flt";
     if (argc >= 2) {
         int64_t delta;
         if ((ret = av_parse_time(&delta, argv[1], 1)) < 0) {
             av_log(ctx, AV_LOG_ERROR, "Invalid delta '%s'\n", argv[1]);
             return ret;
         }
         pts += (double)delta / AV_TIME_BASE;
     }
     if (!strcmp(fmt, "flt")) {
88db6c28
         av_bprintf(bp, "%.6f", pts);
41334fca
     } else if (!strcmp(fmt, "hms")) {
         if (isnan(pts)) {
             av_bprintf(bp, " ??:??:??.???");
         } else {
ff1442a5
             int64_t ms = llrint(pts * 1000);
41334fca
             char sign = ' ';
             if (ms < 0) {
                 sign = '-';
                 ms = -ms;
             }
             av_bprintf(bp, "%c%02d:%02d:%02d.%03d", sign,
                        (int)(ms / (60 * 60 * 1000)),
                        (int)(ms / (60 * 1000)) % 60,
                        (int)(ms / 1000) % 60,
ae9f2e6f
                        (int)(ms % 1000));
41334fca
         }
cf28490e
     } else if (!strcmp(fmt, "localtime") ||
                !strcmp(fmt, "gmtime")) {
         struct tm tm;
         time_t ms = (time_t)pts;
         const char *timefmt = argc >= 3 ? argv[2] : "%Y-%m-%d %H:%M:%S";
         if (!strcmp(fmt, "localtime"))
             localtime_r(&ms, &tm);
         else
             gmtime_r(&ms, &tm);
         av_bprint_strftime(bp, timefmt, &tm);
41334fca
     } else {
         av_log(ctx, AV_LOG_ERROR, "Invalid format '%s'\n", fmt);
         return AVERROR(EINVAL);
     }
c437c251
     return 0;
 }
 
eb87b340
 static int func_frame_num(AVFilterContext *ctx, AVBPrint *bp,
                           char *fct, unsigned argc, char **argv, int tag)
 {
04dd5dde
     DrawTextContext *s = ctx->priv;
eb87b340
 
2090abcc
     av_bprintf(bp, "%d", (int)s->var_values[VAR_N]);
eb87b340
     return 0;
 }
 
c5a1b18f
 static int func_metadata(AVFilterContext *ctx, AVBPrint *bp,
                          char *fct, unsigned argc, char **argv, int tag)
 {
     DrawTextContext *s = ctx->priv;
     AVDictionaryEntry *e = av_dict_get(s->metadata, argv[0], NULL, 0);
 
     if (e && e->value)
         av_bprintf(bp, "%s", e->value);
ee104580
     else if (argc >= 2)
         av_bprintf(bp, "%s", argv[1]);
c5a1b18f
     return 0;
 }
 
c437c251
 static int func_strftime(AVFilterContext *ctx, AVBPrint *bp,
                          char *fct, unsigned argc, char **argv, int tag)
 {
     const char *fmt = argc ? argv[0] : "%Y-%m-%d %H:%M:%S";
     time_t now;
     struct tm tm;
 
     time(&now);
     if (tag == 'L')
         localtime_r(&now, &tm);
     else
013c3eb0
         tm = *gmtime_r(&now, &tm);
c437c251
     av_bprint_strftime(bp, fmt, &tm);
     return 0;
 }
 
2ac6a3d1
 static int func_eval_expr(AVFilterContext *ctx, AVBPrint *bp,
                           char *fct, unsigned argc, char **argv, int tag)
 {
d3735f7a
     DrawTextContext *s = ctx->priv;
2ac6a3d1
     double res;
     int ret;
 
04dd5dde
     ret = av_expr_parse_and_eval(&res, argv[0], var_names, s->var_values,
2ac6a3d1
                                  NULL, NULL, fun2_names, fun2,
04dd5dde
                                  &s->prng, 0, ctx);
2ac6a3d1
     if (ret < 0)
         av_log(ctx, AV_LOG_ERROR,
                "Expression '%s' for the expr text expansion function is not valid\n",
                argv[0]);
     else
         av_bprintf(bp, "%f", res);
 
     return ret;
 }
 
dec87454
 static int func_eval_expr_int_format(AVFilterContext *ctx, AVBPrint *bp,
                           char *fct, unsigned argc, char **argv, int tag)
 {
     DrawTextContext *s = ctx->priv;
     double res;
     int intval;
     int ret;
     unsigned int positions = 0;
     char fmt_str[30] = "%";
 
     /*
      * argv[0] expression to be converted to `int`
      * argv[1] format: 'x', 'X', 'd' or 'u'
      * argv[2] positions printed (optional)
      */
 
     ret = av_expr_parse_and_eval(&res, argv[0], var_names, s->var_values,
                                  NULL, NULL, fun2_names, fun2,
                                  &s->prng, 0, ctx);
     if (ret < 0) {
         av_log(ctx, AV_LOG_ERROR,
                "Expression '%s' for the expr text expansion function is not valid\n",
                argv[0]);
         return ret;
     }
 
     if (!strchr("xXdu", argv[1][0])) {
         av_log(ctx, AV_LOG_ERROR, "Invalid format '%c' specified,"
                 " allowed values: 'x', 'X', 'd', 'u'\n", argv[1][0]);
         return AVERROR(EINVAL);
     }
 
     if (argc == 3) {
         ret = sscanf(argv[2], "%u", &positions);
         if (ret != 1) {
cb8cb85d
             av_log(ctx, AV_LOG_ERROR, "expr_int_format(): Invalid number of positions"
dec87454
                     " to print: '%s'\n", argv[2]);
             return AVERROR(EINVAL);
         }
     }
 
     feclearexcept(FE_ALL_EXCEPT);
     intval = res;
     if ((ret = fetestexcept(FE_INVALID|FE_OVERFLOW|FE_UNDERFLOW))) {
         av_log(ctx, AV_LOG_ERROR, "Conversion of floating-point result to int failed. Control register: 0x%08x. Conversion result: %d\n", ret, intval);
         return AVERROR(EINVAL);
     }
 
     if (argc == 3)
         av_strlcatf(fmt_str, sizeof(fmt_str), "0%u", positions);
     av_strlcatf(fmt_str, sizeof(fmt_str), "%c", argv[1][0]);
 
     av_log(ctx, AV_LOG_DEBUG, "Formatting value %f (expr '%s') with spec '%s'\n",
             res, argv[0], fmt_str);
 
     av_bprintf(bp, fmt_str, intval);
 
     return 0;
 }
 
c437c251
 static const struct drawtext_function {
     const char *name;
     unsigned argc_min, argc_max;
b5be1a7e
     int tag;                            /**< opaque argument to func */
c437c251
     int (*func)(AVFilterContext *, AVBPrint *, char *, unsigned, char **, int);
 } functions[] = {
2ac6a3d1
     { "expr",      1, 1, 0,   func_eval_expr },
     { "e",         1, 1, 0,   func_eval_expr },
cb8cb85d
     { "expr_int_format", 2, 3, 0, func_eval_expr_int_format },
dec87454
     { "eif",       2, 3, 0,   func_eval_expr_int_format },
a9a537b1
     { "pict_type", 0, 0, 0,   func_pict_type },
cf28490e
     { "pts",       0, 3, 0,   func_pts      },
c437c251
     { "gmtime",    0, 1, 'G', func_strftime },
     { "localtime", 0, 1, 'L', func_strftime },
eb87b340
     { "frame_num", 0, 0, 0,   func_frame_num },
     { "n",         0, 0, 0,   func_frame_num },
ee104580
     { "metadata",  1, 2, 0,   func_metadata },
c437c251
 };
 
 static int eval_function(AVFilterContext *ctx, AVBPrint *bp, char *fct,
                          unsigned argc, char **argv)
 {
     unsigned i;
 
     for (i = 0; i < FF_ARRAY_ELEMS(functions); i++) {
         if (strcmp(fct, functions[i].name))
             continue;
         if (argc < functions[i].argc_min) {
             av_log(ctx, AV_LOG_ERROR, "%%{%s} requires at least %d arguments\n",
                    fct, functions[i].argc_min);
             return AVERROR(EINVAL);
         }
         if (argc > functions[i].argc_max) {
             av_log(ctx, AV_LOG_ERROR, "%%{%s} requires at most %d arguments\n",
                    fct, functions[i].argc_max);
             return AVERROR(EINVAL);
         }
         break;
     }
     if (i >= FF_ARRAY_ELEMS(functions)) {
         av_log(ctx, AV_LOG_ERROR, "%%{%s} is not known\n", fct);
         return AVERROR(EINVAL);
     }
     return functions[i].func(ctx, bp, fct, argc, argv, functions[i].tag);
 }
 
 static int expand_function(AVFilterContext *ctx, AVBPrint *bp, char **rtext)
 {
     const char *text = *rtext;
     char *argv[16] = { NULL };
     unsigned argc = 0, i;
     int ret;
 
     if (*text != '{') {
         av_log(ctx, AV_LOG_ERROR, "Stray %% near '%s'\n", text);
         return AVERROR(EINVAL);
     }
     text++;
     while (1) {
         if (!(argv[argc++] = av_get_token(&text, ":}"))) {
             ret = AVERROR(ENOMEM);
             goto end;
         }
         if (!*text) {
             av_log(ctx, AV_LOG_ERROR, "Unterminated %%{} near '%s'\n", *rtext);
             ret = AVERROR(EINVAL);
             goto end;
         }
         if (argc == FF_ARRAY_ELEMS(argv))
             av_freep(&argv[--argc]); /* error will be caught later */
         if (*text == '}')
             break;
         text++;
     }
 
     if ((ret = eval_function(ctx, bp, argv[0], argc - 1, argv + 1)) < 0)
         goto end;
     ret = 0;
     *rtext = (char *)text + 1;
 
 end:
     for (i = 0; i < argc; i++)
         av_freep(&argv[i]);
     return ret;
 }
 
e9ff5df0
 static int expand_text(AVFilterContext *ctx, char *text, AVBPrint *bp)
c437c251
 {
     int ret;
 
     av_bprint_clear(bp);
     while (*text) {
         if (*text == '\\' && text[1]) {
             av_bprint_chars(bp, text[1], 1);
             text += 2;
         } else if (*text == '%') {
             text++;
             if ((ret = expand_function(ctx, bp, &text)) < 0)
                 return ret;
         } else {
             av_bprint_chars(bp, *text, 1);
             text++;
         }
     }
     if (!av_bprint_is_complete(bp))
         return AVERROR(ENOMEM);
     return 0;
 }
 
d3735f7a
 static int draw_glyphs(DrawTextContext *s, AVFrame *frame,
3bb4d26a
                        int width, int height,
12215016
                        FFDrawColor *color,
                        int x, int y, int borderw)
e73127a4
 {
04dd5dde
     char *text = s->expanded_text.str;
e73127a4
     uint32_t code = 0;
482ce0ce
     int i, x1, y1;
e73127a4
     uint8_t *p;
     Glyph *glyph = NULL;
 
     for (i = 0, p = text; *p; i++) {
78a9f185
         FT_Bitmap bitmap;
e73127a4
         Glyph dummy = { 0 };
         GET_UTF8(code, *p++, continue;);
 
         /* skip new line chars, just go to new line */
         if (code == '\n' || code == '\r' || code == '\t')
             continue;
 
         dummy.code = code;
6442e4ab
         dummy.fontsize = s->fontsize;
4c96985a
         glyph = av_tree_find(s->glyphs, &dummy, glyph_cmp, NULL);
e73127a4
 
78a9f185
         bitmap = borderw ? glyph->border_bitmap : glyph->bitmap;
 
e73127a4
         if (glyph->bitmap.pixel_mode != FT_PIXEL_MODE_MONO &&
             glyph->bitmap.pixel_mode != FT_PIXEL_MODE_GRAY)
             return AVERROR(EINVAL);
 
78a9f185
         x1 = s->positions[i].x+s->x+x - borderw;
         y1 = s->positions[i].y+s->y+y - borderw;
482ce0ce
 
04dd5dde
         ff_blend_mask(&s->dc, color,
a05a44e2
                       frame->data, frame->linesize, width, height,
78a9f185
                       bitmap.buffer, bitmap.pitch,
                       bitmap.width, bitmap.rows,
                       bitmap.pixel_mode == FT_PIXEL_MODE_MONO ? 0 : 3,
a63712d3
                       0, x1, y1);
e73127a4
     }
 
     return 0;
 }
 
2cf74eca
 
12215016
 static void update_color_with_alpha(DrawTextContext *s, FFDrawColor *color, const FFDrawColor incolor)
 {
     *color = incolor;
     color->rgba[3] = (color->rgba[3] * s->alpha) / 255;
     ff_draw_color(&s->dc, color, color->rgba);
2cf74eca
 }
 
9b2c57be
 static void update_alpha(DrawTextContext *s)
 {
     double alpha = av_expr_eval(s->a_pexpr, s->var_values, &s->prng);
 
     if (isnan(alpha))
         return;
 
     if (alpha >= 1.0)
         s->alpha = 255;
     else if (alpha <= 0)
         s->alpha = 0;
     else
         s->alpha = 256 * alpha;
 }
 
7e350379
 static int draw_text(AVFilterContext *ctx, AVFrame *frame,
a5b64584
                      int width, int height)
 {
d3735f7a
     DrawTextContext *s = ctx->priv;
b8a5c761
     AVFilterLink *inlink = ctx->inputs[0];
04dd5dde
 
a5b64584
     uint32_t code = 0, prev_code = 0;
e73127a4
     int x = 0, y = 0, i = 0, ret;
482ce0ce
     int max_text_line_w = 0, len;
     int box_w, box_h;
ad934bc3
     char *text;
a5b64584
     uint8_t *p;
     int y_min = 32000, y_max = -32000;
482ce0ce
     int x_min = 32000, x_max = -32000;
a5b64584
     FT_Vector delta;
     Glyph *glyph = NULL, *prev_glyph = NULL;
     Glyph dummy = { 0 };
 
e8ea9c21
     time_t now = time(0);
     struct tm ltime;
04dd5dde
     AVBPrint *bp = &s->expanded_text;
29e388ab
 
12215016
     FFDrawColor fontcolor;
     FFDrawColor shadowcolor;
     FFDrawColor bordercolor;
     FFDrawColor boxcolor;
 
29e388ab
     av_bprint_clear(bp);
e8ea9c21
 
04dd5dde
     if(s->basetime != AV_NOPTS_VALUE)
         now= frame->pts*av_q2d(ctx->inputs[0]->time_base) + s->basetime/1000000;
595cfdef
 
04dd5dde
     switch (s->exp_mode) {
c437c251
     case EXP_NONE:
04dd5dde
         av_bprintf(bp, "%s", s->text);
c437c251
         break;
     case EXP_NORMAL:
e9ff5df0
         if ((ret = expand_text(ctx, s->text, &s->expanded_text)) < 0)
c437c251
             return ret;
         break;
     case EXP_STRFTIME:
         localtime_r(&now, &ltime);
04dd5dde
         av_bprint_strftime(bp, s->text, &ltime);
c437c251
         break;
     }
ce207e05
 
04dd5dde
     if (s->tc_opt_string) {
f65600d5
         char tcbuf[AV_TIMECODE_STR_SIZE];
183ce55b
         av_timecode_make_string(&s->tc, tcbuf, inlink->frame_count_out);
29e388ab
         av_bprint_clear(bp);
04dd5dde
         av_bprintf(bp, "%s%s", s->text, tcbuf);
fa4e30af
     }
 
29e388ab
     if (!av_bprint_is_complete(bp))
e8ea9c21
         return AVERROR(ENOMEM);
04dd5dde
     text = s->expanded_text.str;
     if ((len = s->expanded_text.len) > s->nb_positions) {
         if (!(s->positions =
               av_realloc(s->positions, len*sizeof(*s->positions))))
a5b64584
             return AVERROR(ENOMEM);
04dd5dde
         s->nb_positions = len;
a5b64584
     }
 
e9ff5df0
     if (s->fontcolor_expr[0]) {
         /* If expression is set, evaluate and replace the static value */
         av_bprint_clear(&s->expanded_fontcolor);
         if ((ret = expand_text(ctx, s->fontcolor_expr, &s->expanded_fontcolor)) < 0)
             return ret;
         if (!av_bprint_is_complete(&s->expanded_fontcolor))
             return AVERROR(ENOMEM);
         av_log(s, AV_LOG_DEBUG, "Evaluated fontcolor is '%s'\n", s->expanded_fontcolor.str);
         ret = av_parse_color(s->fontcolor.rgba, s->expanded_fontcolor.str, -1, s);
         if (ret)
             return ret;
         ff_draw_color(&s->dc, &s->fontcolor, s->fontcolor.rgba);
     }
 
482ce0ce
     x = 0;
     y = 0;
a5b64584
 
6442e4ab
     if ((ret = update_fontsize(ctx)) < 0)
         return ret;
 
a5b64584
     /* load and cache glyphs */
ce207e05
     for (i = 0, p = text; *p; i++) {
a5b64584
         GET_UTF8(code, *p++, continue;);
 
         /* get glyph */
         dummy.code = code;
6442e4ab
         dummy.fontsize = s->fontsize;
04dd5dde
         glyph = av_tree_find(s->glyphs, &dummy, glyph_cmp, NULL);
b479e016
         if (!glyph) {
2e67a99f
             ret = load_glyph(ctx, &glyph, code);
             if (ret < 0)
                 return ret;
b479e016
         }
a5b64584
 
         y_min = FFMIN(glyph->bbox.yMin, y_min);
         y_max = FFMAX(glyph->bbox.yMax, y_max);
482ce0ce
         x_min = FFMIN(glyph->bbox.xMin, x_min);
         x_max = FFMAX(glyph->bbox.xMax, x_max);
a5b64584
     }
04dd5dde
     s->max_glyph_h = y_max - y_min;
     s->max_glyph_w = x_max - x_min;
a5b64584
 
     /* compute and save position for each glyph */
     glyph = NULL;
ce207e05
     for (i = 0, p = text; *p; i++) {
a5b64584
         GET_UTF8(code, *p++, continue;);
 
         /* skip the \n in the sequence \r\n */
         if (prev_code == '\r' && code == '\n')
             continue;
 
         prev_code = code;
         if (is_newline(code)) {
04dd5dde
 
482ce0ce
             max_text_line_w = FFMAX(max_text_line_w, x);
90096e42
             y += s->max_glyph_h + s->line_spacing;
482ce0ce
             x = 0;
a5b64584
             continue;
         }
 
         /* get glyph */
         prev_glyph = glyph;
         dummy.code = code;
6442e4ab
         dummy.fontsize = s->fontsize;
04dd5dde
         glyph = av_tree_find(s->glyphs, &dummy, glyph_cmp, NULL);
a5b64584
 
         /* kerning */
04dd5dde
         if (s->use_kerning && prev_glyph && glyph->code) {
             FT_Get_Kerning(s->face, prev_glyph->code, glyph->code,
a5b64584
                            ft_kerning_default, &delta);
             x += delta.x >> 6;
         }
 
         /* save position */
04dd5dde
         s->positions[i].x = x + glyph->bitmap_left;
         s->positions[i].y = y - glyph->bitmap_top + y_max;
         if (code == '\t') x  = (x / s->tabsize + 1)*s->tabsize;
a5b64584
         else              x += glyph->advance;
     }
 
482ce0ce
     max_text_line_w = FFMAX(x, max_text_line_w);
 
04dd5dde
     s->var_values[VAR_TW] = s->var_values[VAR_TEXT_W] = max_text_line_w;
     s->var_values[VAR_TH] = s->var_values[VAR_TEXT_H] = y + s->max_glyph_h;
482ce0ce
 
04dd5dde
     s->var_values[VAR_MAX_GLYPH_W] = s->max_glyph_w;
     s->var_values[VAR_MAX_GLYPH_H] = s->max_glyph_h;
     s->var_values[VAR_MAX_GLYPH_A] = s->var_values[VAR_ASCENT ] = y_max;
     s->var_values[VAR_MAX_GLYPH_D] = s->var_values[VAR_DESCENT] = y_min;
482ce0ce
 
04dd5dde
     s->var_values[VAR_LINE_H] = s->var_values[VAR_LH] = s->max_glyph_h;
482ce0ce
 
04dd5dde
     s->x = s->var_values[VAR_X] = av_expr_eval(s->x_pexpr, s->var_values, &s->prng);
     s->y = s->var_values[VAR_Y] = av_expr_eval(s->y_pexpr, s->var_values, &s->prng);
     s->x = s->var_values[VAR_X] = av_expr_eval(s->x_pexpr, s->var_values, &s->prng);
482ce0ce
 
9b2c57be
     update_alpha(s);
12215016
     update_color_with_alpha(s, &fontcolor  , s->fontcolor  );
     update_color_with_alpha(s, &shadowcolor, s->shadowcolor);
     update_color_with_alpha(s, &bordercolor, s->bordercolor);
     update_color_with_alpha(s, &boxcolor   , s->boxcolor   );
 
482ce0ce
     box_w = FFMIN(width - 1 , max_text_line_w);
04dd5dde
     box_h = FFMIN(height - 1, y + s->max_glyph_h);
a5b64584
 
     /* draw box */
d3735f7a
     if (s->draw_box)
12215016
         ff_blend_rectangle(&s->dc, &boxcolor,
a05a44e2
                            frame->data, frame->linesize, width, height,
c84b75c8
                            s->x - s->boxborderw, s->y - s->boxborderw,
                            box_w + s->boxborderw * 2, box_h + s->boxborderw * 2);
a5b64584
 
d3735f7a
     if (s->shadowx || s->shadowy) {
3bb4d26a
         if ((ret = draw_glyphs(s, frame, width, height,
12215016
                                &shadowcolor, s->shadowx, s->shadowy, 0)) < 0)
c5420f10
             return ret;
     }
 
78a9f185
     if (s->borderw) {
3bb4d26a
         if ((ret = draw_glyphs(s, frame, width, height,
12215016
                                &bordercolor, 0, 0, s->borderw)) < 0)
78a9f185
             return ret;
     }
3bb4d26a
     if ((ret = draw_glyphs(s, frame, width, height,
12215016
                            &fontcolor, 0, 0, 0)) < 0)
e73127a4
         return ret;
a5b64584
 
     return 0;
 }
 
7e350379
 static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
a5b64584
 {
482ce0ce
     AVFilterContext *ctx = inlink->dst;
87f5e797
     AVFilterLink *outlink = ctx->outputs[0];
d3735f7a
     DrawTextContext *s = ctx->priv;
d4f89906
     int ret;
a5b64584
 
a0b71e9f
     if (s->reload) {
2051b401
         if ((ret = load_textfile(ctx)) < 0) {
             av_frame_free(&frame);
0444733b
             return ret;
2051b401
         }
a0b71e9f
 #if CONFIG_LIBFRIBIDI
         if (s->text_shaping)
2051b401
             if ((ret = shape_text(ctx)) < 0) {
                 av_frame_free(&frame);
a0b71e9f
                 return ret;
2051b401
             }
a0b71e9f
 #endif
     }
0444733b
 
183ce55b
     s->var_values[VAR_N] = inlink->frame_count_out + s->start_number;
d3735f7a
     s->var_values[VAR_T] = frame->pts == AV_NOPTS_VALUE ?
7bfa2f25
         NAN : frame->pts * av_q2d(inlink->time_base);
482ce0ce
 
04dd5dde
     s->var_values[VAR_PICT_TYPE] = frame->pict_type;
6af050d7
     s->metadata = frame->metadata;
a9a537b1
 
a05a44e2
     draw_text(ctx, frame, frame->width, frame->height);
482ce0ce
 
     av_log(ctx, AV_LOG_DEBUG, "n:%d t:%f text_w:%d text_h:%d x:%d y:%d\n",
04dd5dde
            (int)s->var_values[VAR_N], s->var_values[VAR_T],
            (int)s->var_values[VAR_TEXT_W], (int)s->var_values[VAR_TEXT_H],
            s->x, s->y);
482ce0ce
 
3942294f
     return ff_filter_frame(outlink, frame);
a5b64584
 }
 
568c70e7
 static const AVFilterPad avfilter_vf_drawtext_inputs[] = {
     {
b211607b
         .name           = "default",
         .type           = AVMEDIA_TYPE_VIDEO,
         .filter_frame   = filter_frame,
         .config_props   = config_input,
         .needs_writable = 1,
568c70e7
     },
     { NULL }
 };
 
 static const AVFilterPad avfilter_vf_drawtext_outputs[] = {
     {
         .name = "default",
         .type = AVMEDIA_TYPE_VIDEO,
     },
     { NULL }
 };
 
cd43ca04
 AVFilter ff_vf_drawtext = {
a5b64584
     .name          = "drawtext",
     .description   = NULL_IF_CONFIG_SMALL("Draw text on top of video frames using libfreetype library."),
     .priv_size     = sizeof(DrawTextContext),
8ec464c6
     .priv_class    = &drawtext_class,
a5b64584
     .init          = init,
     .uninit        = uninit,
     .query_formats = query_formats,
b211607b
     .inputs        = avfilter_vf_drawtext_inputs,
     .outputs       = avfilter_vf_drawtext_outputs,
f782ce3b
     .process_command = command,
b211607b
     .flags         = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC,
a5b64584
 };