search for: seekabsolute

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

Did you mean: seek_absolute
2014 Feb 02
1
Trouble implementing ov_callbacks, endless loop calling seek_func
...bytes = size * nmemb; sourceFile->mStream->readData( ptr, bytes ); return nmemb; } int SourceFileImplOggVorbis::seekFn( void *datasource, ogg_int64_t offset, int whence ) { auto sourceFile = (SourceFileImplOggVorbis *)datasource; switch( whence ) { case SEEK_SET: sourceFile->mStream->seekAbsolute( (off_t)offset ); break; case SEEK_CUR: sourceFile->mStream->seekRelative( (off_t)offset ); break; case SEEK_END: sourceFile->mStream->seekAbsolute( (off_t)( - offset ) ); break; default: CI_ASSERT_NOT_REACHABLE(); return -1; } return 0; } int SourceFileImplOggVorbis::closeFn( void *d...
2014 Feb 02
0
unsubscribe
...bytes ); > > return nmemb; > } > > int SourceFileImplOggVorbis::seekFn( void *datasource, ogg_int64_t offset, int whence ) > { > auto sourceFile = (SourceFileImplOggVorbis *)datasource; > > switch( whence ) { > case SEEK_SET: > sourceFile->mStream->seekAbsolute( (off_t)offset ); > break; > case SEEK_CUR: > sourceFile->mStream->seekRelative( (off_t)offset ); > break; > case SEEK_END: > sourceFile->mStream->seekAbsolute( (off_t)( - offset ) ); > break; > default: > CI_ASSERT_NOT_REACHABLE(); &gt...