From 6417ccd4ff63695546ccbdc8b9844728bc2bd54c Mon Sep 17 00:00:00 2001 From: cconcolato Date: Mon, 17 Dec 2018 10:08:19 -0800 Subject: [PATCH] adding irot box (AVIF) --- src/parsing/irot.js | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 src/parsing/irot.js diff --git a/src/parsing/irot.js b/src/parsing/irot.js new file mode 100644 index 00000000..27613b1f --- /dev/null +++ b/src/parsing/irot.js @@ -0,0 +1,4 @@ +BoxParser.createBoxCtor("irot", function(stream) { + this.angle = stream.readUint8() & 0x3; +}); +