mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
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>
This commit is contained in:
parent
b8d4a66b29
commit
a52eef68d4
@ -376,6 +376,8 @@ ASSSplitContext *ff_ass_split(const char *buf)
|
||||
ASSSplitContext *ctx = av_mallocz(sizeof(*ctx));
|
||||
if (!ctx)
|
||||
return NULL;
|
||||
if (buf && !memcmp(buf, "\xef\xbb\xbf", 3)) // Skip UTF-8 BOM header
|
||||
buf += 3;
|
||||
ctx->current_section = -1;
|
||||
if (ass_split(ctx, buf) < 0) {
|
||||
ff_ass_split_free(ctx);
|
||||
|
Loading…
Reference in New Issue
Block a user