You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

836 lines
31KB

  1. /*
  2. * Copyright (c) 2011 Stefano Sabatini
  3. * Copyright (c) 2010 S.N. Hemanth Meenakshisundaram
  4. * Copyright (c) 2003 Gustavo Sverzut Barbieri <gsbarbieri@yahoo.com.br>
  5. *
  6. * This file is part of FFmpeg.
  7. *
  8. * FFmpeg is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU Lesser General Public
  10. * License as published by the Free Software Foundation; either
  11. * version 2.1 of the License, or (at your option) any later version.
  12. *
  13. * FFmpeg is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * Lesser General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with FFmpeg; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21. */
  22. /**
  23. * @file
  24. * drawtext filter, based on the original vhook/drawtext.c
  25. * filter by Gustavo Sverzut Barbieri
  26. */
  27. #include <sys/time.h>
  28. #include <time.h>
  29. #include "config.h"
  30. #include "libavutil/avstring.h"
  31. #include "libavutil/file.h"
  32. #include "libavutil/eval.h"
  33. #include "libavutil/opt.h"
  34. #include "libavutil/random_seed.h"
  35. #include "libavutil/parseutils.h"
  36. #include "libavutil/timecode.h"
  37. #include "libavutil/tree.h"
  38. #include "libavutil/lfg.h"
  39. #include "avfilter.h"
  40. #include "drawutils.h"
  41. #include "formats.h"
  42. #include "internal.h"
  43. #include "video.h"
  44. #undef time
  45. #include <ft2build.h>
  46. #include <freetype/config/ftheader.h>
  47. #include FT_FREETYPE_H
  48. #include FT_GLYPH_H
  49. #if CONFIG_FONTCONFIG
  50. #include <fontconfig/fontconfig.h>
  51. #endif
  52. static const char *const var_names[] = {
  53. "dar",
  54. "hsub", "vsub",
  55. "line_h", "lh", ///< line height, same as max_glyph_h
  56. "main_h", "h", "H", ///< height of the input video
  57. "main_w", "w", "W", ///< width of the input video
  58. "max_glyph_a", "ascent", ///< max glyph ascent
  59. "max_glyph_d", "descent", ///< min glyph descent
  60. "max_glyph_h", ///< max glyph height
  61. "max_glyph_w", ///< max glyph width
  62. "n", ///< number of frame
  63. "sar",
  64. "t", ///< timestamp expressed in seconds
  65. "text_h", "th", ///< height of the rendered text
  66. "text_w", "tw", ///< width of the rendered text
  67. "x",
  68. "y",
  69. NULL
  70. };
  71. static const char *const fun2_names[] = {
  72. "rand"
  73. };
  74. static double drand(void *opaque, double min, double max)
  75. {
  76. return min + (max-min) / UINT_MAX * av_lfg_get(opaque);
  77. }
  78. typedef double (*eval_func2)(void *, double a, double b);
  79. static const eval_func2 fun2[] = {
  80. drand,
  81. NULL
  82. };
  83. enum var_name {
  84. VAR_DAR,
  85. VAR_HSUB, VAR_VSUB,
  86. VAR_LINE_H, VAR_LH,
  87. VAR_MAIN_H, VAR_h, VAR_H,
  88. VAR_MAIN_W, VAR_w, VAR_W,
  89. VAR_MAX_GLYPH_A, VAR_ASCENT,
  90. VAR_MAX_GLYPH_D, VAR_DESCENT,
  91. VAR_MAX_GLYPH_H,
  92. VAR_MAX_GLYPH_W,
  93. VAR_N,
  94. VAR_SAR,
  95. VAR_T,
  96. VAR_TEXT_H, VAR_TH,
  97. VAR_TEXT_W, VAR_TW,
  98. VAR_X,
  99. VAR_Y,
  100. VAR_VARS_NB
  101. };
  102. typedef struct {
  103. const AVClass *class;
  104. int reinit; ///< tells if the filter is being reinited
  105. uint8_t *fontfile; ///< font to be used
  106. uint8_t *text; ///< text to be drawn
  107. uint8_t *expanded_text; ///< used to contain the strftime()-expanded text
  108. size_t expanded_text_size; ///< size in bytes of the expanded_text buffer
  109. int ft_load_flags; ///< flags used for loading fonts, see FT_LOAD_*
  110. FT_Vector *positions; ///< positions for each element in the text
  111. size_t nb_positions; ///< number of elements of positions array
  112. char *textfile; ///< file with text to be drawn
  113. int x; ///< x position to start drawing text
  114. int y; ///< y position to start drawing text
  115. int max_glyph_w; ///< max glyph width
  116. int max_glyph_h; ///< max glyph height
  117. int shadowx, shadowy;
  118. unsigned int fontsize; ///< font size to use
  119. char *fontcolor_string; ///< font color as string
  120. char *boxcolor_string; ///< box color as string
  121. char *shadowcolor_string; ///< shadow color as string
  122. short int draw_box; ///< draw box around text - true or false
  123. int use_kerning; ///< font kerning is used - true/false
  124. int tabsize; ///< tab size
  125. int fix_bounds; ///< do we let it go out of frame bounds - t/f
  126. FFDrawContext dc;
  127. FFDrawColor fontcolor; ///< foreground color
  128. FFDrawColor shadowcolor; ///< shadow color
  129. FFDrawColor boxcolor; ///< background color
  130. FT_Library library; ///< freetype font library handle
  131. FT_Face face; ///< freetype font face handle
  132. struct AVTreeNode *glyphs; ///< rendered glyphs, stored using the UTF-32 char code
  133. char *x_expr; ///< expression for x position
  134. char *y_expr; ///< expression for y position
  135. AVExpr *x_pexpr, *y_pexpr; ///< parsed expressions for x and y
  136. int64_t basetime; ///< base pts time in the real world for display
  137. double var_values[VAR_VARS_NB];
  138. char *draw_expr; ///< expression for draw
  139. AVExpr *draw_pexpr; ///< parsed expression for draw
  140. int draw; ///< set to zero to prevent drawing
  141. AVLFG prng; ///< random
  142. char *tc_opt_string; ///< specified timecode option string
  143. AVRational tc_rate; ///< frame rate for timecode
  144. AVTimecode tc; ///< timecode context
  145. int tc24hmax; ///< 1 if timecode is wrapped to 24 hours, 0 otherwise
  146. int frame_id;
  147. } DrawTextContext;
  148. #define OFFSET(x) offsetof(DrawTextContext, x)
  149. static const AVOption drawtext_options[]= {
  150. {"fontfile", "set font file", OFFSET(fontfile), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX },
  151. {"text", "set text", OFFSET(text), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX },
  152. {"textfile", "set text file", OFFSET(textfile), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX },
  153. {"fontcolor", "set foreground color", OFFSET(fontcolor_string), AV_OPT_TYPE_STRING, {.str="black"}, CHAR_MIN, CHAR_MAX },
  154. {"boxcolor", "set box color", OFFSET(boxcolor_string), AV_OPT_TYPE_STRING, {.str="white"}, CHAR_MIN, CHAR_MAX },
  155. {"shadowcolor", "set shadow color", OFFSET(shadowcolor_string), AV_OPT_TYPE_STRING, {.str="black"}, CHAR_MIN, CHAR_MAX },
  156. {"box", "set box", OFFSET(draw_box), AV_OPT_TYPE_INT, {.dbl=0}, 0, 1 },
  157. {"fontsize", "set font size", OFFSET(fontsize), AV_OPT_TYPE_INT, {.dbl=0}, 0, INT_MAX },
  158. {"x", "set x expression", OFFSET(x_expr), AV_OPT_TYPE_STRING, {.str="0"}, CHAR_MIN, CHAR_MAX },
  159. {"y", "set y expression", OFFSET(y_expr), AV_OPT_TYPE_STRING, {.str="0"}, CHAR_MIN, CHAR_MAX },
  160. {"shadowx", "set x", OFFSET(shadowx), AV_OPT_TYPE_INT, {.dbl=0}, INT_MIN, INT_MAX },
  161. {"shadowy", "set y", OFFSET(shadowy), AV_OPT_TYPE_INT, {.dbl=0}, INT_MIN, INT_MAX },
  162. {"tabsize", "set tab size", OFFSET(tabsize), AV_OPT_TYPE_INT, {.dbl=4}, 0, INT_MAX },
  163. {"basetime", "set base time", OFFSET(basetime), AV_OPT_TYPE_INT64, {.dbl=AV_NOPTS_VALUE}, INT64_MIN, INT64_MAX },
  164. {"draw", "if false do not draw", OFFSET(draw_expr), AV_OPT_TYPE_STRING, {.str="1"}, CHAR_MIN, CHAR_MAX },
  165. {"timecode", "set initial timecode", OFFSET(tc_opt_string), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX },
  166. {"tc24hmax", "set 24 hours max (timecode only)", OFFSET(tc24hmax), AV_OPT_TYPE_INT, {.dbl=0}, 0, 1 },
  167. {"timecode_rate", "set rate (timecode only)", OFFSET(tc_rate), AV_OPT_TYPE_RATIONAL, {.dbl=0}, 0, INT_MAX },
  168. {"r", "set rate (timecode only)", OFFSET(tc_rate), AV_OPT_TYPE_RATIONAL, {.dbl=0}, 0, INT_MAX },
  169. {"rate", "set rate (timecode only)", OFFSET(tc_rate), AV_OPT_TYPE_RATIONAL, {.dbl=0}, 0, INT_MAX },
  170. {"fix_bounds", "if true, check and fix text coords to avoid clipping",
  171. OFFSET(fix_bounds), AV_OPT_TYPE_INT, {.dbl=1}, 0, 1 },
  172. /* FT_LOAD_* flags */
  173. {"ft_load_flags", "set font loading flags for libfreetype", OFFSET(ft_load_flags), AV_OPT_TYPE_FLAGS, {.dbl=FT_LOAD_DEFAULT|FT_LOAD_RENDER}, 0, INT_MAX, 0, "ft_load_flags" },
  174. {"default", "set default", 0, AV_OPT_TYPE_CONST, {.dbl=FT_LOAD_DEFAULT}, INT_MIN, INT_MAX, 0, "ft_load_flags" },
  175. {"no_scale", "set no_scale", 0, AV_OPT_TYPE_CONST, {.dbl=FT_LOAD_NO_SCALE}, INT_MIN, INT_MAX, 0, "ft_load_flags" },
  176. {"no_hinting", "set no_hinting", 0, AV_OPT_TYPE_CONST, {.dbl=FT_LOAD_NO_HINTING}, INT_MIN, INT_MAX, 0, "ft_load_flags" },
  177. {"render", "set render", 0, AV_OPT_TYPE_CONST, {.dbl=FT_LOAD_RENDER}, INT_MIN, INT_MAX, 0, "ft_load_flags" },
  178. {"no_bitmap", "set no_bitmap", 0, AV_OPT_TYPE_CONST, {.dbl=FT_LOAD_NO_BITMAP}, INT_MIN, INT_MAX, 0, "ft_load_flags" },
  179. {"vertical_layout", "set vertical_layout", 0, AV_OPT_TYPE_CONST, {.dbl=FT_LOAD_VERTICAL_LAYOUT}, INT_MIN, INT_MAX, 0, "ft_load_flags" },
  180. {"force_autohint", "set force_autohint", 0, AV_OPT_TYPE_CONST, {.dbl=FT_LOAD_FORCE_AUTOHINT}, INT_MIN, INT_MAX, 0, "ft_load_flags" },
  181. {"crop_bitmap", "set crop_bitmap", 0, AV_OPT_TYPE_CONST, {.dbl=FT_LOAD_CROP_BITMAP}, INT_MIN, INT_MAX, 0, "ft_load_flags" },
  182. {"pedantic", "set pedantic", 0, AV_OPT_TYPE_CONST, {.dbl=FT_LOAD_PEDANTIC}, INT_MIN, INT_MAX, 0, "ft_load_flags" },
  183. {"ignore_global_advance_width", "set ignore_global_advance_width", 0, AV_OPT_TYPE_CONST, {.dbl=FT_LOAD_IGNORE_GLOBAL_ADVANCE_WIDTH}, INT_MIN, INT_MAX, 0, "ft_load_flags" },
  184. {"no_recurse", "set no_recurse", 0, AV_OPT_TYPE_CONST, {.dbl=FT_LOAD_NO_RECURSE}, INT_MIN, INT_MAX, 0, "ft_load_flags" },
  185. {"ignore_transform", "set ignore_transform", 0, AV_OPT_TYPE_CONST, {.dbl=FT_LOAD_IGNORE_TRANSFORM}, INT_MIN, INT_MAX, 0, "ft_load_flags" },
  186. {"monochrome", "set monochrome", 0, AV_OPT_TYPE_CONST, {.dbl=FT_LOAD_MONOCHROME}, INT_MIN, INT_MAX, 0, "ft_load_flags" },
  187. {"linear_design", "set linear_design", 0, AV_OPT_TYPE_CONST, {.dbl=FT_LOAD_LINEAR_DESIGN}, INT_MIN, INT_MAX, 0, "ft_load_flags" },
  188. {"no_autohint", "set no_autohint", 0, AV_OPT_TYPE_CONST, {.dbl=FT_LOAD_NO_AUTOHINT}, INT_MIN, INT_MAX, 0, "ft_load_flags" },
  189. {NULL},
  190. };
  191. AVFILTER_DEFINE_CLASS(drawtext);
  192. #undef __FTERRORS_H__
  193. #define FT_ERROR_START_LIST {
  194. #define FT_ERRORDEF(e, v, s) { (e), (s) },
  195. #define FT_ERROR_END_LIST { 0, NULL } };
  196. struct ft_error
  197. {
  198. int err;
  199. const char *err_msg;
  200. } static ft_errors[] =
  201. #include FT_ERRORS_H
  202. #define FT_ERRMSG(e) ft_errors[e].err_msg
  203. typedef struct {
  204. FT_Glyph *glyph;
  205. uint32_t code;
  206. FT_Bitmap bitmap; ///< array holding bitmaps of font
  207. FT_BBox bbox;
  208. int advance;
  209. int bitmap_left;
  210. int bitmap_top;
  211. } Glyph;
  212. static int glyph_cmp(void *key, const void *b)
  213. {
  214. const Glyph *a = key, *bb = b;
  215. int64_t diff = (int64_t)a->code - (int64_t)bb->code;
  216. return diff > 0 ? 1 : diff < 0 ? -1 : 0;
  217. }
  218. /**
  219. * Load glyphs corresponding to the UTF-32 codepoint code.
  220. */
  221. static int load_glyph(AVFilterContext *ctx, Glyph **glyph_ptr, uint32_t code)
  222. {
  223. DrawTextContext *dtext = ctx->priv;
  224. Glyph *glyph;
  225. struct AVTreeNode *node = NULL;
  226. int ret;
  227. /* load glyph into dtext->face->glyph */
  228. if (FT_Load_Char(dtext->face, code, dtext->ft_load_flags))
  229. return AVERROR(EINVAL);
  230. /* save glyph */
  231. if (!(glyph = av_mallocz(sizeof(*glyph))) ||
  232. !(glyph->glyph = av_mallocz(sizeof(*glyph->glyph)))) {
  233. ret = AVERROR(ENOMEM);
  234. goto error;
  235. }
  236. glyph->code = code;
  237. if (FT_Get_Glyph(dtext->face->glyph, glyph->glyph)) {
  238. ret = AVERROR(EINVAL);
  239. goto error;
  240. }
  241. glyph->bitmap = dtext->face->glyph->bitmap;
  242. glyph->bitmap_left = dtext->face->glyph->bitmap_left;
  243. glyph->bitmap_top = dtext->face->glyph->bitmap_top;
  244. glyph->advance = dtext->face->glyph->advance.x >> 6;
  245. /* measure text height to calculate text_height (or the maximum text height) */
  246. FT_Glyph_Get_CBox(*glyph->glyph, ft_glyph_bbox_pixels, &glyph->bbox);
  247. /* cache the newly created glyph */
  248. if (!(node = av_mallocz(av_tree_node_size))) {
  249. ret = AVERROR(ENOMEM);
  250. goto error;
  251. }
  252. av_tree_insert(&dtext->glyphs, glyph, glyph_cmp, &node);
  253. if (glyph_ptr)
  254. *glyph_ptr = glyph;
  255. return 0;
  256. error:
  257. if (glyph)
  258. av_freep(&glyph->glyph);
  259. av_freep(&glyph);
  260. av_freep(&node);
  261. return ret;
  262. }
  263. static int load_font_file(AVFilterContext *ctx, const char *path, int index,
  264. const char **error)
  265. {
  266. DrawTextContext *dtext = ctx->priv;
  267. int err;
  268. err = FT_New_Face(dtext->library, path, index, &dtext->face);
  269. if (err) {
  270. *error = FT_ERRMSG(err);
  271. return AVERROR(EINVAL);
  272. }
  273. return 0;
  274. }
  275. #if CONFIG_FONTCONFIG
  276. static int load_font_fontconfig(AVFilterContext *ctx, const char **error)
  277. {
  278. DrawTextContext *dtext = ctx->priv;
  279. FcConfig *fontconfig;
  280. FcPattern *pattern, *fpat;
  281. FcResult result = FcResultMatch;
  282. FcChar8 *filename;
  283. int err, index;
  284. double size;
  285. fontconfig = FcInitLoadConfigAndFonts();
  286. if (!fontconfig) {
  287. *error = "impossible to init fontconfig\n";
  288. return AVERROR(EINVAL);
  289. }
  290. pattern = FcNameParse(dtext->fontfile ? dtext->fontfile :
  291. (uint8_t *)(intptr_t)"default");
  292. if (!pattern) {
  293. *error = "could not parse fontconfig pattern";
  294. return AVERROR(EINVAL);
  295. }
  296. if (!FcConfigSubstitute(fontconfig, pattern, FcMatchPattern)) {
  297. *error = "could not substitue fontconfig options"; /* very unlikely */
  298. return AVERROR(EINVAL);
  299. }
  300. FcDefaultSubstitute(pattern);
  301. fpat = FcFontMatch(fontconfig, pattern, &result);
  302. if (!fpat || result != FcResultMatch) {
  303. *error = "impossible to find a matching font";
  304. return AVERROR(EINVAL);
  305. }
  306. if (FcPatternGetString (fpat, FC_FILE, 0, &filename) != FcResultMatch ||
  307. FcPatternGetInteger(fpat, FC_INDEX, 0, &index ) != FcResultMatch ||
  308. FcPatternGetDouble (fpat, FC_SIZE, 0, &size ) != FcResultMatch) {
  309. *error = "impossible to find font information";
  310. return AVERROR(EINVAL);
  311. }
  312. av_log(ctx, AV_LOG_INFO, "Using \"%s\"\n", filename);
  313. if (!dtext->fontsize)
  314. dtext->fontsize = size + 0.5;
  315. err = load_font_file(ctx, filename, index, error);
  316. if (err)
  317. return err;
  318. FcPatternDestroy(fpat);
  319. FcPatternDestroy(pattern);
  320. FcConfigDestroy(fontconfig);
  321. return 0;
  322. }
  323. #endif
  324. static int load_font(AVFilterContext *ctx)
  325. {
  326. DrawTextContext *dtext = ctx->priv;
  327. int err;
  328. const char *error = "unknown error\n";
  329. /* load the face, and set up the encoding, which is by default UTF-8 */
  330. err = load_font_file(ctx, dtext->fontfile, 0, &error);
  331. if (!err)
  332. return 0;
  333. #if CONFIG_FONTCONFIG
  334. err = load_font_fontconfig(ctx, &error);
  335. if (!err)
  336. return 0;
  337. #endif
  338. av_log(ctx, AV_LOG_ERROR, "Could not load font \"%s\": %s\n",
  339. dtext->fontfile, error);
  340. return err;
  341. }
  342. static av_cold int init(AVFilterContext *ctx, const char *args)
  343. {
  344. int err;
  345. DrawTextContext *dtext = ctx->priv;
  346. Glyph *glyph;
  347. dtext->class = &drawtext_class;
  348. av_opt_set_defaults(dtext);
  349. if ((err = av_set_options_string(dtext, args, "=", ":")) < 0)
  350. return err;
  351. if (!dtext->fontfile && !CONFIG_FONTCONFIG) {
  352. av_log(ctx, AV_LOG_ERROR, "No font filename provided\n");
  353. return AVERROR(EINVAL);
  354. }
  355. if (dtext->textfile) {
  356. uint8_t *textbuf;
  357. size_t textbuf_size;
  358. if (dtext->text) {
  359. av_log(ctx, AV_LOG_ERROR,
  360. "Both text and text file provided. Please provide only one\n");
  361. return AVERROR(EINVAL);
  362. }
  363. if ((err = av_file_map(dtext->textfile, &textbuf, &textbuf_size, 0, ctx)) < 0) {
  364. av_log(ctx, AV_LOG_ERROR,
  365. "The text file '%s' could not be read or is empty\n",
  366. dtext->textfile);
  367. return err;
  368. }
  369. if (!(dtext->text = av_malloc(textbuf_size+1)))
  370. return AVERROR(ENOMEM);
  371. memcpy(dtext->text, textbuf, textbuf_size);
  372. dtext->text[textbuf_size] = 0;
  373. av_file_unmap(textbuf, textbuf_size);
  374. }
  375. if (dtext->tc_opt_string) {
  376. int ret = av_timecode_init_from_string(&dtext->tc, dtext->tc_rate,
  377. dtext->tc_opt_string, ctx);
  378. if (ret < 0)
  379. return ret;
  380. if (dtext->tc24hmax)
  381. dtext->tc.flags |= AV_TIMECODE_FLAG_24HOURSMAX;
  382. if (!dtext->text)
  383. dtext->text = av_strdup("");
  384. }
  385. if (!dtext->text) {
  386. av_log(ctx, AV_LOG_ERROR,
  387. "Either text, a valid file or a timecode must be provided\n");
  388. return AVERROR(EINVAL);
  389. }
  390. if ((err = av_parse_color(dtext->fontcolor.rgba, dtext->fontcolor_string, -1, ctx))) {
  391. av_log(ctx, AV_LOG_ERROR,
  392. "Invalid font color '%s'\n", dtext->fontcolor_string);
  393. return err;
  394. }
  395. if ((err = av_parse_color(dtext->boxcolor.rgba, dtext->boxcolor_string, -1, ctx))) {
  396. av_log(ctx, AV_LOG_ERROR,
  397. "Invalid box color '%s'\n", dtext->boxcolor_string);
  398. return err;
  399. }
  400. if ((err = av_parse_color(dtext->shadowcolor.rgba, dtext->shadowcolor_string, -1, ctx))) {
  401. av_log(ctx, AV_LOG_ERROR,
  402. "Invalid shadow color '%s'\n", dtext->shadowcolor_string);
  403. return err;
  404. }
  405. if ((err = FT_Init_FreeType(&(dtext->library)))) {
  406. av_log(ctx, AV_LOG_ERROR,
  407. "Could not load FreeType: %s\n", FT_ERRMSG(err));
  408. return AVERROR(EINVAL);
  409. }
  410. err = load_font(ctx);
  411. if (err)
  412. return err;
  413. if (!dtext->fontsize)
  414. dtext->fontsize = 16;
  415. if ((err = FT_Set_Pixel_Sizes(dtext->face, 0, dtext->fontsize))) {
  416. av_log(ctx, AV_LOG_ERROR, "Could not set font size to %d pixels: %s\n",
  417. dtext->fontsize, FT_ERRMSG(err));
  418. return AVERROR(EINVAL);
  419. }
  420. dtext->use_kerning = FT_HAS_KERNING(dtext->face);
  421. /* load the fallback glyph with code 0 */
  422. load_glyph(ctx, NULL, 0);
  423. /* set the tabsize in pixels */
  424. if ((err = load_glyph(ctx, &glyph, ' ')) < 0) {
  425. av_log(ctx, AV_LOG_ERROR, "Could not set tabsize.\n");
  426. return err;
  427. }
  428. dtext->tabsize *= glyph->advance;
  429. return 0;
  430. }
  431. static int query_formats(AVFilterContext *ctx)
  432. {
  433. ff_set_common_formats(ctx, ff_draw_supported_pixel_formats(0));
  434. return 0;
  435. }
  436. static int glyph_enu_free(void *opaque, void *elem)
  437. {
  438. Glyph *glyph = elem;
  439. FT_Done_Glyph(*glyph->glyph);
  440. av_freep(&glyph->glyph);
  441. av_free(elem);
  442. return 0;
  443. }
  444. static av_cold void uninit(AVFilterContext *ctx)
  445. {
  446. DrawTextContext *dtext = ctx->priv;
  447. av_expr_free(dtext->x_pexpr); dtext->x_pexpr = NULL;
  448. av_expr_free(dtext->y_pexpr); dtext->y_pexpr = NULL;
  449. av_expr_free(dtext->draw_pexpr); dtext->draw_pexpr = NULL;
  450. av_opt_free(dtext);
  451. av_freep(&dtext->positions);
  452. dtext->nb_positions = 0;
  453. av_tree_enumerate(dtext->glyphs, NULL, NULL, glyph_enu_free);
  454. av_tree_destroy(dtext->glyphs);
  455. dtext->glyphs = NULL;
  456. FT_Done_Face(dtext->face);
  457. FT_Done_FreeType(dtext->library);
  458. }
  459. static inline int is_newline(uint32_t c)
  460. {
  461. return c == '\n' || c == '\r' || c == '\f' || c == '\v';
  462. }
  463. static int config_input(AVFilterLink *inlink)
  464. {
  465. AVFilterContext *ctx = inlink->dst;
  466. DrawTextContext *dtext = ctx->priv;
  467. int ret;
  468. ff_draw_init(&dtext->dc, inlink->format, 0);
  469. ff_draw_color(&dtext->dc, &dtext->fontcolor, dtext->fontcolor.rgba);
  470. ff_draw_color(&dtext->dc, &dtext->shadowcolor, dtext->shadowcolor.rgba);
  471. ff_draw_color(&dtext->dc, &dtext->boxcolor, dtext->boxcolor.rgba);
  472. dtext->var_values[VAR_w] = dtext->var_values[VAR_W] = dtext->var_values[VAR_MAIN_W] = inlink->w;
  473. dtext->var_values[VAR_h] = dtext->var_values[VAR_H] = dtext->var_values[VAR_MAIN_H] = inlink->h;
  474. dtext->var_values[VAR_SAR] = inlink->sample_aspect_ratio.num ? av_q2d(inlink->sample_aspect_ratio) : 1;
  475. dtext->var_values[VAR_DAR] = (double)inlink->w / inlink->h * dtext->var_values[VAR_SAR];
  476. dtext->var_values[VAR_HSUB] = 1 << dtext->dc.hsub_max;
  477. dtext->var_values[VAR_VSUB] = 1 << dtext->dc.vsub_max;
  478. dtext->var_values[VAR_X] = NAN;
  479. dtext->var_values[VAR_Y] = NAN;
  480. if (!dtext->reinit)
  481. dtext->var_values[VAR_N] = 0;
  482. dtext->var_values[VAR_T] = NAN;
  483. av_lfg_init(&dtext->prng, av_get_random_seed());
  484. if ((ret = av_expr_parse(&dtext->x_pexpr, dtext->x_expr, var_names,
  485. NULL, NULL, fun2_names, fun2, 0, ctx)) < 0 ||
  486. (ret = av_expr_parse(&dtext->y_pexpr, dtext->y_expr, var_names,
  487. NULL, NULL, fun2_names, fun2, 0, ctx)) < 0 ||
  488. (ret = av_expr_parse(&dtext->draw_pexpr, dtext->draw_expr, var_names,
  489. NULL, NULL, fun2_names, fun2, 0, ctx)) < 0)
  490. return AVERROR(EINVAL);
  491. return 0;
  492. }
  493. static int command(AVFilterContext *ctx, const char *cmd, const char *arg, char *res, int res_len, int flags)
  494. {
  495. DrawTextContext *dtext = ctx->priv;
  496. if (!strcmp(cmd, "reinit")) {
  497. int ret;
  498. uninit(ctx);
  499. dtext->reinit = 1;
  500. if ((ret = init(ctx, arg)) < 0)
  501. return ret;
  502. return config_input(ctx->inputs[0]);
  503. }
  504. return AVERROR(ENOSYS);
  505. }
  506. static int draw_glyphs(DrawTextContext *dtext, AVFilterBufferRef *picref,
  507. int width, int height, const uint8_t rgbcolor[4], FFDrawColor *color, int x, int y)
  508. {
  509. char *text = dtext->expanded_text;
  510. uint32_t code = 0;
  511. int i, x1, y1;
  512. uint8_t *p;
  513. Glyph *glyph = NULL;
  514. for (i = 0, p = text; *p; i++) {
  515. Glyph dummy = { 0 };
  516. GET_UTF8(code, *p++, continue;);
  517. /* skip new line chars, just go to new line */
  518. if (code == '\n' || code == '\r' || code == '\t')
  519. continue;
  520. dummy.code = code;
  521. glyph = av_tree_find(dtext->glyphs, &dummy, (void *)glyph_cmp, NULL);
  522. if (glyph->bitmap.pixel_mode != FT_PIXEL_MODE_MONO &&
  523. glyph->bitmap.pixel_mode != FT_PIXEL_MODE_GRAY)
  524. return AVERROR(EINVAL);
  525. x1 = dtext->positions[i].x+dtext->x+x;
  526. y1 = dtext->positions[i].y+dtext->y+y;
  527. ff_blend_mask(&dtext->dc, color,
  528. picref->data, picref->linesize, width, height,
  529. glyph->bitmap.buffer, glyph->bitmap.pitch,
  530. glyph->bitmap.width, glyph->bitmap.rows,
  531. glyph->bitmap.pixel_mode == FT_PIXEL_MODE_MONO ? 0 : 3,
  532. 0, x1, y1);
  533. }
  534. return 0;
  535. }
  536. static int draw_text(AVFilterContext *ctx, AVFilterBufferRef *picref,
  537. int width, int height)
  538. {
  539. DrawTextContext *dtext = ctx->priv;
  540. uint32_t code = 0, prev_code = 0;
  541. int x = 0, y = 0, i = 0, ret;
  542. int max_text_line_w = 0, len;
  543. int box_w, box_h;
  544. char *text = dtext->text;
  545. uint8_t *p;
  546. int y_min = 32000, y_max = -32000;
  547. int x_min = 32000, x_max = -32000;
  548. FT_Vector delta;
  549. Glyph *glyph = NULL, *prev_glyph = NULL;
  550. Glyph dummy = { 0 };
  551. time_t now = time(0);
  552. struct tm ltime;
  553. uint8_t *buf = dtext->expanded_text;
  554. int buf_size = dtext->expanded_text_size;
  555. if(dtext->basetime != AV_NOPTS_VALUE)
  556. now= picref->pts*av_q2d(ctx->inputs[0]->time_base) + dtext->basetime/1000000;
  557. if (!buf) {
  558. buf_size = 2*strlen(dtext->text)+1;
  559. buf = av_malloc(buf_size);
  560. }
  561. #if HAVE_LOCALTIME_R
  562. localtime_r(&now, &ltime);
  563. #else
  564. if(strchr(dtext->text, '%'))
  565. ltime= *localtime(&now);
  566. #endif
  567. do {
  568. *buf = 1;
  569. if (strftime(buf, buf_size, dtext->text, &ltime) != 0 || *buf == 0)
  570. break;
  571. buf_size *= 2;
  572. } while ((buf = av_realloc(buf, buf_size)));
  573. if (dtext->tc_opt_string) {
  574. char tcbuf[AV_TIMECODE_STR_SIZE];
  575. av_timecode_make_string(&dtext->tc, tcbuf, dtext->frame_id++);
  576. buf = av_asprintf("%s%s", dtext->text, tcbuf);
  577. }
  578. if (!buf)
  579. return AVERROR(ENOMEM);
  580. text = dtext->expanded_text = buf;
  581. dtext->expanded_text_size = buf_size;
  582. if ((len = strlen(text)) > dtext->nb_positions) {
  583. if (!(dtext->positions =
  584. av_realloc(dtext->positions, len*sizeof(*dtext->positions))))
  585. return AVERROR(ENOMEM);
  586. dtext->nb_positions = len;
  587. }
  588. x = 0;
  589. y = 0;
  590. /* load and cache glyphs */
  591. for (i = 0, p = text; *p; i++) {
  592. GET_UTF8(code, *p++, continue;);
  593. /* get glyph */
  594. dummy.code = code;
  595. glyph = av_tree_find(dtext->glyphs, &dummy, glyph_cmp, NULL);
  596. if (!glyph) {
  597. load_glyph(ctx, &glyph, code);
  598. }
  599. y_min = FFMIN(glyph->bbox.yMin, y_min);
  600. y_max = FFMAX(glyph->bbox.yMax, y_max);
  601. x_min = FFMIN(glyph->bbox.xMin, x_min);
  602. x_max = FFMAX(glyph->bbox.xMax, x_max);
  603. }
  604. dtext->max_glyph_h = y_max - y_min;
  605. dtext->max_glyph_w = x_max - x_min;
  606. /* compute and save position for each glyph */
  607. glyph = NULL;
  608. for (i = 0, p = text; *p; i++) {
  609. GET_UTF8(code, *p++, continue;);
  610. /* skip the \n in the sequence \r\n */
  611. if (prev_code == '\r' && code == '\n')
  612. continue;
  613. prev_code = code;
  614. if (is_newline(code)) {
  615. max_text_line_w = FFMAX(max_text_line_w, x);
  616. y += dtext->max_glyph_h;
  617. x = 0;
  618. continue;
  619. }
  620. /* get glyph */
  621. prev_glyph = glyph;
  622. dummy.code = code;
  623. glyph = av_tree_find(dtext->glyphs, &dummy, glyph_cmp, NULL);
  624. /* kerning */
  625. if (dtext->use_kerning && prev_glyph && glyph->code) {
  626. FT_Get_Kerning(dtext->face, prev_glyph->code, glyph->code,
  627. ft_kerning_default, &delta);
  628. x += delta.x >> 6;
  629. }
  630. /* save position */
  631. dtext->positions[i].x = x + glyph->bitmap_left;
  632. dtext->positions[i].y = y - glyph->bitmap_top + y_max;
  633. if (code == '\t') x = (x / dtext->tabsize + 1)*dtext->tabsize;
  634. else x += glyph->advance;
  635. }
  636. max_text_line_w = FFMAX(x, max_text_line_w);
  637. dtext->var_values[VAR_TW] = dtext->var_values[VAR_TEXT_W] = max_text_line_w;
  638. dtext->var_values[VAR_TH] = dtext->var_values[VAR_TEXT_H] = y + dtext->max_glyph_h;
  639. dtext->var_values[VAR_MAX_GLYPH_W] = dtext->max_glyph_w;
  640. dtext->var_values[VAR_MAX_GLYPH_H] = dtext->max_glyph_h;
  641. dtext->var_values[VAR_MAX_GLYPH_A] = dtext->var_values[VAR_ASCENT ] = y_max;
  642. dtext->var_values[VAR_MAX_GLYPH_D] = dtext->var_values[VAR_DESCENT] = y_min;
  643. dtext->var_values[VAR_LINE_H] = dtext->var_values[VAR_LH] = dtext->max_glyph_h;
  644. dtext->x = dtext->var_values[VAR_X] = av_expr_eval(dtext->x_pexpr, dtext->var_values, &dtext->prng);
  645. dtext->y = dtext->var_values[VAR_Y] = av_expr_eval(dtext->y_pexpr, dtext->var_values, &dtext->prng);
  646. dtext->x = dtext->var_values[VAR_X] = av_expr_eval(dtext->x_pexpr, dtext->var_values, &dtext->prng);
  647. dtext->draw = av_expr_eval(dtext->draw_pexpr, dtext->var_values, &dtext->prng);
  648. if(!dtext->draw)
  649. return 0;
  650. box_w = FFMIN(width - 1 , max_text_line_w);
  651. box_h = FFMIN(height - 1, y + dtext->max_glyph_h);
  652. /* draw box */
  653. if (dtext->draw_box)
  654. ff_blend_rectangle(&dtext->dc, &dtext->boxcolor,
  655. picref->data, picref->linesize, width, height,
  656. dtext->x, dtext->y, box_w, box_h);
  657. if (dtext->shadowx || dtext->shadowy) {
  658. if ((ret = draw_glyphs(dtext, picref, width, height, dtext->shadowcolor.rgba,
  659. &dtext->shadowcolor, dtext->shadowx, dtext->shadowy)) < 0)
  660. return ret;
  661. }
  662. if ((ret = draw_glyphs(dtext, picref, width, height, dtext->fontcolor.rgba,
  663. &dtext->fontcolor, 0, 0)) < 0)
  664. return ret;
  665. return 0;
  666. }
  667. static int null_draw_slice(AVFilterLink *link, int y, int h, int slice_dir)
  668. {
  669. return 0;
  670. }
  671. static int end_frame(AVFilterLink *inlink)
  672. {
  673. AVFilterContext *ctx = inlink->dst;
  674. AVFilterLink *outlink = ctx->outputs[0];
  675. DrawTextContext *dtext = ctx->priv;
  676. AVFilterBufferRef *picref = inlink->cur_buf;
  677. int ret;
  678. dtext->var_values[VAR_T] = picref->pts == AV_NOPTS_VALUE ?
  679. NAN : picref->pts * av_q2d(inlink->time_base);
  680. draw_text(ctx, picref, picref->video->w, picref->video->h);
  681. av_log(ctx, AV_LOG_DEBUG, "n:%d t:%f text_w:%d text_h:%d x:%d y:%d\n",
  682. (int)dtext->var_values[VAR_N], dtext->var_values[VAR_T],
  683. (int)dtext->var_values[VAR_TEXT_W], (int)dtext->var_values[VAR_TEXT_H],
  684. dtext->x, dtext->y);
  685. dtext->var_values[VAR_N] += 1.0;
  686. if ((ret = ff_draw_slice(outlink, 0, picref->video->h, 1)) < 0 ||
  687. (ret = ff_end_frame(outlink)) < 0)
  688. return ret;
  689. return 0;
  690. }
  691. AVFilter avfilter_vf_drawtext = {
  692. .name = "drawtext",
  693. .description = NULL_IF_CONFIG_SMALL("Draw text on top of video frames using libfreetype library."),
  694. .priv_size = sizeof(DrawTextContext),
  695. .init = init,
  696. .uninit = uninit,
  697. .query_formats = query_formats,
  698. .inputs = (const AVFilterPad[]) {{ .name = "default",
  699. .type = AVMEDIA_TYPE_VIDEO,
  700. .get_video_buffer = ff_null_get_video_buffer,
  701. .start_frame = ff_null_start_frame,
  702. .draw_slice = null_draw_slice,
  703. .end_frame = end_frame,
  704. .config_props = config_input,
  705. .min_perms = AV_PERM_WRITE |
  706. AV_PERM_READ,
  707. .rej_perms = AV_PERM_PRESERVE },
  708. { .name = NULL}},
  709. .outputs = (const AVFilterPad[]) {{ .name = "default",
  710. .type = AVMEDIA_TYPE_VIDEO, },
  711. { .name = NULL}},
  712. .process_command = command,
  713. };