Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2017-06-13 01:01:04 +0300
committerMichael Niedermayer <michael@niedermayer.cc>2017-06-18 15:50:35 +0300
commit14b834c45a00d89f4f4713e6977b31c51fef1286 (patch)
tree2c9eeacf0713365459234b9ab987d1e85ce67bd3 /libavcodec/htmlsubtitles.c
parent4132218b87cd6fb13abd162e3037ef4563286baa (diff)
avcodec/htmlsubtitles: Factor open brace handling into its own function
Suggested-by: wm4 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/htmlsubtitles.c')
-rw-r--r--libavcodec/htmlsubtitles.c44
1 files changed, 26 insertions, 18 deletions
diff --git a/libavcodec/htmlsubtitles.c b/libavcodec/htmlsubtitles.c
index 70311c66d5..be5c9316ca 100644
--- a/libavcodec/htmlsubtitles.c
+++ b/libavcodec/htmlsubtitles.c
@@ -51,6 +51,30 @@ static void rstrip_spaces_buf(AVBPrint *buf)
buf->str[--buf->len] = 0;
}
+/* skip all {\xxx} substrings except for {\an%d}
+ and all microdvd like styles such as {Y:xxx} */
+static void handle_open_brace(AVBPrint *dst, const char **inp, int *an, int *closing_brace_missing)
+{
+ int len = 0;
+ const char *in = *inp;
+
+ *an += sscanf(in, "{\\an%*1u}%n", &len) >= 0 && len > 0;
+
+ if (!*closing_brace_missing) {
+ if ( (*an != 1 && in[1] == '\\')
+ || (in[1] && strchr("CcFfoPSsYy", in[1]) && in[2] == ':')) {
+ char *bracep = strchr(in+2, '}');
+ if (bracep) {
+ *inp = bracep;
+ return;
+ } else
+ *closing_brace_missing = 1;
+ }
+ }
+
+ av_bprint_chars(dst, *in, 1);
+}
+
int ff_htmlmarkup_to_ass(void *log_ctx, AVBPrint *dst, const char *in)
{
char *param, buffer[128], tmp[128];
@@ -80,24 +104,8 @@ int ff_htmlmarkup_to_ass(void *log_ctx, AVBPrint *dst, const char *in)
if (!line_start)
av_bprint_chars(dst, *in, 1);
break;
- case '{': /* skip all {\xxx} substrings except for {\an%d}
- and all microdvd like styles such as {Y:xxx} */
- len = 0;
- an += sscanf(in, "{\\an%*1u}%n", &len) >= 0 && len > 0;
-
- if (!closing_brace_missing) {
- if ( (an != 1 && in[1] == '\\')
- || (in[1] && strchr("CcFfoPSsYy", in[1]) && in[2] == ':')) {
- char *bracep = strchr(in+2, '}');
- if (bracep) {
- in = bracep;
- break;
- } else
- closing_brace_missing = 1;
- }
- }
-
- av_bprint_chars(dst, *in, 1);
+ case '{':
+ handle_open_brace(dst, &in, &an, &closing_brace_missing);
break;
case '<':
tag_close = in[1] == '/';