1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-25 09:38:06 +02:00

Move JpegStream and JpxStream to their own files

This commit is contained in:
Jonas Jenwald 2017-10-26 13:00:09 +02:00
parent 0052dc2b0d
commit 36593d6bbc
6 changed files with 213 additions and 170 deletions

View file

@ -14,8 +14,8 @@
*/
import {
Ascii85Stream, AsciiHexStream, FlateStream, JpegStream, JpxStream, LZWStream,
NullStream, PredictorStream, RunLengthStream
Ascii85Stream, AsciiHexStream, FlateStream, LZWStream, NullStream,
PredictorStream, RunLengthStream
} from './stream';
import {
assert, FormatError, info, isNum, isString, MissingDataException, StreamType,
@ -26,6 +26,8 @@ import {
} from './primitives';
import { CCITTFaxStream } from './ccitt_stream';
import { Jbig2Stream } from './jbig2_stream';
import { JpegStream } from './jpeg_stream';
import { JpxStream } from './jpx_stream';
var MAX_LENGTH_TO_CACHE = 1000;