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.

126 lines
4.7KB

  1. /*
  2. * SSA/ASS common functions
  3. * Copyright (c) 2010 Aurelien Jacobs <aurel@gnuage.org>
  4. *
  5. * This file is part of Libav.
  6. *
  7. * Libav is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * Libav is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with Libav; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #include "avcodec.h"
  22. #include "ass.h"
  23. #include "libavutil/avstring.h"
  24. #include "libavutil/common.h"
  25. /**
  26. * Generate a suitable AVCodecContext.subtitle_header for SUBTITLE_ASS.
  27. *
  28. * @param avctx pointer to the AVCodecContext
  29. * @param font name of the default font face to use
  30. * @param font_size default font size to use
  31. * @param color default text color to use (ABGR)
  32. * @param back_color default background color to use (ABGR)
  33. * @param bold 1 for bold text, 0 for normal text
  34. * @param italic 1 for italic text, 0 for normal text
  35. * @param underline 1 for underline text, 0 for normal text
  36. * @param alignment position of the text (left, center, top...), defined after
  37. * the layout of the numpad (1-3 sub, 4-6 mid, 7-9 top)
  38. * @return >= 0 on success otherwise an error code <0
  39. */
  40. static int ass_subtitle_header(AVCodecContext *avctx,
  41. const char *font, int font_size,
  42. int color, int back_color,
  43. int bold, int italic, int underline,
  44. int alignment)
  45. {
  46. char header[512];
  47. snprintf(header, sizeof(header),
  48. "[Script Info]\r\n"
  49. "ScriptType: v4.00+\r\n"
  50. "\r\n"
  51. "[V4+ Styles]\r\n"
  52. "Format: Name, Fontname, Fontsize, PrimaryColour, SecondaryColour, OutlineColour, BackColour, Bold, Italic, Underline, BorderStyle, Outline, Shadow, Alignment, MarginL, MarginR, MarginV, AlphaLevel, Encoding\r\n"
  53. "Style: Default,%s,%d,&H%x,&H%x,&H%x,&H%x,%d,%d,%d,1,1,0,%d,10,10,10,0,0\r\n"
  54. "\r\n"
  55. "[Events]\r\n"
  56. "Format: Layer, Start, End, Text\r\n",
  57. font, font_size, color, color, back_color, back_color,
  58. -bold, -italic, -underline, alignment);
  59. avctx->subtitle_header = av_strdup(header);
  60. if (!avctx->subtitle_header)
  61. return AVERROR(ENOMEM);
  62. avctx->subtitle_header_size = strlen(avctx->subtitle_header);
  63. return 0;
  64. }
  65. int ff_ass_subtitle_header_default(AVCodecContext *avctx)
  66. {
  67. return ass_subtitle_header(avctx, ASS_DEFAULT_FONT,
  68. ASS_DEFAULT_FONT_SIZE,
  69. ASS_DEFAULT_COLOR,
  70. ASS_DEFAULT_BACK_COLOR,
  71. ASS_DEFAULT_BOLD,
  72. ASS_DEFAULT_ITALIC,
  73. ASS_DEFAULT_UNDERLINE,
  74. ASS_DEFAULT_ALIGNMENT);
  75. }
  76. void ff_ass_init(AVSubtitle *sub)
  77. {
  78. memset(sub, 0, sizeof(*sub));
  79. }
  80. static int ts_to_string(char *str, int strlen, int ts)
  81. {
  82. int h, m, s;
  83. h = ts/360000; ts -= 360000*h;
  84. m = ts/ 6000; ts -= 6000*m;
  85. s = ts/ 100; ts -= 100*s;
  86. return snprintf(str, strlen, "%d:%02d:%02d.%02d", h, m, s, ts);
  87. }
  88. int ff_ass_add_rect(AVSubtitle *sub, const char *dialog,
  89. int ts_start, int ts_end, int raw)
  90. {
  91. int len = 0, dlen, duration = ts_end - ts_start;
  92. char s_start[16], s_end[16], header[48] = {0};
  93. AVSubtitleRect **rects;
  94. if (!raw) {
  95. ts_to_string(s_start, sizeof(s_start), ts_start);
  96. ts_to_string(s_end, sizeof(s_end), ts_end );
  97. len = snprintf(header, sizeof(header), "Dialogue: 0,%s,%s,",
  98. s_start, s_end);
  99. }
  100. dlen = strcspn(dialog, "\n");
  101. dlen += dialog[dlen] == '\n';
  102. rects = av_realloc(sub->rects, (sub->num_rects+1) * sizeof(*sub->rects));
  103. if (!rects)
  104. return AVERROR(ENOMEM);
  105. sub->rects = rects;
  106. sub->end_display_time = FFMAX(sub->end_display_time, 10 * duration);
  107. rects[sub->num_rects] = av_mallocz(sizeof(*rects[0]));
  108. rects[sub->num_rects]->type = SUBTITLE_ASS;
  109. rects[sub->num_rects]->ass = av_malloc(len + dlen + 1);
  110. strcpy (rects[sub->num_rects]->ass , header);
  111. av_strlcpy(rects[sub->num_rects]->ass + len, dialog, dlen + 1);
  112. sub->num_rects++;
  113. return dlen;
  114. }