mirror of https://github.com/mpv-player/mpv
ao_pcm: minor simplification
This commit is contained in:
parent
4962a1ece3
commit
6c9ce5bee2
|
@ -203,7 +203,7 @@ static int play(struct ao *ao, void **data, int samples, int flags)
|
|||
|
||||
fwrite(data[0], len, 1, priv->fp);
|
||||
priv->data_length += len;
|
||||
return len / ao->sstride;
|
||||
return samples;
|
||||
}
|
||||
|
||||
#define OPT_BASE_STRUCT struct priv
|
||||
|
|
Loading…
Reference in New Issue