ao_audiounit: rename pause function to reset

AudioUnit output driver uses the pull based api so it should have
a reset function instead of a pause function.
This commit is contained in:
Josh Lehman 2018-09-30 16:20:15 -04:00 committed by Aman Gupta
parent 8d2d0f0640
commit 515c4163ea
1 changed files with 1 additions and 1 deletions

View File

@ -192,7 +192,7 @@ const struct ao_driver audio_out_audiounit = {
.name = "audiounit",
.uninit = uninit,
.init = init,
.pause = stop,
.reset = stop,
.resume = start,
.priv_size = sizeof(struct priv),
};