Add strict equalities in src/core/arithmetic_decoder.js
This commit is contained in:
parent
9cb09324d2
commit
2162a19ed9
@ -99,7 +99,7 @@ var ArithmeticDecoder = (function ArithmeticDecoderClosure() {
|
|||||||
byteIn: function ArithmeticDecoder_byteIn() {
|
byteIn: function ArithmeticDecoder_byteIn() {
|
||||||
var data = this.data;
|
var data = this.data;
|
||||||
var bp = this.bp;
|
var bp = this.bp;
|
||||||
if (data[bp] == 0xFF) {
|
if (data[bp] === 0xFF) {
|
||||||
var b1 = data[bp + 1];
|
var b1 = data[bp + 1];
|
||||||
if (b1 > 0x8F) {
|
if (b1 > 0x8F) {
|
||||||
this.clow += 0xFF00;
|
this.clow += 0xFF00;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user