mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-12-28 19:06:18 +03:00
formatting
This commit is contained in:
parent
3c129142c8
commit
ee41a133dd
|
@ -756,17 +756,20 @@ j2k_decode_entry(Imaging im, ImagingCodecState state) {
|
||||||
switch (image->numcomps) {
|
switch (image->numcomps) {
|
||||||
case 1:
|
case 1:
|
||||||
case 2:
|
case 2:
|
||||||
color_space = OPJ_CLRSPC_GRAY; break;
|
color_space = OPJ_CLRSPC_GRAY;
|
||||||
|
break;
|
||||||
case 3:
|
case 3:
|
||||||
case 4:
|
case 4:
|
||||||
switch (subsampling) {
|
switch (subsampling) {
|
||||||
case -1:
|
case -1:
|
||||||
case 0:
|
case 0:
|
||||||
case 3:
|
case 3:
|
||||||
color_space = OPJ_CLRSPC_SRGB; break;
|
color_space = OPJ_CLRSPC_SRGB;
|
||||||
|
break;
|
||||||
case 1:
|
case 1:
|
||||||
case 2:
|
case 2:
|
||||||
color_space = OPJ_CLRSPC_SYCC; break;
|
color_space = OPJ_CLRSPC_SYCC;
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user