Commit 97b04f5e authored by John Stebbins's avatar John Stebbins Committed by Janne Grunau

mov: add support for little-endian utf16 chapter names

Signed-off-by: 's avatarJanne Grunau <janne-ffmpeg@jannau.net>
parent 795ed278
......@@ -2326,6 +2326,8 @@ static void mov_read_chapters(AVFormatContext *s)
ch = get_be16(sc->pb);
if (ch == 0xfeff)
avio_get_str16be(sc->pb, len, title, title_len);
else if (ch == 0xfffe)
avio_get_str16le(sc->pb, len, title, title_len);
else {
AV_WB16(title, ch);
get_strz(sc->pb, title + 2, len - 1);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment