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.

893 lines
34KB

  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 "libavcodec/timecode.h"
  30. #include "libavutil/avstring.h"
  31. #include "libavutil/colorspace.h"
  32. #include "libavutil/file.h"
  33. #include "libavutil/eval.h"
  34. #include "libavutil/opt.h"
  35. #include "libavutil/random_seed.h"
  36. #include "libavutil/parseutils.h"
  37. #include "libavutil/pixdesc.h"
  38. #include "libavutil/tree.h"
  39. #include "libavutil/lfg.h"
  40. #include "avfilter.h"
  41. #include "drawutils.h"
  42. #undef time
  43. #include <ft2build.h>
  44. #include <freetype/config/ftheader.h>
  45. #include FT_FREETYPE_H
  46. #include FT_GLYPH_H
  47. static const char * const var_names[] = {
  48. "main_w", "w", "W", ///< width of the input video
  49. "main_h", "h", "H", ///< height of the input video
  50. "tw", "text_w", ///< width of the rendered text
  51. "th", "text_h", ///< height of the rendered text
  52. "max_glyph_w", ///< max glyph width
  53. "max_glyph_h", ///< max glyph height
  54. "max_glyph_a", "ascent", ///< max glyph ascent
  55. "max_glyph_d", "descent", ///< min glyph descent
  56. "line_h", "lh", ///< line height, same as max_glyph_h
  57. "sar",
  58. "dar",
  59. "hsub",
  60. "vsub",
  61. "x",
  62. "y",
  63. "n", ///< number of frame
  64. "t", ///< timestamp expressed in seconds
  65. NULL
  66. };
  67. static const char *fun2_names[] = {
  68. "rand",
  69. };
  70. static double drand(void *opaque, double min, double max)
  71. {
  72. return min + (max-min) / UINT_MAX * av_lfg_get(opaque);
  73. }
  74. typedef double (*eval_func2)(void *, double a, double b);
  75. static const eval_func2 fun2[] = {
  76. drand,
  77. NULL
  78. };
  79. enum var_name {
  80. VAR_MAIN_W, VAR_w, VAR_W,
  81. VAR_MAIN_H, VAR_h, VAR_H,
  82. VAR_TW, VAR_TEXT_W,
  83. VAR_TH, VAR_TEXT_H,
  84. VAR_MAX_GLYPH_W,
  85. VAR_MAX_GLYPH_H,
  86. VAR_MAX_GLYPH_A, VAR_ASCENT,
  87. VAR_MAX_GLYPH_D, VAR_DESCENT,
  88. VAR_LINE_H, VAR_LH,
  89. VAR_SAR,
  90. VAR_DAR,
  91. VAR_HSUB,
  92. VAR_VSUB,
  93. VAR_X,
  94. VAR_Y,
  95. VAR_N,
  96. VAR_T,
  97. VAR_VARS_NB
  98. };
  99. typedef struct {
  100. const AVClass *class;
  101. int reinit; ///< tells if the filter is being reinited
  102. uint8_t *fontfile; ///< font to be used
  103. uint8_t *text; ///< text to be drawn
  104. uint8_t *expanded_text; ///< used to contain the strftime()-expanded text
  105. size_t expanded_text_size; ///< size in bytes of the expanded_text buffer
  106. int ft_load_flags; ///< flags used for loading fonts, see FT_LOAD_*
  107. FT_Vector *positions; ///< positions for each element in the text
  108. size_t nb_positions; ///< number of elements of positions array
  109. char *textfile; ///< file with text to be drawn
  110. int x; ///< x position to start drawing text
  111. int y; ///< y position to start drawing text
  112. int max_glyph_w; ///< max glyph width
  113. int max_glyph_h; ///< max glyph heigth
  114. int shadowx, shadowy;
  115. unsigned int fontsize; ///< font size to use
  116. char *fontcolor_string; ///< font color as string
  117. char *boxcolor_string; ///< box color as string
  118. char *shadowcolor_string; ///< shadow color as string
  119. uint8_t fontcolor[4]; ///< foreground color
  120. uint8_t boxcolor[4]; ///< background color
  121. uint8_t shadowcolor[4]; ///< shadow color
  122. uint8_t fontcolor_rgba[4]; ///< foreground color in RGBA
  123. uint8_t boxcolor_rgba[4]; ///< background color in RGBA
  124. uint8_t shadowcolor_rgba[4]; ///< shadow color in RGBA
  125. short int draw_box; ///< draw box around text - true or false
  126. int use_kerning; ///< font kerning is used - true/false
  127. int tabsize; ///< tab size
  128. FT_Library library; ///< freetype font library handle
  129. FT_Face face; ///< freetype font face handle
  130. struct AVTreeNode *glyphs; ///< rendered glyphs, stored using the UTF-32 char code
  131. int hsub, vsub; ///< chroma subsampling values
  132. int is_packed_rgb;
  133. int pixel_step[4]; ///< distance in bytes between the component of each pixel
  134. uint8_t rgba_map[4]; ///< map RGBA offsets to the positions in the packed RGBA format
  135. uint8_t *box_line[4]; ///< line used for filling the box background
  136. char *x_expr; ///< expression for x position
  137. char *y_expr; ///< expression for y position
  138. AVExpr *x_pexpr, *y_pexpr; ///< parsed expressions for x and y
  139. int64_t basetime; ///< base pts time in the real world for display
  140. double var_values[VAR_VARS_NB];
  141. char *d_expr;
  142. AVExpr *d_pexpr;
  143. int draw; ///< set to zero to prevent drawing
  144. AVLFG prng; ///< random
  145. struct ff_timecode tc;
  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=16}, 1, 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(d_expr), AV_OPT_TYPE_STRING, {.str="1"}, CHAR_MIN, CHAR_MAX },
  165. {"timecode", "set initial timecode", OFFSET(tc.str), AV_OPT_TYPE_STRING, {.str=NULL}, CHAR_MIN, CHAR_MAX },
  166. {"r", "set rate (timecode only)", OFFSET(tc.rate), AV_OPT_TYPE_RATIONAL, {.dbl=0}, 0, INT_MAX },
  167. {"rate", "set rate (timecode only)", OFFSET(tc.rate), AV_OPT_TYPE_RATIONAL, {.dbl=0}, 0, INT_MAX },
  168. /* FT_LOAD_* flags */
  169. {"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" },
  170. {"default", "set default", 0, AV_OPT_TYPE_CONST, {.dbl=FT_LOAD_DEFAULT}, INT_MIN, INT_MAX, 0, "ft_load_flags" },
  171. {"no_scale", "set no_scale", 0, AV_OPT_TYPE_CONST, {.dbl=FT_LOAD_NO_SCALE}, INT_MIN, INT_MAX, 0, "ft_load_flags" },
  172. {"no_hinting", "set no_hinting", 0, AV_OPT_TYPE_CONST, {.dbl=FT_LOAD_NO_HINTING}, INT_MIN, INT_MAX, 0, "ft_load_flags" },
  173. {"render", "set render", 0, AV_OPT_TYPE_CONST, {.dbl=FT_LOAD_RENDER}, INT_MIN, INT_MAX, 0, "ft_load_flags" },
  174. {"no_bitmap", "set no_bitmap", 0, AV_OPT_TYPE_CONST, {.dbl=FT_LOAD_NO_BITMAP}, INT_MIN, INT_MAX, 0, "ft_load_flags" },
  175. {"vertical_layout", "set vertical_layout", 0, AV_OPT_TYPE_CONST, {.dbl=FT_LOAD_VERTICAL_LAYOUT}, INT_MIN, INT_MAX, 0, "ft_load_flags" },
  176. {"force_autohint", "set force_autohint", 0, AV_OPT_TYPE_CONST, {.dbl=FT_LOAD_FORCE_AUTOHINT}, INT_MIN, INT_MAX, 0, "ft_load_flags" },
  177. {"crop_bitmap", "set crop_bitmap", 0, AV_OPT_TYPE_CONST, {.dbl=FT_LOAD_CROP_BITMAP}, INT_MIN, INT_MAX, 0, "ft_load_flags" },
  178. {"pedantic", "set pedantic", 0, AV_OPT_TYPE_CONST, {.dbl=FT_LOAD_PEDANTIC}, INT_MIN, INT_MAX, 0, "ft_load_flags" },
  179. {"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" },
  180. {"no_recurse", "set no_recurse", 0, AV_OPT_TYPE_CONST, {.dbl=FT_LOAD_NO_RECURSE}, INT_MIN, INT_MAX, 0, "ft_load_flags" },
  181. {"ignore_transform", "set ignore_transform", 0, AV_OPT_TYPE_CONST, {.dbl=FT_LOAD_IGNORE_TRANSFORM}, INT_MIN, INT_MAX, 0, "ft_load_flags" },
  182. {"monochrome", "set monochrome", 0, AV_OPT_TYPE_CONST, {.dbl=FT_LOAD_MONOCHROME}, INT_MIN, INT_MAX, 0, "ft_load_flags" },
  183. {"linear_design", "set linear_design", 0, AV_OPT_TYPE_CONST, {.dbl=FT_LOAD_LINEAR_DESIGN}, INT_MIN, INT_MAX, 0, "ft_load_flags" },
  184. {"no_autohint", "set no_autohint", 0, AV_OPT_TYPE_CONST, {.dbl=FT_LOAD_NO_AUTOHINT}, INT_MIN, INT_MAX, 0, "ft_load_flags" },
  185. {NULL},
  186. };
  187. static const char *drawtext_get_name(void *ctx)
  188. {
  189. return "drawtext";
  190. }
  191. static const AVClass drawtext_class = {
  192. "DrawTextContext",
  193. drawtext_get_name,
  194. drawtext_options
  195. };
  196. #undef __FTERRORS_H__
  197. #define FT_ERROR_START_LIST {
  198. #define FT_ERRORDEF(e, v, s) { (e), (s) },
  199. #define FT_ERROR_END_LIST { 0, NULL } };
  200. struct ft_error
  201. {
  202. int err;
  203. const char *err_msg;
  204. } static ft_errors[] =
  205. #include FT_ERRORS_H
  206. #define FT_ERRMSG(e) ft_errors[e].err_msg
  207. typedef struct {
  208. FT_Glyph *glyph;
  209. uint32_t code;
  210. FT_Bitmap bitmap; ///< array holding bitmaps of font
  211. FT_BBox bbox;
  212. int advance;
  213. int bitmap_left;
  214. int bitmap_top;
  215. } Glyph;
  216. static int glyph_cmp(void *key, const void *b)
  217. {
  218. const Glyph *a = key, *bb = b;
  219. int64_t diff = (int64_t)a->code - (int64_t)bb->code;
  220. return diff > 0 ? 1 : diff < 0 ? -1 : 0;
  221. }
  222. /**
  223. * Load glyphs corresponding to the UTF-32 codepoint code.
  224. */
  225. static int load_glyph(AVFilterContext *ctx, Glyph **glyph_ptr, uint32_t code)
  226. {
  227. DrawTextContext *dtext = ctx->priv;
  228. Glyph *glyph;
  229. struct AVTreeNode *node = NULL;
  230. int ret;
  231. /* load glyph into dtext->face->glyph */
  232. if (FT_Load_Char(dtext->face, code, dtext->ft_load_flags))
  233. return AVERROR(EINVAL);
  234. /* save glyph */
  235. if (!(glyph = av_mallocz(sizeof(*glyph))) ||
  236. !(glyph->glyph = av_mallocz(sizeof(*glyph->glyph)))) {
  237. ret = AVERROR(ENOMEM);
  238. goto error;
  239. }
  240. glyph->code = code;
  241. if (FT_Get_Glyph(dtext->face->glyph, glyph->glyph)) {
  242. ret = AVERROR(EINVAL);
  243. goto error;
  244. }
  245. glyph->bitmap = dtext->face->glyph->bitmap;
  246. glyph->bitmap_left = dtext->face->glyph->bitmap_left;
  247. glyph->bitmap_top = dtext->face->glyph->bitmap_top;
  248. glyph->advance = dtext->face->glyph->advance.x >> 6;
  249. /* measure text height to calculate text_height (or the maximum text height) */
  250. FT_Glyph_Get_CBox(*glyph->glyph, ft_glyph_bbox_pixels, &glyph->bbox);
  251. /* cache the newly created glyph */
  252. if (!(node = av_mallocz(av_tree_node_size))) {
  253. ret = AVERROR(ENOMEM);
  254. goto error;
  255. }
  256. av_tree_insert(&dtext->glyphs, glyph, glyph_cmp, &node);
  257. if (glyph_ptr)
  258. *glyph_ptr = glyph;
  259. return 0;
  260. error:
  261. if (glyph)
  262. av_freep(&glyph->glyph);
  263. av_freep(&glyph);
  264. av_freep(&node);
  265. return ret;
  266. }
  267. static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque)
  268. {
  269. int err;
  270. DrawTextContext *dtext = ctx->priv;
  271. Glyph *glyph;
  272. dtext->class = &drawtext_class;
  273. av_opt_set_defaults(dtext);
  274. if ((err = (av_set_options_string(dtext, args, "=", ":"))) < 0) {
  275. av_log(ctx, AV_LOG_ERROR, "Error parsing options string: '%s'\n", args);
  276. return err;
  277. }
  278. if (!dtext->fontfile) {
  279. av_log(ctx, AV_LOG_ERROR, "No font filename provided\n");
  280. return AVERROR(EINVAL);
  281. }
  282. if (dtext->textfile) {
  283. uint8_t *textbuf;
  284. size_t textbuf_size;
  285. if (dtext->text) {
  286. av_log(ctx, AV_LOG_ERROR,
  287. "Both text and text file provided. Please provide only one\n");
  288. return AVERROR(EINVAL);
  289. }
  290. if ((err = av_file_map(dtext->textfile, &textbuf, &textbuf_size, 0, ctx)) < 0) {
  291. av_log(ctx, AV_LOG_ERROR,
  292. "The text file '%s' could not be read or is empty\n",
  293. dtext->textfile);
  294. return err;
  295. }
  296. if (!(dtext->text = av_malloc(textbuf_size+1)))
  297. return AVERROR(ENOMEM);
  298. memcpy(dtext->text, textbuf, textbuf_size);
  299. dtext->text[textbuf_size] = 0;
  300. av_file_unmap(textbuf, textbuf_size);
  301. }
  302. if (dtext->tc.str) {
  303. if (avpriv_init_smpte_timecode(ctx, &dtext->tc) < 0)
  304. return AVERROR(EINVAL);
  305. if (!dtext->text)
  306. dtext->text = av_strdup("");
  307. }
  308. if (!dtext->text) {
  309. av_log(ctx, AV_LOG_ERROR,
  310. "Either text, a valid file or a timecode must be provided\n");
  311. return AVERROR(EINVAL);
  312. }
  313. if ((err = av_parse_color(dtext->fontcolor_rgba, dtext->fontcolor_string, -1, ctx))) {
  314. av_log(ctx, AV_LOG_ERROR,
  315. "Invalid font color '%s'\n", dtext->fontcolor_string);
  316. return err;
  317. }
  318. if ((err = av_parse_color(dtext->boxcolor_rgba, dtext->boxcolor_string, -1, ctx))) {
  319. av_log(ctx, AV_LOG_ERROR,
  320. "Invalid box color '%s'\n", dtext->boxcolor_string);
  321. return err;
  322. }
  323. if ((err = av_parse_color(dtext->shadowcolor_rgba, dtext->shadowcolor_string, -1, ctx))) {
  324. av_log(ctx, AV_LOG_ERROR,
  325. "Invalid shadow color '%s'\n", dtext->shadowcolor_string);
  326. return err;
  327. }
  328. if ((err = FT_Init_FreeType(&(dtext->library)))) {
  329. av_log(ctx, AV_LOG_ERROR,
  330. "Could not load FreeType: %s\n", FT_ERRMSG(err));
  331. return AVERROR(EINVAL);
  332. }
  333. /* load the face, and set up the encoding, which is by default UTF-8 */
  334. if ((err = FT_New_Face(dtext->library, dtext->fontfile, 0, &dtext->face))) {
  335. av_log(ctx, AV_LOG_ERROR, "Could not load fontface from file '%s': %s\n",
  336. dtext->fontfile, FT_ERRMSG(err));
  337. return AVERROR(EINVAL);
  338. }
  339. if ((err = FT_Set_Pixel_Sizes(dtext->face, 0, dtext->fontsize))) {
  340. av_log(ctx, AV_LOG_ERROR, "Could not set font size to %d pixels: %s\n",
  341. dtext->fontsize, FT_ERRMSG(err));
  342. return AVERROR(EINVAL);
  343. }
  344. dtext->use_kerning = FT_HAS_KERNING(dtext->face);
  345. /* load the fallback glyph with code 0 */
  346. load_glyph(ctx, NULL, 0);
  347. /* set the tabsize in pixels */
  348. if ((err = load_glyph(ctx, &glyph, ' ')) < 0) {
  349. av_log(ctx, AV_LOG_ERROR, "Could not set tabsize.\n");
  350. return err;
  351. }
  352. dtext->tabsize *= glyph->advance;
  353. return 0;
  354. }
  355. static int query_formats(AVFilterContext *ctx)
  356. {
  357. static const enum PixelFormat pix_fmts[] = {
  358. PIX_FMT_ARGB, PIX_FMT_RGBA,
  359. PIX_FMT_ABGR, PIX_FMT_BGRA,
  360. PIX_FMT_RGB24, PIX_FMT_BGR24,
  361. PIX_FMT_YUV420P, PIX_FMT_YUV444P,
  362. PIX_FMT_YUV422P, PIX_FMT_YUV411P,
  363. PIX_FMT_YUV410P, PIX_FMT_YUV440P,
  364. PIX_FMT_NONE
  365. };
  366. avfilter_set_common_pixel_formats(ctx, avfilter_make_format_list(pix_fmts));
  367. return 0;
  368. }
  369. static int glyph_enu_free(void *opaque, void *elem)
  370. {
  371. av_free(elem);
  372. return 0;
  373. }
  374. static av_cold void uninit(AVFilterContext *ctx)
  375. {
  376. DrawTextContext *dtext = ctx->priv;
  377. int i;
  378. av_expr_free(dtext->x_pexpr); dtext->x_pexpr = NULL;
  379. av_expr_free(dtext->y_pexpr); dtext->y_pexpr = NULL;
  380. av_freep(&dtext->boxcolor_string);
  381. av_freep(&dtext->expanded_text);
  382. av_freep(&dtext->fontcolor_string);
  383. av_freep(&dtext->fontfile);
  384. av_freep(&dtext->shadowcolor_string);
  385. av_freep(&dtext->text);
  386. av_freep(&dtext->x_expr);
  387. av_freep(&dtext->y_expr);
  388. av_freep(&dtext->positions);
  389. dtext->nb_positions = 0;
  390. av_tree_enumerate(dtext->glyphs, NULL, NULL, glyph_enu_free);
  391. av_tree_destroy(dtext->glyphs);
  392. dtext->glyphs = NULL;
  393. FT_Done_Face(dtext->face);
  394. FT_Done_FreeType(dtext->library);
  395. for (i = 0; i < 4; i++) {
  396. av_freep(&dtext->box_line[i]);
  397. dtext->pixel_step[i] = 0;
  398. }
  399. }
  400. static inline int is_newline(uint32_t c)
  401. {
  402. return (c == '\n' || c == '\r' || c == '\f' || c == '\v');
  403. }
  404. static int config_input(AVFilterLink *inlink)
  405. {
  406. AVFilterContext *ctx = inlink->dst;
  407. DrawTextContext *dtext = ctx->priv;
  408. const AVPixFmtDescriptor *pix_desc = &av_pix_fmt_descriptors[inlink->format];
  409. int ret;
  410. dtext->hsub = pix_desc->log2_chroma_w;
  411. dtext->vsub = pix_desc->log2_chroma_h;
  412. if ((ret =
  413. ff_fill_line_with_color(dtext->box_line, dtext->pixel_step,
  414. inlink->w, dtext->boxcolor,
  415. inlink->format, dtext->boxcolor_rgba,
  416. &dtext->is_packed_rgb, dtext->rgba_map)) < 0)
  417. return ret;
  418. if (!dtext->is_packed_rgb) {
  419. uint8_t *rgba = dtext->fontcolor_rgba;
  420. dtext->fontcolor[0] = RGB_TO_Y_CCIR(rgba[0], rgba[1], rgba[2]);
  421. dtext->fontcolor[1] = RGB_TO_U_CCIR(rgba[0], rgba[1], rgba[2], 0);
  422. dtext->fontcolor[2] = RGB_TO_V_CCIR(rgba[0], rgba[1], rgba[2], 0);
  423. dtext->fontcolor[3] = rgba[3];
  424. rgba = dtext->shadowcolor_rgba;
  425. dtext->shadowcolor[0] = RGB_TO_Y_CCIR(rgba[0], rgba[1], rgba[2]);
  426. dtext->shadowcolor[1] = RGB_TO_U_CCIR(rgba[0], rgba[1], rgba[2], 0);
  427. dtext->shadowcolor[2] = RGB_TO_V_CCIR(rgba[0], rgba[1], rgba[2], 0);
  428. dtext->shadowcolor[3] = rgba[3];
  429. }
  430. dtext->var_values[VAR_w] = dtext->var_values[VAR_W] = dtext->var_values[VAR_MAIN_W] = inlink->w;
  431. dtext->var_values[VAR_h] = dtext->var_values[VAR_H] = dtext->var_values[VAR_MAIN_H] = inlink->h;
  432. dtext->var_values[VAR_SAR] = inlink->sample_aspect_ratio.num ? av_q2d(inlink->sample_aspect_ratio) : 1;
  433. dtext->var_values[VAR_DAR] = (double)inlink->w / inlink->h * dtext->var_values[VAR_SAR];
  434. dtext->var_values[VAR_HSUB] = 1<<pix_desc->log2_chroma_w;
  435. dtext->var_values[VAR_VSUB] = 1<<pix_desc->log2_chroma_h;
  436. dtext->var_values[VAR_X] = NAN;
  437. dtext->var_values[VAR_Y] = NAN;
  438. if (!dtext->reinit)
  439. dtext->var_values[VAR_N] = 0;
  440. dtext->var_values[VAR_T] = NAN;
  441. av_lfg_init(&dtext->prng, av_get_random_seed());
  442. if ((ret = av_expr_parse(&dtext->x_pexpr, dtext->x_expr, var_names,
  443. NULL, NULL, fun2_names, fun2, 0, ctx)) < 0 ||
  444. (ret = av_expr_parse(&dtext->y_pexpr, dtext->y_expr, var_names,
  445. NULL, NULL, fun2_names, fun2, 0, ctx)) < 0 ||
  446. (ret = av_expr_parse(&dtext->d_pexpr, dtext->d_expr, var_names,
  447. NULL, NULL, fun2_names, fun2, 0, ctx)) < 0)
  448. return AVERROR(EINVAL);
  449. return 0;
  450. }
  451. static int command(AVFilterContext *ctx, const char *cmd, const char *arg, char *res, int res_len, int flags)
  452. {
  453. DrawTextContext *dtext = ctx->priv;
  454. if (!strcmp(cmd, "reinit")) {
  455. int ret;
  456. uninit(ctx);
  457. dtext->reinit = 1;
  458. if ((ret = init(ctx, arg, NULL)) < 0)
  459. return ret;
  460. return config_input(ctx->inputs[0]);
  461. }
  462. return AVERROR(ENOSYS);
  463. }
  464. #define GET_BITMAP_VAL(r, c) \
  465. bitmap->pixel_mode == FT_PIXEL_MODE_MONO ? \
  466. (bitmap->buffer[(r) * bitmap->pitch + ((c)>>3)] & (0x80 >> ((c)&7))) * 255 : \
  467. bitmap->buffer[(r) * bitmap->pitch + (c)]
  468. #define SET_PIXEL_YUV(picref, yuva_color, val, x, y, hsub, vsub) { \
  469. luma_pos = ((x) ) + ((y) ) * picref->linesize[0]; \
  470. alpha = yuva_color[3] * (val) * 129; \
  471. picref->data[0][luma_pos] = (alpha * yuva_color[0] + (255*255*129 - alpha) * picref->data[0][luma_pos] ) >> 23; \
  472. if (((x) & ((1<<(hsub)) - 1)) == 0 && ((y) & ((1<<(vsub)) - 1)) == 0) {\
  473. chroma_pos1 = ((x) >> (hsub)) + ((y) >> (vsub)) * picref->linesize[1]; \
  474. chroma_pos2 = ((x) >> (hsub)) + ((y) >> (vsub)) * picref->linesize[2]; \
  475. picref->data[1][chroma_pos1] = (alpha * yuva_color[1] + (255*255*129 - alpha) * picref->data[1][chroma_pos1]) >> 23; \
  476. picref->data[2][chroma_pos2] = (alpha * yuva_color[2] + (255*255*129 - alpha) * picref->data[2][chroma_pos2]) >> 23; \
  477. }\
  478. }
  479. static inline int draw_glyph_yuv(AVFilterBufferRef *picref, FT_Bitmap *bitmap,
  480. int x, int y, int width, int height,
  481. const uint8_t yuva_color[4], int hsub, int vsub)
  482. {
  483. int r, c, alpha;
  484. unsigned int luma_pos, chroma_pos1, chroma_pos2;
  485. uint8_t src_val;
  486. for (r = 0; r < bitmap->rows && r+y < height; r++) {
  487. for (c = 0; c < bitmap->width && c+x < width; c++) {
  488. if (c+x < 0 || r+y < 0)
  489. continue;
  490. /* get intensity value in the glyph bitmap (source) */
  491. src_val = GET_BITMAP_VAL(r, c);
  492. if (!src_val)
  493. continue;
  494. SET_PIXEL_YUV(picref, yuva_color, src_val, c+x, y+r, hsub, vsub);
  495. }
  496. }
  497. return 0;
  498. }
  499. #define SET_PIXEL_RGB(picref, rgba_color, val, x, y, pixel_step, r_off, g_off, b_off, a_off) { \
  500. p = picref->data[0] + (x) * pixel_step + ((y) * picref->linesize[0]); \
  501. alpha = rgba_color[3] * (val) * 129; \
  502. *(p+r_off) = (alpha * rgba_color[0] + (255*255*129 - alpha) * *(p+r_off)) >> 23; \
  503. *(p+g_off) = (alpha * rgba_color[1] + (255*255*129 - alpha) * *(p+g_off)) >> 23; \
  504. *(p+b_off) = (alpha * rgba_color[2] + (255*255*129 - alpha) * *(p+b_off)) >> 23; \
  505. }
  506. static inline int draw_glyph_rgb(AVFilterBufferRef *picref, FT_Bitmap *bitmap,
  507. int x, int y, int width, int height, int pixel_step,
  508. const uint8_t rgba_color[4], const uint8_t rgba_map[4])
  509. {
  510. int r, c, alpha;
  511. uint8_t *p;
  512. uint8_t src_val;
  513. for (r = 0; r < bitmap->rows && r+y < height; r++) {
  514. for (c = 0; c < bitmap->width && c+x < width; c++) {
  515. if (c+x < 0 || r+y < 0)
  516. continue;
  517. /* get intensity value in the glyph bitmap (source) */
  518. src_val = GET_BITMAP_VAL(r, c);
  519. if (!src_val)
  520. continue;
  521. SET_PIXEL_RGB(picref, rgba_color, src_val, c+x, y+r, pixel_step,
  522. rgba_map[0], rgba_map[1], rgba_map[2], rgba_map[3]);
  523. }
  524. }
  525. return 0;
  526. }
  527. static inline void drawbox(AVFilterBufferRef *picref, int x, int y,
  528. int width, int height,
  529. uint8_t *line[4], int pixel_step[4], uint8_t color[4],
  530. int hsub, int vsub, int is_rgba_packed, uint8_t rgba_map[4])
  531. {
  532. int i, j, alpha;
  533. if (color[3] != 0xFF) {
  534. if (is_rgba_packed) {
  535. uint8_t *p;
  536. for (j = 0; j < height; j++)
  537. for (i = 0; i < width; i++)
  538. SET_PIXEL_RGB(picref, color, 255, i+x, y+j, pixel_step[0],
  539. rgba_map[0], rgba_map[1], rgba_map[2], rgba_map[3]);
  540. } else {
  541. unsigned int luma_pos, chroma_pos1, chroma_pos2;
  542. for (j = 0; j < height; j++)
  543. for (i = 0; i < width; i++)
  544. SET_PIXEL_YUV(picref, color, 255, i+x, y+j, hsub, vsub);
  545. }
  546. } else {
  547. ff_draw_rectangle(picref->data, picref->linesize,
  548. line, pixel_step, hsub, vsub,
  549. x, y, width, height);
  550. }
  551. }
  552. static int draw_glyphs(DrawTextContext *dtext, AVFilterBufferRef *picref,
  553. int width, int height, const uint8_t rgbcolor[4], const uint8_t yuvcolor[4], int x, int y)
  554. {
  555. char *text = dtext->expanded_text;
  556. uint32_t code = 0;
  557. int i, x1, y1;
  558. uint8_t *p;
  559. Glyph *glyph = NULL;
  560. for (i = 0, p = text; *p; i++) {
  561. Glyph dummy = { 0 };
  562. GET_UTF8(code, *p++, continue;);
  563. /* skip new line chars, just go to new line */
  564. if (code == '\n' || code == '\r' || code == '\t')
  565. continue;
  566. dummy.code = code;
  567. glyph = av_tree_find(dtext->glyphs, &dummy, (void *)glyph_cmp, NULL);
  568. if (glyph->bitmap.pixel_mode != FT_PIXEL_MODE_MONO &&
  569. glyph->bitmap.pixel_mode != FT_PIXEL_MODE_GRAY)
  570. return AVERROR(EINVAL);
  571. x1 = dtext->positions[i].x+dtext->x+x;
  572. y1 = dtext->positions[i].y+dtext->y+y;
  573. if (dtext->is_packed_rgb) {
  574. draw_glyph_rgb(picref, &glyph->bitmap,
  575. x1, y1, width, height,
  576. dtext->pixel_step[0], rgbcolor, dtext->rgba_map);
  577. } else {
  578. draw_glyph_yuv(picref, &glyph->bitmap,
  579. x1, y1, width, height,
  580. yuvcolor, dtext->hsub, dtext->vsub);
  581. }
  582. }
  583. return 0;
  584. }
  585. static int draw_text(AVFilterContext *ctx, AVFilterBufferRef *picref,
  586. int width, int height)
  587. {
  588. DrawTextContext *dtext = ctx->priv;
  589. uint32_t code = 0, prev_code = 0;
  590. int x = 0, y = 0, i = 0, ret;
  591. int max_text_line_w = 0, len;
  592. int box_w, box_h;
  593. char *text = dtext->text;
  594. uint8_t *p;
  595. int y_min = 32000, y_max = -32000;
  596. int x_min = 32000, x_max = -32000;
  597. FT_Vector delta;
  598. Glyph *glyph = NULL, *prev_glyph = NULL;
  599. Glyph dummy = { 0 };
  600. time_t now = time(0);
  601. struct tm ltime;
  602. uint8_t *buf = dtext->expanded_text;
  603. int buf_size = dtext->expanded_text_size;
  604. if(dtext->basetime != AV_NOPTS_VALUE)
  605. now= picref->pts*av_q2d(ctx->inputs[0]->time_base) + dtext->basetime/1000000;
  606. if (!buf) {
  607. buf_size = 2*strlen(dtext->text)+1;
  608. buf = av_malloc(buf_size);
  609. }
  610. #if HAVE_LOCALTIME_R
  611. localtime_r(&now, &ltime);
  612. #else
  613. if(strchr(dtext->text, '%'))
  614. ltime= *localtime(&now);
  615. #endif
  616. do {
  617. *buf = 1;
  618. if (strftime(buf, buf_size, dtext->text, &ltime) != 0 || *buf == 0)
  619. break;
  620. buf_size *= 2;
  621. } while ((buf = av_realloc(buf, buf_size)));
  622. if (dtext->tc.str) {
  623. char tcbuf[sizeof("hh:mm:ss.ff")];
  624. avpriv_timecode_to_string(tcbuf, &dtext->tc, dtext->frame_id++);
  625. buf = av_asprintf("%s%s", dtext->text, tcbuf);
  626. }
  627. if (!buf)
  628. return AVERROR(ENOMEM);
  629. text = dtext->expanded_text = buf;
  630. dtext->expanded_text_size = buf_size;
  631. if ((len = strlen(text)) > dtext->nb_positions) {
  632. if (!(dtext->positions =
  633. av_realloc(dtext->positions, len*sizeof(*dtext->positions))))
  634. return AVERROR(ENOMEM);
  635. dtext->nb_positions = len;
  636. }
  637. x = 0;
  638. y = 0;
  639. /* load and cache glyphs */
  640. for (i = 0, p = text; *p; i++) {
  641. GET_UTF8(code, *p++, continue;);
  642. /* get glyph */
  643. dummy.code = code;
  644. glyph = av_tree_find(dtext->glyphs, &dummy, glyph_cmp, NULL);
  645. if (!glyph)
  646. load_glyph(ctx, &glyph, code);
  647. y_min = FFMIN(glyph->bbox.yMin, y_min);
  648. y_max = FFMAX(glyph->bbox.yMax, y_max);
  649. x_min = FFMIN(glyph->bbox.xMin, x_min);
  650. x_max = FFMAX(glyph->bbox.xMax, x_max);
  651. }
  652. dtext->max_glyph_h = y_max - y_min;
  653. dtext->max_glyph_w = x_max - x_min;
  654. /* compute and save position for each glyph */
  655. glyph = NULL;
  656. for (i = 0, p = text; *p; i++) {
  657. GET_UTF8(code, *p++, continue;);
  658. /* skip the \n in the sequence \r\n */
  659. if (prev_code == '\r' && code == '\n')
  660. continue;
  661. prev_code = code;
  662. if (is_newline(code)) {
  663. max_text_line_w = FFMAX(max_text_line_w, x);
  664. y += dtext->max_glyph_h;
  665. x = 0;
  666. continue;
  667. }
  668. /* get glyph */
  669. prev_glyph = glyph;
  670. dummy.code = code;
  671. glyph = av_tree_find(dtext->glyphs, &dummy, glyph_cmp, NULL);
  672. /* kerning */
  673. if (dtext->use_kerning && prev_glyph && glyph->code) {
  674. FT_Get_Kerning(dtext->face, prev_glyph->code, glyph->code,
  675. ft_kerning_default, &delta);
  676. x += delta.x >> 6;
  677. }
  678. /* save position */
  679. dtext->positions[i].x = x + glyph->bitmap_left;
  680. dtext->positions[i].y = y - glyph->bitmap_top + y_max;
  681. if (code == '\t') x = (x / dtext->tabsize + 1)*dtext->tabsize;
  682. else x += glyph->advance;
  683. }
  684. max_text_line_w = FFMAX(x, max_text_line_w);
  685. dtext->var_values[VAR_TW] = dtext->var_values[VAR_TEXT_W] = max_text_line_w;
  686. dtext->var_values[VAR_TH] = dtext->var_values[VAR_TEXT_H] = y + dtext->max_glyph_h;
  687. dtext->var_values[VAR_MAX_GLYPH_W] = dtext->max_glyph_w;
  688. dtext->var_values[VAR_MAX_GLYPH_H] = dtext->max_glyph_h;
  689. dtext->var_values[VAR_MAX_GLYPH_A] = dtext->var_values[VAR_ASCENT ] = y_max;
  690. dtext->var_values[VAR_MAX_GLYPH_D] = dtext->var_values[VAR_DESCENT] = y_min;
  691. dtext->var_values[VAR_LINE_H] = dtext->var_values[VAR_LH] = dtext->max_glyph_h;
  692. dtext->x = dtext->var_values[VAR_X] = av_expr_eval(dtext->x_pexpr, dtext->var_values, &dtext->prng);
  693. dtext->y = dtext->var_values[VAR_Y] = av_expr_eval(dtext->y_pexpr, dtext->var_values, &dtext->prng);
  694. dtext->x = dtext->var_values[VAR_X] = av_expr_eval(dtext->x_pexpr, dtext->var_values, &dtext->prng);
  695. dtext->draw = av_expr_eval(dtext->d_pexpr, dtext->var_values, &dtext->prng);
  696. if(!dtext->draw)
  697. return 0;
  698. dtext->x &= ~((1 << dtext->hsub) - 1);
  699. dtext->y &= ~((1 << dtext->vsub) - 1);
  700. box_w = FFMIN(width - 1 , max_text_line_w);
  701. box_h = FFMIN(height - 1, y + dtext->max_glyph_h);
  702. /* draw box */
  703. if (dtext->draw_box)
  704. drawbox(picref, dtext->x, dtext->y, box_w, box_h,
  705. dtext->box_line, dtext->pixel_step, dtext->boxcolor_rgba,
  706. dtext->hsub, dtext->vsub, dtext->is_packed_rgb, dtext->rgba_map);
  707. if (dtext->shadowx || dtext->shadowy) {
  708. if ((ret = draw_glyphs(dtext, picref, width, height, dtext->shadowcolor_rgba,
  709. dtext->shadowcolor, dtext->shadowx, dtext->shadowy)) < 0)
  710. return ret;
  711. }
  712. if ((ret = draw_glyphs(dtext, picref, width, height, dtext->fontcolor_rgba,
  713. dtext->fontcolor, 0, 0)) < 0)
  714. return ret;
  715. return 0;
  716. }
  717. static void null_draw_slice(AVFilterLink *link, int y, int h, int slice_dir) { }
  718. static void end_frame(AVFilterLink *inlink)
  719. {
  720. AVFilterContext *ctx = inlink->dst;
  721. AVFilterLink *outlink = ctx->outputs[0];
  722. DrawTextContext *dtext = ctx->priv;
  723. AVFilterBufferRef *picref = inlink->cur_buf;
  724. dtext->var_values[VAR_T] = picref->pts == AV_NOPTS_VALUE ?
  725. NAN : picref->pts * av_q2d(inlink->time_base);
  726. draw_text(ctx, picref, picref->video->w, picref->video->h);
  727. av_log(ctx, AV_LOG_DEBUG, "n:%d t:%f text_w:%d text_h:%d x:%d y:%d\n",
  728. (int)dtext->var_values[VAR_N], dtext->var_values[VAR_T],
  729. (int)dtext->var_values[VAR_TEXT_W], (int)dtext->var_values[VAR_TEXT_H],
  730. dtext->x, dtext->y);
  731. dtext->var_values[VAR_N] += 1.0;
  732. avfilter_draw_slice(outlink, 0, picref->video->h, 1);
  733. avfilter_end_frame(outlink);
  734. }
  735. AVFilter avfilter_vf_drawtext = {
  736. .name = "drawtext",
  737. .description = NULL_IF_CONFIG_SMALL("Draw text on top of video frames using libfreetype library."),
  738. .priv_size = sizeof(DrawTextContext),
  739. .init = init,
  740. .uninit = uninit,
  741. .query_formats = query_formats,
  742. .inputs = (const AVFilterPad[]) {{ .name = "default",
  743. .type = AVMEDIA_TYPE_VIDEO,
  744. .get_video_buffer = avfilter_null_get_video_buffer,
  745. .start_frame = avfilter_null_start_frame,
  746. .draw_slice = null_draw_slice,
  747. .end_frame = end_frame,
  748. .config_props = config_input,
  749. .min_perms = AV_PERM_WRITE |
  750. AV_PERM_READ,
  751. .rej_perms = AV_PERM_PRESERVE },
  752. { .name = NULL}},
  753. .outputs = (const AVFilterPad[]) {{ .name = "default",
  754. .type = AVMEDIA_TYPE_VIDEO, },
  755. { .name = NULL}},
  756. .process_command = command,
  757. };