Skip to content

Commit 34fa6e9

Browse files
Add uncompressDoubleArray that takes offset and length (#307)
1 parent 2bc841b commit 34fa6e9

File tree

1 file changed

+17
-2
lines changed

1 file changed

+17
-2
lines changed

src/main/java/org/xerial/snappy/Snappy.java

+17-2
Original file line numberDiff line numberDiff line change
@@ -598,9 +598,24 @@ public static char[] uncompressCharArray(byte[] input, int offset, int length)
598598
public static double[] uncompressDoubleArray(byte[] input)
599599
throws IOException
600600
{
601-
int uncompressedLength = Snappy.uncompressedLength(input, 0, input.length);
601+
return uncompressDoubleArray(input, 0, input.length);
602+
}
603+
604+
/**
605+
* Uncompress the input as a double array
606+
*
607+
* @param input
608+
* @param offset
609+
* @param length
610+
* @return the uncompressed data
611+
* @throws IOException
612+
*/
613+
public static double[] uncompressDoubleArray(byte[] input, int offset, int length)
614+
throws IOException
615+
{
616+
int uncompressedLength = Snappy.uncompressedLength(input, offset, length);
602617
double[] result = new double[uncompressedLength / 8];
603-
impl.rawUncompress(input, 0, input.length, result, 0);
618+
impl.rawUncompress(input, offset, length, result, 0);
604619
return result;
605620
}
606621

0 commit comments

Comments
 (0)