Write a JPEG2000 decoder that takes as input a single JP2 or raw bitstream file, and outputs a BMP file of the decoded output. You must support both lossless and lossy modes, up to 8 bits per channel, and 1 or 3 channels (grayscale or RGB). Otherwise, everything in ITU T.800 is fair game.
You may use only the standard C(89) library. Anything else counts against your total size. Smallest binary wins.
>>10 you can use whatever language you want but the rules are written to favor C89 and asm. even a low-level non-C language like Pascal will get reduced score because its standard library isn't libc. classic Cudder!
Name:
Cudder!cXCudderUE2018-02-20 2:40
>>11 Practically any system will have libc already. Not so much libhipsterlang or whatever else.
Name:
Anonymous2018-02-20 17:31
void main ()
{ int bmp; printf((char *)bmp); /* assume the compiler does what I mean */ return bmp; }