Decode
Namespace: MSNumpressFSharp
Functions and values
Function or value | Description |
decodeLinear (data, dataSize, result)
Signature: (data:byte [] * dataSize:int * result:double []) -> int
|
Decodes data using MS Numpress linear prediction compression.
"data" is the array of bytes to be decoded.
"dataSize" is the number of bytes in data to be decoded.
"result" is the array where the resulting doubles should be stored.
Returns the number of decoded doubles.
|
decodePic (data, dataSize, result)
Signature: (data:byte [] * dataSize:int * result:double []) -> int
|
Decodes data encoded by encodePic.
"data" is the array of bytes to be decoded (need memorycont. repr.).
"dataSize" is the number of bytes in data to be decoded.
"result" is the array where resulting doubles should be stored.
Returns the number of decoded doubles.
|
decodeSlof (data, dataSize, result)
Signature: (data:byte [] * dataSize:int * result:double []) -> int
|
Decodes data encoded by encodeSlof.
"data" is the array of bytes to be decoded (need memorycont. repr.).
"dataSize" is the number of bytes in data to be decoded.
"result" is the array where resulting doubles should be stored.
Returns the number of decoded doubles.
|