Skip to content

Commit c7612d5

Browse files
committed
Fixing the decode jpeg functions
1 parent 45c25a7 commit c7612d5

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/CosStream.jl

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,11 @@ decode_ascii85(input::IO, parms) = decode_ascii85(input)
3434

3535
decode_rle(input::IO, parms) = decode_rle(input)
3636

37-
decode_jpg(input::IO, parms) = decode_jpg(input) = input
37+
decode_jpg(input::IO, parms) = decode_jpg(input)
38+
decode_jpg(input) = input
3839

39-
decode_jpx(input::IO, parms) = decode_jpx(input) = input
40+
decode_jpx(input::IO, parms) = decode_jpx(input)
41+
decode_jpx(input) = input
4042

4143
const function_map = Dict(
4244
cn"ASCIIHexDecode" => decode_asciihex,

0 commit comments

Comments
 (0)