| 367 | } |
| 368 | |
| 369 | nvimgcodecStatus_t CodeStream::seek_static(void* instance, ptrdiff_t offset, int whence) { |
| 370 | assert(instance); |
| 371 | CodeStream* handle = reinterpret_cast<CodeStream*>(instance); |
| 372 | return handle->seek(offset, whence); |
| 373 | } |
| 374 | |
| 375 | nvimgcodecStatus_t CodeStream::tell_static(void* instance, ptrdiff_t* offset) { |
| 376 | assert(instance); |