mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-01-13 18:56:17 +03:00
possible fix I→I and L→L unpacking on bigendian
This commit is contained in:
parent
a812f6c480
commit
2439c9b2db
|
@ -1318,7 +1318,7 @@ static struct {
|
|||
{"HSV", "V", 8, band2},
|
||||
|
||||
/* integer variations */
|
||||
{"I", "I", 32, copy4},
|
||||
{"I", "I", 32, unpackI32},
|
||||
{"I", "I;8", 8, unpackI8},
|
||||
{"I", "I;8S", 8, unpackI8S},
|
||||
{"I", "I;16", 16, unpackI16},
|
||||
|
@ -1335,7 +1335,7 @@ static struct {
|
|||
{"I", "I;32NS", 32, unpackI32NS},
|
||||
|
||||
/* floating point variations */
|
||||
{"F", "F", 32, copy4},
|
||||
{"F", "F", 32, unpackI32},
|
||||
{"F", "F;8", 8, unpackF8},
|
||||
{"F", "F;8S", 8, unpackF8S},
|
||||
{"F", "F;16", 16, unpackF16},
|
||||
|
|
Loading…
Reference in New Issue
Block a user