search for: processogg

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

Did you mean: processing
2005 May 23
1
Why does ov_open fail?
...t have considered? The memory exception seems to happen deep within the calling tree of ov_open, in some operation that ms seemed to have implemented. but i believe i followed all rules (binary mode and so on), so this should not happen. i hope, someone can give me a hint. thanks. wan-hi void ProcessOGG(LPCTSTR pFilePath, MetaData& data) { OggVorbis_File vf; vorbis_info *info; vorbis_commen *comment; /////////////////////////////////////////////////////////////////////////// // 1) OPENING AND INITIALIZING THE OGG VORBIS FILE ////////////////////////...
2004 Apr 06
1
ov_open fails on Version 1.0.1
...oze, (haven't tried Linux yet), I get an Access Exception on the ov_open. Nothing else has changed. All I did was replace the lib and dll files that are in the win32sdk zip and re-build all, so it's the same the project files for for both builds. Here the snippet of code that fails: int processOGG(FILE *inFile, char fileName [], int fileSize, int fileType) { ogg_int64_t dataLength = 0; PM3ULIST listBuff = 0; OggVorbis_File vf = {0}; vorbis_info *vorbisInfo = NULL; fseek(inFile, 0, SEEK_SET); if (debug > 0) { printf("About to open file as vorbis\n");...