summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorVittorio Giovara <vittorio.giovara@gmail.com>2016-11-15 10:14:30 -0500
committerVittorio Giovara <vittorio.giovara@gmail.com>2016-11-16 11:17:06 -0500
commitd5d62ce6d643de704e7bd62a2375e6391c0ffb9a (patch)
tree7867cc27e7dc269488cd68a46af772d06832956b /libavformat
parent81d7f0bbca837afda1f7e60d3ae52ab1360ab44b (diff)
mov: Fix identity matrix boolean logic
This prevented the code from correctly exporting the rotation matrix which caused a few samples to be displayed wrong. Introduced in ecd2ec69ce10e13f6ede353d2def7c. Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/mov.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c
index b5b2a5b030..df29f2a605 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -2759,8 +2759,8 @@ static int mov_read_meta(MOVContext *c, AVIOContext *pb, MOVAtom atom)
( (matrix)[0][0] == (1 << 16) && \
(matrix)[1][1] == (1 << 16) && \
(matrix)[2][2] == (1 << 30) && \
- !(matrix)[0][1] && !(matrix)[0][2] || \
- !(matrix)[1][0] && !(matrix)[1][2] || \
+ !(matrix)[0][1] && !(matrix)[0][2] && \
+ !(matrix)[1][0] && !(matrix)[1][2] && \
!(matrix)[2][0] && !(matrix)[2][1])
static int mov_read_tkhd(MOVContext *c, AVIOContext *pb, MOVAtom atom)