| 47 | } |
| 48 | |
| 49 | static FLAC__StreamDecoderWriteStatus |
| 50 | flac_write_cb(const FLAC__StreamDecoder *dec, const FLAC__Frame *frame, |
| 51 | const FLAC__int32 *const buf[], void *vdata) noexcept |
| 52 | { |
| 53 | auto &fd = *(FlacDecoder *)vdata; |
| 54 | return fd.OnWrite(*frame, buf, fd.GetDeltaPosition(*dec)); |
| 55 | } |
| 56 | |
| 57 | static bool |
| 58 | flac_scan_file(Path path_fs, TagHandler &handler) noexcept |
nothing calls this directly
no test coverage detected