| 300 | |
| 301 | template <class T, class B> |
| 302 | T Dataset<T, B>::load_audio( |
| 303 | const std::string& ikey, |
| 304 | const std::string& prefix, |
| 305 | bool info, |
| 306 | bool fromMemory, |
| 307 | LoadAudioInfo infoType, |
| 308 | int sampleRate, |
| 309 | LoadAudioResamplingQuality resamplingQuality, |
| 310 | const std::string& info_key, |
| 311 | const std::string& okey) const { |
| 312 | return transform_(std::make_shared<op::LoadAudio>( |
| 313 | ikey, |
| 314 | prefix, |
| 315 | info, |
| 316 | fromMemory, |
| 317 | infoType, |
| 318 | sampleRate, |
| 319 | resamplingQuality, |
| 320 | info_key, |
| 321 | okey)); |
| 322 | } |
| 323 | |
| 324 | template <class T, class B> |
| 325 | T Dataset<T, B>::load_audio_if( |
no outgoing calls
no test coverage detected