1
0
mirror of https://github.com/mpv-player/mpv synced 2025-01-18 04:51:52 +00:00

ao_sndio: fix some incorrect comments

The AO API always uses sample counts.
This commit is contained in:
wm4 2014-09-26 15:46:23 +02:00
parent 17d031f88c
commit 1b1421866d

View File

@ -234,7 +234,7 @@ static void reset(struct ao *ao)
}
/*
* play given number of bytes until sio_write() blocks
* play given number of samples until sio_write() blocks
*/
static int play(struct ao *ao, void **data, int samples, int flags)
{
@ -249,7 +249,7 @@ static int play(struct ao *ao, void **data, int samples, int flags)
}
/*
* how many bytes can be played without blocking
* how many samples can be played without blocking
*/
static int get_space(struct ao *ao)
{