lavc/ass_split: fix parsing utf8 scripts

The [Script Info] section was skipped if starts with UTF8 BOM

Signed-off-by: Philip Langdale <philipl@overt.org>
pull/336/head
John Stebbins 5 years ago committed by Philip Langdale
parent b8d4a66b29
commit a52eef68d4
  1. 2
      libavcodec/ass_split.c

@ -376,6 +376,8 @@ ASSSplitContext *ff_ass_split(const char *buf)
ASSSplitContext *ctx = av_mallocz(sizeof(*ctx)); ASSSplitContext *ctx = av_mallocz(sizeof(*ctx));
if (!ctx) if (!ctx)
return NULL; return NULL;
if (buf && !memcmp(buf, "\xef\xbb\xbf", 3)) // Skip UTF-8 BOM header
buf += 3;
ctx->current_section = -1; ctx->current_section = -1;
if (ass_split(ctx, buf) < 0) { if (ass_split(ctx, buf) < 0) {
ff_ass_split_free(ctx); ff_ass_split_free(ctx);

Loading…
Cancel
Save