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.

108 lines
4.1KB

  1. /*
  2. * SSA/ASS common functions
  3. * Copyright (c) 2010 Aurelien Jacobs <aurel@gnuage.org>
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg 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. * FFmpeg 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 FFmpeg; 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/avassert.h"
  24. #include "libavutil/avstring.h"
  25. #include "libavutil/common.h"
  26. int ff_ass_subtitle_header(AVCodecContext *avctx,
  27. const char *font, int font_size,
  28. int color, int back_color,
  29. int bold, int italic, int underline,
  30. int alignment)
  31. {
  32. avctx->subtitle_header = av_asprintf(
  33. "[Script Info]\r\n"
  34. "ScriptType: v4.00+\r\n"
  35. "\r\n"
  36. "[V4+ Styles]\r\n"
  37. "Format: Name, Fontname, Fontsize, PrimaryColour, SecondaryColour, OutlineColour, BackColour, Bold, Italic, Underline, BorderStyle, Outline, Shadow, Alignment, MarginL, MarginR, MarginV, AlphaLevel, Encoding\r\n"
  38. "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"
  39. "\r\n"
  40. "[Events]\r\n"
  41. "Format: Layer, Start, End, Style, Text\r\n",
  42. font, font_size, color, color, back_color, back_color,
  43. -bold, -italic, -underline, alignment);
  44. if (!avctx->subtitle_header)
  45. return AVERROR(ENOMEM);
  46. avctx->subtitle_header_size = strlen(avctx->subtitle_header);
  47. return 0;
  48. }
  49. int ff_ass_subtitle_header_default(AVCodecContext *avctx)
  50. {
  51. return ff_ass_subtitle_header(avctx, ASS_DEFAULT_FONT,
  52. ASS_DEFAULT_FONT_SIZE,
  53. ASS_DEFAULT_COLOR,
  54. ASS_DEFAULT_BACK_COLOR,
  55. ASS_DEFAULT_BOLD,
  56. ASS_DEFAULT_ITALIC,
  57. ASS_DEFAULT_UNDERLINE,
  58. ASS_DEFAULT_ALIGNMENT);
  59. }
  60. static int ts_to_string(char *str, int strlen, int ts)
  61. {
  62. int h, m, s;
  63. h = ts/360000; ts -= 360000*h;
  64. m = ts/ 6000; ts -= 6000*m;
  65. s = ts/ 100; ts -= 100*s;
  66. return snprintf(str, strlen, "%d:%02d:%02d.%02d", h, m, s, ts);
  67. }
  68. int ff_ass_add_rect(AVSubtitle *sub, const char *dialog,
  69. int ts_start, int duration, int raw)
  70. {
  71. int len = 0, dlen;
  72. char s_start[16], s_end[16], header[48] = {0};
  73. AVSubtitleRect **rects;
  74. if (!raw) {
  75. ts_to_string(s_start, sizeof(s_start), ts_start);
  76. if (duration == -1)
  77. snprintf(s_end, sizeof(s_end), "9:59:59.99");
  78. else
  79. ts_to_string(s_end, sizeof(s_end), ts_start + duration);
  80. len = snprintf(header, sizeof(header), "Dialogue: 0,%s,%s,Default,",
  81. s_start, s_end);
  82. av_assert0(len < sizeof(header));
  83. }
  84. dlen = strcspn(dialog, "\n");
  85. dlen += dialog[dlen] == '\n';
  86. rects = av_realloc(sub->rects, (sub->num_rects+1) * sizeof(*sub->rects));
  87. if (!rects)
  88. return AVERROR(ENOMEM);
  89. sub->rects = rects;
  90. sub->end_display_time = FFMAX(sub->end_display_time, 10 * duration);
  91. rects[sub->num_rects] = av_mallocz(sizeof(*rects[0]));
  92. rects[sub->num_rects]->type = SUBTITLE_ASS;
  93. rects[sub->num_rects]->ass = av_malloc(len + dlen + 1);
  94. strcpy (rects[sub->num_rects]->ass , header);
  95. av_strlcpy(rects[sub->num_rects]->ass + len, dialog, dlen + 1);
  96. sub->num_rects++;
  97. return dlen;
  98. }