diff options
author | Max Kellermann <max@duempel.org> | 2009-02-11 18:02:45 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-02-11 18:02:45 +0100 |
commit | 9d447dda1da059105d0f5da92be384c5e2b57df3 (patch) | |
tree | a861a7a842fb318c266e48a7f365061985a2e340 /src/Makefile.am | |
parent | 3bc4224bfda5ebf9cd6969ea0f6647b1af3e9da6 (diff) | |
download | mpd-9d447dda1da059105d0f5da92be384c5e2b57df3.tar.gz mpd-9d447dda1da059105d0f5da92be384c5e2b57df3.tar.xz mpd-9d447dda1da059105d0f5da92be384c5e2b57df3.zip |
audio: moved code to output_command.c
The output_command library provides a command interface to the audio
outputs. It assumes the input comes from an untrusted source
(i.e. the client) and verifies all parameters.
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 2e7b769d0..eb7634323 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -45,6 +45,7 @@ mpd_headers = \ output_control.h \ output_state.h \ output_print.h \ + output_command.h \ output/shout_plugin.h \ buffer2array.h \ command.h \ @@ -146,6 +147,7 @@ mpd_SOURCES = \ output_control.c \ output_state.c \ output_print.c \ + output_command.c \ output_init.c \ output/null_plugin.c \ buffer2array.c \ |