Tagged Questions

2
votes
2answers
337 views

Direct access of AS3 ByteArray memory in Alchemy, without AS3_ByteArray_readBytes?

I have an existing ByteArray in AS3 which I want to process (read and write) in Alchemy. All the examples I've seen of how to do this involve either using stream functions (fread, fwrite, etc), or ...
1
vote
2answers
850 views

Flex Alchemy: Returning a ByteArray from C function

I am using Flex's Alchemy library to generate SWC's out of C files. I have a byte array (unsigned char buffer[size]) in the c-layer that I'd like to return to the ActionScript layer as a ByteArray. Do ...
0
votes
1answer
449 views

Convert Little-endian ByteArray to Big-endian in AS3

How to convert Little-endian ByteArray to Big-endian in AS3? I convert bitmapData to Big-endian ByteArray and then push it into memory with Adobe Alchemy. And then when i read it from memory i get ...
0
votes
1answer
558 views

AS3 Alchemy byteArray float conversion from sound extract

I'm trying to do something simple: send a byteArray to a C library, fill up a buffer and read the memory, but I think I have float conversion problems. Here is what I do in AS: var memory:ByteArray ...