2019-01-24 0:29 GMT+01:00, Carl Eugen Hoyos :
> Attached patch fixes ticket #7661 for me.
Will commit tomorrow.
Carl Eugen
___
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel
2019-01-24 0:29 GMT+01:00, Carl Eugen Hoyos :
> Attached patch fixes ticket #7661 for me.
> +if (avio_rb24(s->pb) != MKBETAG(0, 0xef, 0xbb, 0xbf))
Changed locally to:
+if (avio_rb24(s->pb) != 0xefbbbf)
Carl Eugen
___
ffmpeg-devel mailing list
Hi!
Attached patch fixes ticket #7661 for me.
Please comment, Carl Eugen
From aa9df8940056919ac7c4b65900a2dd43a76321d2 Mon Sep 17 00:00:00 2001
From: Carl Eugen Hoyos
Date: Thu, 24 Jan 2019 00:22:47 +0100
Subject: [PATCH] lavf/subviewerdec: Skip leading BOM.
Fixes ticket #7661.
---
libavformat