From 515c4163eac8af1b1cfdc4d9bca1b6c41edf4199 Mon Sep 17 00:00:00 2001 From: Josh Lehman Date: Sun, 30 Sep 2018 16:20:15 -0400 Subject: 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. --- audio/out/ao_audiounit.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/audio/out/ao_audiounit.m b/audio/out/ao_audiounit.m index fb18f1eb14..70a80f29f6 100644 --- a/audio/out/ao_audiounit.m +++ b/audio/out/ao_audiounit.m @@ -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), }; -- cgit v1.2.3