| 371 | } |
| 372 | |
| 373 | static bool SampleStartComp(const FrameInfo &a, const FrameInfo &b) { |
| 374 | return a.SampleStart < b.SampleStart; |
| 375 | } |
| 376 | |
| 377 | void FFMS_AudioSource::GetAudio(void *Buf, int64_t Start, int64_t Count) { |
| 378 | if (Start < 0 || Start + Count > AP.NumSamples || Count < 0) |
nothing calls this directly
no outgoing calls
no test coverage detected