Displaying 1 result from an estimated 1 matches for "errno_t".
Did you mean:
errno_h
2006 May 11
1
Speed up?
...t()" is finished, I
want to seek back to sample 1, and ask immediately for the next 64
samples.
But when I run this small app, I get an totally high CPU load.
Is there a way to it speed up?
Or do I miss something?
Thanx,
Micha.
int _tmain(int argc, _TCHAR* argv[]){
OggVorbis_File vf;
errno_t err;
if ( (err = fopen_s( &oggaudio, "C:\\Test\\3.ogg" , "rb")) != 0){
std::cout << "fopen problem" << std::endl;
}
if ( ov_open( oggaudio, &vf, NULL, 0 ) < 0 ){
std::cout << "ov_open problem" << std::endl;
}
int...