output/jack: renamed source to jack_output_plugin.c
This commit is contained in:
parent
b479a264b6
commit
acfd9a73bc
@ -602,7 +602,7 @@ OUTPUT_SRC += src/output/pipe_output_plugin.c
|
||||
endif
|
||||
|
||||
if HAVE_JACK
|
||||
OUTPUT_SRC += src/output/jack_plugin.c
|
||||
OUTPUT_SRC += src/output/jack_output_plugin.c
|
||||
endif
|
||||
|
||||
if HAVE_MVP
|
||||
|
@ -17,7 +17,7 @@
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*/
|
||||
|
||||
#include "../output_api.h"
|
||||
#include "output_api.h"
|
||||
#include "config.h"
|
||||
|
||||
#include <assert.h>
|
||||
@ -438,7 +438,7 @@ mpd_jack_play(void *data, const void *chunk, size_t size, GError **error)
|
||||
return size * frame_size;
|
||||
}
|
||||
|
||||
const struct audio_output_plugin jackPlugin = {
|
||||
const struct audio_output_plugin jack_output_plugin = {
|
||||
.name = "jack",
|
||||
.test_default_device = mpd_jack_test_default_device,
|
||||
.init = mpd_jack_init,
|
@ -33,7 +33,7 @@ extern const struct audio_output_plugin osxPlugin;
|
||||
extern const struct audio_output_plugin solaris_output_plugin;
|
||||
extern const struct audio_output_plugin pulse_output_plugin;
|
||||
extern const struct audio_output_plugin mvp_output_plugin;
|
||||
extern const struct audio_output_plugin jackPlugin;
|
||||
extern const struct audio_output_plugin jack_output_plugin;
|
||||
extern const struct audio_output_plugin httpd_output_plugin;
|
||||
extern const struct audio_output_plugin recorder_output_plugin;
|
||||
|
||||
@ -73,7 +73,7 @@ const struct audio_output_plugin *audio_output_plugins[] = {
|
||||
&mvp_output_plugin,
|
||||
#endif
|
||||
#ifdef HAVE_JACK
|
||||
&jackPlugin,
|
||||
&jack_output_plugin,
|
||||
#endif
|
||||
#ifdef ENABLE_HTTPD_OUTPUT
|
||||
&httpd_output_plugin,
|
||||
|
Loading…
Reference in New Issue
Block a user