mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-22 16:18:08 +02:00
Add RL abbreviation for run length decode.
This commit is contained in:
parent
4616ee0ee8
commit
32b7eba6de
1 changed files with 1 additions and 1 deletions
|
@ -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') {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue