Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
ece8c134
Commit
ece8c134
authored
Oct 26, 2008
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
renamed src/audioOutputs/ to src/output/
Again, no CamelCase in the directory name.
parent
e11355f4
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
18 additions
and
19 deletions
+18
-19
Makefile.am
src/Makefile.am
+15
-15
alsa_plugin.c
src/output/alsa_plugin.c
+0
-0
ao_plugin.c
src/output/ao_plugin.c
+0
-0
fifo_plugin.c
src/output/fifo_plugin.c
+0
-0
jack_plugin.c
src/output/jack_plugin.c
+0
-0
mvp_plugin.c
src/output/mvp_plugin.c
+0
-0
null_plugin.c
src/output/null_plugin.c
+0
-0
oss_plugin.c
src/output/oss_plugin.c
+0
-0
osx_plugin.c
src/output/osx_plugin.c
+0
-0
pulse_plugin.c
src/output/pulse_plugin.c
+0
-0
shout_mp3.c
src/output/shout_mp3.c
+1
-2
shout_ogg.c
src/output/shout_ogg.c
+1
-1
shout_plugin.c
src/output/shout_plugin.c
+1
-1
shout_plugin.h
src/output/shout_plugin.h
+0
-0
No files found.
src/Makefile.am
View file @
ece8c134
bin_PROGRAMS
=
mpd
bin_PROGRAMS
=
mpd
mpd_
audioOutputs
=
\
mpd_
output
=
\
audioOutputs/audioOutput_shout
.c
\
output/shout_plugin
.c
\
audioOutputs/audioOutput_
shout_ogg.c
\
output/
shout_ogg.c
\
audioOutputs/audioOutput_
shout_mp3.c
\
output/
shout_mp3.c
\
audioOutputs/audioOutput_null
.c
\
output/null_plugin
.c
\
audioOutputs/audioOutput_fifo
.c
\
output/fifo_plugin
.c
\
audioOutputs/audioOutput_alsa
.c
\
output/alsa_plugin
.c
\
audioOutputs/audioOutput_ao
.c
\
output/ao_plugin
.c
\
audioOutputs/audioOutput_oss
.c
\
output/oss_plugin
.c
\
audioOutputs/audioOutput_osx
.c
\
output/osx_plugin
.c
\
audioOutputs/audioOutput_pulse
.c
\
output/pulse_plugin
.c
\
audioOutputs/audioOutput_mvp
.c
\
output/mvp_plugin
.c
\
audioOutputs/audioOutput_jack
.c
output/jack_plugin
.c
mpd_headers
=
\
mpd_headers
=
\
notify.h
\
notify.h
\
...
@@ -25,7 +25,7 @@ mpd_headers = \
...
@@ -25,7 +25,7 @@ mpd_headers = \
output_list.h
\
output_list.h
\
output_thread.h
\
output_thread.h
\
output_control.h
\
output_control.h
\
audioOutputs/audioOutput_shout
.h
\
output/shout_plugin
.h
\
buffer2array.h
\
buffer2array.h
\
command.h
\
command.h
\
idle.h
\
idle.h
\
...
@@ -104,7 +104,7 @@ mpd_headers = \
...
@@ -104,7 +104,7 @@ mpd_headers = \
mpd_SOURCES
=
\
mpd_SOURCES
=
\
$(mpd_headers)
\
$(mpd_headers)
\
$(mpd_
audioOutputs
)
\
$(mpd_
output
)
\
notify.c
\
notify.c
\
audio.c
\
audio.c
\
audioOutput.c
\
audioOutput.c
\
...
...
src/
audioOutputs/audioOutput_alsa
.c
→
src/
output/alsa_plugin
.c
View file @
ece8c134
File moved
src/
audioOutputs/audioOutput_ao
.c
→
src/
output/ao_plugin
.c
View file @
ece8c134
File moved
src/
audioOutputs/audioOutput_fifo
.c
→
src/
output/fifo_plugin
.c
View file @
ece8c134
File moved
src/
audioOutputs/audioOutput_jack
.c
→
src/
output/jack_plugin
.c
View file @
ece8c134
File moved
src/
audioOutputs/audioOutput_mvp
.c
→
src/
output/mvp_plugin
.c
View file @
ece8c134
File moved
src/
audioOutputs/audioOutput_null
.c
→
src/
output/null_plugin
.c
View file @
ece8c134
File moved
src/
audioOutputs/audioOutput_oss
.c
→
src/
output/oss_plugin
.c
View file @
ece8c134
File moved
src/
audioOutputs/audioOutput_osx
.c
→
src/
output/osx_plugin
.c
View file @
ece8c134
File moved
src/
audioOutputs/audioOutput_pulse
.c
→
src/
output/pulse_plugin
.c
View file @
ece8c134
File moved
src/
audioOutputs/audioOutput_
shout_mp3.c
→
src/
output/
shout_mp3.c
View file @
ece8c134
...
@@ -16,12 +16,11 @@
...
@@ -16,12 +16,11 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
*/
#include "
../output_api
.h"
#include "
shout_plugin
.h"
#ifdef HAVE_SHOUT_MP3
#ifdef HAVE_SHOUT_MP3
#include "../utils.h"
#include "../utils.h"
#include "audioOutput_shout.h"
#include <lame/lame.h>
#include <lame/lame.h>
struct
lame_data
{
struct
lame_data
{
...
...
src/
audioOutputs/audioOutput_
shout_ogg.c
→
src/
output/
shout_ogg.c
View file @
ece8c134
...
@@ -16,7 +16,7 @@
...
@@ -16,7 +16,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
*/
#include "
audioOutput_shout
.h"
#include "
shout_plugin
.h"
#ifdef HAVE_SHOUT_OGG
#ifdef HAVE_SHOUT_OGG
...
...
src/
audioOutputs/audioOutput_shout
.c
→
src/
output/shout_plugin
.c
View file @
ece8c134
...
@@ -16,7 +16,7 @@
...
@@ -16,7 +16,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
*/
#include "
audioOutput_shout
.h"
#include "
shout_plugin
.h"
#ifdef HAVE_SHOUT
#ifdef HAVE_SHOUT
...
...
src/
audioOutputs/audioOutput_shout
.h
→
src/
output/shout_plugin
.h
View file @
ece8c134
File moved
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment