search for: ov_enotvorbi

Displaying 5 results from an estimated 5 matches for "ov_enotvorbi".

Did you mean: ov_enotvorbis
2010 Jan 06
1
Initializing vorbis using ov_open_callbacks fail with OV_ENOTVORBIS. But why?
...tored in ogg_stream_state using ogg_stream_packetin to add them to ogg_stream_state and using ogg_stream_pageout to get ogg encapsulated vorbis pages. ..I hope up to this point no logical error.. next step: the idea was now to init vorbis using ov_open_callbacks, but this function failed with OV_ENOTVORBIS, when reading the first portion of data (callback function reads new data) 1.do you know what could cause the error? 2.does vorbis need a minimal ammout of data to initialize? 3.do I forgot to initialize some comment struct in advance? thanks for any hint Steven
2002 Dec 09
2
ov_open/ov_test weirdness
...return -1; } err = ov_test(f, &vf, NULL, 0); if(err < 0) { char *tmp = "What?"; switch(err) { case OV_EREAD: tmp = "A read from media returned an error."; break; case OV_ENOTVORBIS: tmp = "Bitstream is not Vorbis data."; break; case OV_EVERSION: tmp = "Vorbis version mismatch."; break; case OV_EBADHEADER: tmp = "Invalid Vorbis bitstream header."; break; case OV_EFAULT: tmp =...
2005 Jun 14
3
lack of detail for exception in ov_open
I am having one frustrating time trying to decipher why ov_read is failing in my MFC/C++ application, and I see in Google results that others have had difficulty as well. These google discussions generally involve libraries, dll's and linking options, as though there are perhaps some basic incompatibilities between ogg vorbis and win32 and/or MFC/C++. Very confusing. If I pass fopen a
2002 Apr 01
1
Fw: ov_open failing with all files
...ng a static build of RC3 with MFC dll on Visual C++ 6. Any ideas? TIA Lance FILE *fd = fopen("c:\\Welcome.ogg", "r"); if ((ret = ov_open(fd, &m_file, NULL, 0)) < 0) { switch (ret) case OV_EREAD: TRACE(" - A read from media returned an error.\n"); case OV_ENOTVORBIS: TRACE("- Bitstream is not Vorbis data.\n"); case OV_EVERSION: TRACE(" - Vorbis version mismatch.\n"); case OV_EBADHEADER: TRACE(" - Invalid Vorbis bitstream header.\n"); case OV_EFAULT: TRACE("- Internal logic fault; indicates a bug or heap/stack corruptio...
2004 Feb 11
1
Problem using 'ov_open()'...
...ov_clear(pOVFile); if(pFile != NULL) fclose(pFile); if((pFile = fopen(Filename, "rb")) == NULL) return false; Result = ov_open(pFile, pOVFile, NULL, 0); switch(Result) { case 0: break; case OV_EREAD: fclose(pFile); return false; case OV_ENOTVORBIS: fclose(pFile); return false; case OV_EVERSION: fclose(pFile); return false; case OV_EBADHEADER: fclose(pFile); return false; case OV_EFAULT: fclose(pFile); return false; } return true; } pSOUNDDATA OGGDATA::DecodeOGGLow()...