Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHendrik Leppkes <h.leppkes@gmail.com>2014-01-09 13:04:25 +0400
committerHendrik Leppkes <h.leppkes@gmail.com>2014-01-09 13:04:25 +0400
commitda162975c1f82548b80eed82b860b1cbaab2ef9f (patch)
tree2cefedfccd2057a06134c90515624bed9a9dfe3e
parent07b24532ae4724e84bd9fce511896f75961cb13a (diff)
HACK mov: don't set the DEFAULT disposition because of wrong semanticsmpc-hc-1.7.2-6lav0.60
The meaning of the DEFAULT flag and movs enabled flag don't match and cause playback issues.
-rw-r--r--libavformat/mov.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c
index 5a51963d53..acffefc4f0 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -2463,7 +2463,7 @@ static int mov_read_tkhd(MOVContext *c, AVIOContext *pb, MOVAtom atom)
version = avio_r8(pb);
flags = avio_rb24(pb);
- st->disposition |= (flags & MOV_TKHD_FLAG_ENABLED) ? AV_DISPOSITION_DEFAULT : 0;
+ /* st->disposition |= (flags & MOV_TKHD_FLAG_ENABLED) ? AV_DISPOSITION_DEFAULT : 0; */
if (version == 1) {
avio_rb64(pb);