diff options
author | Max Kellermann <max@duempel.org> | 2011-08-30 22:28:15 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2011-08-30 22:28:15 +0200 |
commit | 293836494de519769af8d672becd2e4e6f8fb0ef (patch) | |
tree | 52d9ddf419c41dd43d14b907ca0693b2e4dde053 /Makefile.am | |
parent | ae8bda190ec94b52ac927b40fe88d80dbd0ba530 (diff) | |
download | mpd-293836494de519769af8d672becd2e4e6f8fb0ef.tar.gz mpd-293836494de519769af8d672becd2e4e6f8fb0ef.tar.xz mpd-293836494de519769af8d672becd2e4e6f8fb0ef.zip |
output_control: move code to audio_output_destruct()
.. and destruct the output object properly in test/run_output.
Diffstat (limited to '')
-rw-r--r-- | Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index dae71c209..5baffd018 100644 --- a/Makefile.am +++ b/Makefile.am @@ -713,6 +713,7 @@ OUTPUT_API_SRC = \ src/output_state.c \ src/output_print.c \ src/output_command.c \ + src/output_finish.c \ src/output_init.c OUTPUT_SRC = \ @@ -1133,7 +1134,7 @@ test_run_output_SOURCES = test/run_output.c \ src/fifo_buffer.c \ src/page.c \ src/socket_util.c \ - src/output_init.c src/output_list.c \ + src/output_init.c src/output_finish.c src/output_list.c \ $(ENCODER_SRC) \ src/mixer_api.c \ src/mixer_control.c \ |