From: Brendan Dahl Date: Mon, 16 Apr 2012 18:35:42 +0000 (-0700) Subject: Add RL abbreviation for run length decode. X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=32b7eba6debcb51d8095a23652a6dbdfb2170c62;p=pdf.js.git Add RL abbreviation for run length decode. --- diff --git a/src/parser.js b/src/parser.js index 0697fc0..2855018 100644 --- a/src/parser.js +++ b/src/parser.js @@ -249,7 +249,7 @@ var Parser = (function ParserClosure() { if (name == 'CCITTFaxDecode' || name == 'CCF') { return new CCITTFaxStream(stream, params); } - if (name == 'RunLengthDecode') { + if (name == 'RunLengthDecode' || name == 'RL') { return new RunLengthStream(stream); } if (name == 'JBIG2Decode') {