possible fix I→I and L→L unpacking on bigendian

This commit is contained in:
Alexander 2017-08-23 23:09:50 +03:00
parent a812f6c480
commit 2439c9b2db

View File

@ -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},