Tagged Questions

3
votes
1answer
270 views

libFLAC porting problem using Adobe Alchemy

I'm trying to port FLAC encoder using Adobe Alchemy for use in flash but can't figure out where the problem is. I'm using Alchemy for Cygwin on Windows. It is properly installed and configured. The ...
2
votes
2answers
336 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 ...
2
votes
1answer
641 views

How to convert AS3 ByteArray into wchar_t const* filename? (Adobe Alchemy)

How to convert AS3 ByteArray into wchar_t const* filename? So in my C code I have a function waiting for a file with void fun (wchar_t const* filename) how to send to that function my ByteArray? (Or, ...
2
votes
3answers
819 views

Can you use Adobe's Alchemy to execute a batch file?

I was going to make an AIR application but I need to execute an external application and because of the security restrictions in Adobe AIR... I was thinking why not try and bypass it by writing some ...
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
558 views

How to compile ffmpeg via Alchemy gcc?

So I created ffmpeg configuration file that makes it pure C (platform independent, but only theoretically) So my config is simple (0.6.1,0.6.3 tested): ./configure --disable-doc --disable-ffplay ...
0
votes
1answer
132 views

Alchemy C Code compilation

I am using alchemy to compile the C code. This is the way I am compiling gcc oggvorbis.c -O3 -Wall -swc oggvorbis.swc -lvorbis I am getting an error llvm-gcc: oggvorbis.swc: No such file or ...
0
votes
1answer
96 views

How to give the path for the associated header files in alchemy?

I am converting a speexdecoder code to C in alchemy. The problem is that i am importing a header file #include <speex/speex.h>. Alchemy gcc gives an error that speex.h not found. I have placed ...