diff options
author | Max Kellermann <max@duempel.org> | 2009-10-20 21:05:11 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-10-20 21:05:11 +0200 |
commit | bc4266bef8b4997332de706be28904d8b8f7d593 (patch) | |
tree | d613262e3d780497a412bdf83c928665c554b293 /src/output | |
parent | bc629c8a3e5f90c827cc3ad2d896d2d0737e3d62 (diff) | |
download | mpd-bc4266bef8b4997332de706be28904d8b8f7d593.tar.gz mpd-bc4266bef8b4997332de706be28904d8b8f7d593.tar.xz mpd-bc4266bef8b4997332de706be28904d8b8f7d593.zip |
pulse: renamed source files
Diffstat (limited to 'src/output')
-rw-r--r-- | src/output/pulse_output_plugin.c (renamed from src/output/pulse_plugin.c) | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/output/pulse_plugin.c b/src/output/pulse_output_plugin.c index e4780fd45..2557106f9 100644 --- a/src/output/pulse_plugin.c +++ b/src/output/pulse_output_plugin.c @@ -17,7 +17,7 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ -#include "../output_api.h" +#include "output_api.h" #include "mixer_list.h" #include <glib.h> @@ -168,8 +168,9 @@ pulse_play(void *data, const void *chunk, size_t size, GError **error_r) return size; } -const struct audio_output_plugin pulse_plugin = { +const struct audio_output_plugin pulse_output_plugin = { .name = "pulse", + .test_default_device = pulse_test_default_device, .init = pulse_init, .finish = pulse_finish, @@ -177,5 +178,6 @@ const struct audio_output_plugin pulse_plugin = { .play = pulse_play, .cancel = pulse_cancel, .close = pulse_close, - .mixer_plugin = &pulse_mixer, + + .mixer_plugin = &pulse_mixer_plugin, }; |