]> git.sesse.net Git - ffmpeg/commitdiff
lavc: add text encoder
authorClément Bœsch <u@pkh.me>
Thu, 17 Dec 2015 11:23:35 +0000 (12:23 +0100)
committerClément Bœsch <clement@stupeflix.com>
Mon, 21 Dec 2015 10:14:02 +0000 (11:14 +0100)
libavcodec/Makefile
libavcodec/allcodecs.c
libavcodec/srtenc.c
libavcodec/version.h
tests/fate/subtitles.mak
tests/ref/fate/sub-textenc [new file with mode: 0644]

index 5bcd35b9792c657c1c4c41a6f8f22c0eac2ff5cf..b924a72845ff9824ca6f68d9467f60dedff89218 100644 (file)
@@ -499,6 +499,7 @@ OBJS-$(CONFIG_SVQ1_ENCODER)            += svq1enc.o svq1.o    \
                                           h263.o ituh263enc.o
 OBJS-$(CONFIG_SVQ3_DECODER)            += svq3.o svq13.o mpegutils.o
 OBJS-$(CONFIG_TEXT_DECODER)            += textdec.o ass.o
+OBJS-$(CONFIG_TEXT_ENCODER)            += srtenc.o ass_split.o
 OBJS-$(CONFIG_TAK_DECODER)             += takdec.o tak.o takdsp.o
 OBJS-$(CONFIG_TARGA_DECODER)           += targa.o
 OBJS-$(CONFIG_TARGA_ENCODER)           += targaenc.o rle.o
index 245332eb1f93a4abe9e52b615896167bc2d591b9..6361a385377afe918efc074691d6f9c0e90e810c 100644 (file)
@@ -550,7 +550,7 @@ void avcodec_register_all(void)
     REGISTER_ENCDEC (SUBRIP,            subrip);
     REGISTER_DECODER(SUBVIEWER,         subviewer);
     REGISTER_DECODER(SUBVIEWER1,        subviewer1);
-    REGISTER_DECODER(TEXT,              text);
+    REGISTER_ENCDEC (TEXT,              text);
     REGISTER_DECODER(VPLAYER,           vplayer);
     REGISTER_ENCDEC (WEBVTT,            webvtt);
     REGISTER_ENCDEC (XSUB,              xsub);
index 328797089cbb1d00dcd7b8c704540d6d32ef15ee..0a6875a51abe88c8a1c95481619f536e5b70dac5 100644 (file)
@@ -221,8 +221,14 @@ static const ASSCodesCallbacks srt_callbacks = {
     .end              = srt_end_cb,
 };
 
