search for: keoki_passiton

Displaying 2 results from an estimated 2 matches for "keoki_passiton".

2002 Aug 21
1
MDCT input and output data blocks
..., 'out' begins (after transformation) -23137 119197 -124861 43611 42769 which looks better, although note the signs don't agree with the float version. Should I perform a left shift of the data in mapping0.c BEFORE it calls mdct_backward? (Is that not taken care of). Source file was keoki_passiton.ogg obtained from the Vorbis.com web site some time ago (I don't think it is there any more). I'm using Version 1.0 Win 32 distribution under Visual C++. The blocks shown above are the first audio block in the file (size 256). Cheers Gov -- Govind S Kharbanda Institute...
2002 Aug 06
0
Getting a GUI to work with Vorbis code
...tstream user comments */ vorbis_dsp_state vd; /* central working state for the packet->PCM decoder */ vorbis_block vb; /* local working space for packet->PCM decode */ char *buffer; int bytes; /* Read from file : GK */ FILE * myFile = fopen("h:/Project/Downloads/Ogg/keoki_passiton.ogg","rb"); FILE * outputFile = fopen("h:/Project/Visual C++/output.txt", "w"); fprintf(outputFile, "File read OK.\n"); /* end modification : GK */ #ifdef _WIN32 /* We need to set stdin/stdout to binary mode. Damn windows. */ /* Beware the...