From 4f692138fc7a08eb2b2c96cbe0eea966b04b789e Mon Sep 17 00:00:00 2001 From: Barun Parruck Date: Sat, 18 Mar 2017 19:43:30 +0530 Subject: [PATCH] Add missing line terminator in webvtt Fix #680 --- src/lib_ccx/ccx_encoders_common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib_ccx/ccx_encoders_common.c b/src/lib_ccx/ccx_encoders_common.c index 3e25d1a5..a9acd536 100644 --- a/src/lib_ccx/ccx_encoders_common.c +++ b/src/lib_ccx/ccx_encoders_common.c @@ -95,7 +95,7 @@ static const char *smptett_header = "\n" "
\n"; -static const char *webvtt_header[] = {"WEBVTT","\r\n","\r\n","STYLE","\r\n",NULL}; +static const char *webvtt_header[] = {"WEBVTT","\r\n","\r\n","STYLE","\r\n","\r\n",NULL}; static const char *simple_xml_header = "\r\n\r\n";