| 149 | } |
| 150 | |
| 151 | static AudioFormat |
| 152 | CheckAudioFormat(const SF_INFO &info) |
| 153 | { |
| 154 | return CheckAudioFormat(info.samplerate, |
| 155 | sndfile_sample_format(info), |
| 156 | info.channels); |
| 157 | } |
| 158 | |
| 159 | static sf_count_t |
| 160 | sndfile_read_frames(SNDFILE *sf, SampleFormat format, |
no test coverage detected