0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 03:52:22 +02:00

ao_coreaudio: add a comment for ignoring returned sample count

Co-authored-by: sfan5 <sfan5@live.de>
This commit is contained in:
Misaki Kasumi 2024-04-19 17:55:12 +08:00 committed by der richter
parent d46d428f73
commit e855836ed1

View File

@ -89,6 +89,7 @@ static OSStatus render_cb_lpcm(void *ctx, AudioUnitRenderActionFlags *aflags,
int64_t end = mp_time_ns();
end += p->hw_latency_ns + ca_get_latency(ts) + ca_frames_to_ns(ao, frames);
// don't use the returned sample count since CoreAudio always expects full frames
ao_read_data(ao, planes, frames, end);
return noErr;
}