1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-26 01:58:06 +02:00

CCITTFaxStream parser: resolve xref if needed

Fixes #5243
This commit is contained in:
Rob Wu 2014-08-31 11:03:24 +02:00
parent 8042a4b783
commit 07a4837763

View file

@ -386,6 +386,7 @@ var Parser = (function ParserClosure() {
}
if (name === 'CCITTFaxDecode' || name === 'CCF') {
xrefStreamStats[StreamType.CCF] = true;
params = this.fetchIfRef(params);
return new CCITTFaxStream(stream, maybeLength, params);
}
if (name === 'RunLengthDecode' || name === 'RL') {