search for: ovdata

Displaying 1 result from an estimated 1 matches for "ovdata".

Did you mean: vdata
2006 May 11
1
Speed up?
...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 read = 0; float** ovdata; int current_section = 0; do{ read = ov_read_float(&vf , &ovdata, 64, &current_section); if ( read == 0 ){ ov_pcm_seek( &vf, 0 ); // ov_raw_seek() won't help read = ov_read_float(&vf, &ovdata, 64, &current_section); } } while (read != 0); return 0...