[FFmpeg-cvslog] lavc/htmlsubtitles: simplify 1-char tags case insensitive test
Clément Bœsch
git at videolan.org
Wed Jul 26 20:59:26 EEST 2017
ffmpeg | branch: master | Clément Bœsch <u at pkh.me> | Wed Jul 26 19:56:28 2017 +0200| [2ba20d799ad25650e8fb400e0d0a33782394accf] | committer: Clément Bœsch
lavc/htmlsubtitles: simplify 1-char tags case insensitive test
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=2ba20d799ad25650e8fb400e0d0a33782394accf
---
libavcodec/htmlsubtitles.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavcodec/htmlsubtitles.c b/libavcodec/htmlsubtitles.c
index e6bac713c1..e1fb7bc3cf 100644
--- a/libavcodec/htmlsubtitles.c
+++ b/libavcodec/htmlsubtitles.c
@@ -165,7 +165,7 @@ int ff_htmlmarkup_to_ass(void *log_ctx, AVBPrint *dst, const char *in)
if (stack[sptr].param[i][0])
av_bprintf(dst, "%s", stack[sptr].param[i]);
}
- } else if (tagname[0] && !tagname[1] && av_stristr("bisu", tagname)) {
+ } else if (tagname[0] && !tagname[1] && strchr("bisu", av_tolower(tagname[0]))) {
av_bprintf(dst, "{\\%c%d}", (char)av_tolower(tagname[0]), !tag_close);
} else if (!av_strcasecmp(tagname, "br")) {
av_bprintf(dst, "\\N");
More information about the ffmpeg-cvslog
mailing list