-static int srt_encode_frame(AVCodecContext *avctx,
-                            unsigned char *buf, int bufsize, const AVSubtitle *sub)
+static const ASSCodesCallbacks text_callbacks = {
+    .text             = srt_text_cb,
+    .new_line         = srt_new_line_cb,
+};
+
+static int encode_frame(AVCodecContext *avctx,
+                        unsigned char *buf, int bufsize, const AVSubtitle *sub,
+                        const ASSCodesCallbacks *cb)
 {
     SRTContext *s = avctx->priv_data;
     ASSDialog *dialog;
@@ -241,7 +247,7 @@ static int srt_encode_frame(AVCodecContext *avctx,
         for (; dialog && num--; dialog++) {
             s->alignment_applied = 0;
             srt_style_apply(s, dialog->style);
-            ff_ass_split_override_codes(&srt_callbacks, s, dialog->text);
+            ff_ass_split_override_codes(cb, s, dialog->text);
         }
     }
 
@@ -259,6 +265,18 @@ static int srt_encode_frame(AVCodecContext *avctx,
     return s->buffer.len;
 }
 
+static int srt_encode_frame(AVCodecContext *avctx,
+                               unsigned char *buf, int bufsize, const AVSubtitle *sub)
+{
+    return encode_frame(avctx, buf, bufsize, sub, &srt_callbacks);
+}
+
+static int text_encode_frame(AVCodecContext *avctx,
+                             unsigned char *buf, int bufsize, const AVSubtitle *sub)
+{
+    return encode_frame(avctx, buf, bufsize, sub, &text_callbacks);
+}
+
 static int srt_encode_close(AVCodecContext *avctx)
 {
     SRTContext *s = avctx->priv_data;
@@ -293,3 +311,16 @@ AVCodec ff_subrip_encoder = {
     .close          = srt_encode_close,
 };
 #endif
+
+#if CONFIG_TEXT_ENCODER
+AVCodec ff_text_encoder = {
+    .name           = "text",
+    .long_name      = NULL_IF_CONFIG_SMALL("Raw text subtitle"),
+    .type           = AVMEDIA_TYPE_SUBTITLE,
+    .id             = AV_CODEC_ID_TEXT,
+    .priv_data_size = sizeof(SRTContext),
+    .init           = srt_encode_init,
+    .encode_sub     = text_encode_frame,
+    .close          = srt_encode_close,
+};
+#endif
index 72b54beaeb794dfa629f07a0c4ae419dc15e0940..b875c5954dfd9df028b22e62b13aa1583cbf2203 100644 (file)
@@ -29,7 +29,7 @@
 #include "libavutil/version.h"
 
 #define LIBAVCODEC_VERSION_MAJOR  57
-#define LIBAVCODEC_VERSION_MINOR  18
+#define LIBAVCODEC_VERSION_MINOR  19
 #define LIBAVCODEC_VERSION_MICRO 100
 
 #define LIBAVCODEC_VERSION_INT  AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
index 2d9eb50a5a5e2f7edba03c5fec52df8c4775d753..267c09e6409c8629aa2524c09722c098c87e6e6c 100644 (file)
@@ -76,6 +76,9 @@ fate-sub-webvtt2: CMD = fmtstdout ass -i $(TARGET_SAMPLES)/sub/WebVTT_extended_t
 FATE_SUBTITLES-$(call ALLYES, SRT_DEMUXER SUBRIP_DECODER WEBVTT_ENCODER WEBVTT_MUXER) += fate-sub-webvttenc
 fate-sub-webvttenc: CMD = fmtstdout webvtt -i $(TARGET_SAMPLES)/sub/SubRip_capability_tester.srt
 
+FATE_SUBTITLES-$(call ALLYES, SRT_DEMUXER SUBRIP_DECODER TEXT_ENCODER SRT_MUXER) += fate-sub-textenc
+fate-sub-textenc: CMD = fmtstdout srt -i $(TARGET_SAMPLES)/sub/SubRip_capability_tester.srt -c:s text
+
 FATE_SUBTITLES_ASS-$(call ALLYES, MICRODVD_DEMUXER MICRODVD_DECODER ICONV) += fate-sub-charenc
 fate-sub-charenc: CMD = fmtstdout ass -sub_charenc cp1251 -i $(TARGET_SAMPLES)/sub/cp1251-subtitles.sub
 
diff --git a/tests/ref/fate/sub-textenc b/tests/ref/fate/sub-textenc
new file mode 100644 (file)
index 0000000..cb0db7f
--- /dev/null
@@ -0,0 +1,213 @@
+1
+00:00:00,000 --> 00:00:00,000
+Don't show this text it may be used to insert hidden data
+
+2
+00:00:01,500 --> 00:00:04,500
+SubRip subtitles capability tester 1.3o by ale5000\r
+Use VLC 1.1 or higher as reference for most things and MPC Home Cinema for others\r
+This text should be blue\r
+This text should be red\r
+This text should be black\r
+If you see this with the normal font, the player don't (fully) support font face
+
+3
+00:00:04,500 --> 00:00:04,500
+Hidden
+
+4
+00:00:04,501 --> 00:00:07,501
+This text should be small\r
+This text should be normal\r
+This text should be big
+
+5
+00:00:07,501 --> 00:00:11,501
+This should be an E with an accent: È\r
+日本語\r
+This text should be bold, italics and underline\r
+This text should be small and green\r
+This text should be small and red\r
+This text should be big and brown
+
+6
+00:00:11,501 --> 00:00:14,501
+This line should be bold\r
+This line should be italics\r
+This line should be underline\r
+This line should be strikethrough\r
+Both lines\r
+should be underline
+
+7
+00:00:14,501 --> 00:00:17,501
+>\r
+It would be a good thing to\r
+hide invalid html tags that are closed and show the text in them\r
+<invalid_tag_unclosed>but show un-closed invalid html tags\r
+Show not opened tags</invalid_tag_not_opened>\r
+<
+
+8
+00:00:17,501 --> 00:00:20,501
+and also\r
+hide invalid html tags with parameters that are closed and show the text in them\r
+<invalid_tag_uc par=5>but show un-closed invalid html tags\r
+This text should be showed underlined without problems also: 2<3,5>1,4<6\r
+This shouldn't be underlined
+
+9
+00:00:20,501 --> 00:00:21,501
+This text should be in the normal position...
+
+10
+00:00:21,501 --> 00:00:22,501
+This text should NOT be in the normal position
+
+11
+00:00:22,501 --> 00:00:24,501
+Implementation is the same of the ASS tag\r
+This text should be at the\r
+top and horizontally centered
+
+12
+00:00:22,501 --> 00:00:24,501
+This text should be at the\r
+middle and horizontally centered
+
+13
+00:00:22,501 --> 00:00:24,501
+This text should be at the\r
+bottom and horizontally centered
+
+14
+00:00:24,501 --> 00:00:26,501
+This text should be at the\r
+top and horizontally at the left
+
+15
+00:00:24,501 --> 00:00:26,501
+This text should be at the\r
+middle and horizontally at the left\r
+(The second position must be ignored)
+
+16
+00:00:24,501 --> 00:00:26,501
+This text should be at the\r
+bottom and horizontally at the left
+
+17
+00:00:26,501 --> 00:00:28,501
+This text should be at the\r
+top and horizontally at the right
+
+18
+00:00:26,501 --> 00:00:28,501
+This text should be at the\r
+middle and horizontally at the right
+
+19
+00:00:26,501 --> 00:00:28,501
+This text should be at the\r
+bottom and horizontally at the right
+
+20
+00:00:28,501 --> 00:00:31,501
+This could be the most difficult thing to implement
+
+21
+00:00:31,501 --> 00:00:50,501
+First text
+
+22
+00:00:33,500 --> 00:00:35,500
+Second, it shouldn't overlap first
+
+23
+00:00:35,501 --> 00:00:37,501
+Third, it should replace second
+
+24
+00:00:36,501 --> 00:00:50,501
+Fourth, it shouldn't overlap first and third
+
+25
+00:00:40,501 --> 00:00:45,501
+Fifth, it should replace third
+
+26
+00:00:45,501 --> 00:00:50,501
+Sixth, it shouldn't be\r
+showed overlapped
+
+27
+00:00:50,501 --> 00:00:52,501
+TEXT 1 (bottom)
+
+28
+00:00:50,501 --> 00:00:52,501
+text 2
+
+29
+00:00:52,501 --> 00:00:54,501
+Hide these tags:\r
+also hide these tags:\r
+but show this: {normal text}
+
+30
+00:00:54,501 --> 00:01:00,501
+\r
+\ N is a forced line break\r
+\ h is a hard space\r
+Normal spaces at the start and at the end of the line are trimmed while hard spaces are not trimmed.\r
+The\hline\hwill\hnever\hbreak\hautomatically\hright\hbefore\hor\hafter\ha\hhard\hspace.\h:-D
+
+31
+00:00:54,501 --> 00:00:56,501
+\r
+\h\h\h\h\hA (05 hard spaces followed by a letter)\r
+A (Normal  spaces followed by a letter)\r
+A (No hard spaces followed by a letter)
+
+32
+00:00:56,501 --> 00:00:58,501
+\h\h\h\h\hA (05 hard spaces followed by a letter)\r
+A (Normal  spaces followed by a letter)\r
+A (No hard spaces followed by a letter)\r
+Show this: \TEST and this: \-)
+
+33
+00:00:58,501 --> 00:01:00,501
+\r
+A letter followed by 05 hard spaces: A\h\h\h\h\h\r
+A letter followed by normal  spaces: A\r
+A letter followed by no hard spaces: A\r
+05 hard  spaces between letters: A\h\h\h\h\hA\r
+5 normal spaces between letters: A     A\r
+\r
+^--Forced line break
+
+34
+00:01:00,501 --> 00:01:02,501
+Both line should be strikethrough,\r
+yes.\r
+Correctly closed tags\r
+should be hidden.
+
+35
+00:01:02,501 --> 00:01:04,501
+It shouldn't be strikethrough,\r
+not opened tag showed as text.</s>\r
+Not opened tag showed as text.</xxxxx>
+
+36
+00:01:04,501 --> 00:01:06,501
+Three lines should be strikethrough,\r
+yes.\r
+<yyyy>Not closed tags showed as text
+
+37
+00:01:06,501 --> 00:01:08,501
+Both line should be strikethrough but\r
+the wrong closing tag should be showed</b>
+