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
0adfd8ae
Commit
0adfd8ae
authored
Nov 02, 2004
by
Warren Dukes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
move audioOutput plugins to audioOutput directory
git-svn-id:
https://svn.musicpd.org/mpd/trunk@2470
09075e82-0dd4-0310-85a5-a0d7c8717e4f
parent
ebc4418e
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
20 additions
and
23 deletions
+20
-23
Makefile.am
src/Makefile.am
+6
-3
audioOutput.h
src/audioOutput.h
+0
-2
audioOutput_ao.c
src/audioOutput/audioOutput_ao.c
+4
-4
audioOutput_oss.c
src/audioOutput/audioOutput_oss.c
+4
-5
audioOutput_shout.c
src/audioOutput/audioOutput_shout.c
+6
-9
No files found.
src/Makefile.am
View file @
0adfd8ae
bin_PROGRAMS
=
mpd
SUBDIRS
=
$(ID3_SUBDIR)
$(MAD_SUBDIR)
$(MP4FF_SUBDIR)
mpd_audioOutput
=
\
audioOutput/audioOutput_ao.c
\
audioOutput/audioOutput_oss.c
\
audioOutput/audioOutput_shout.c
mpd_inputPlugins
=
\
inputPlugins/aac_plugin.c
\
inputPlugins/audiofile_plugin.c
\
...
...
@@ -54,12 +59,10 @@ mpd_headers = \
mpd_SOURCES
=
\
$(mpd_headers)
\
$(mpd_audioOutput)
\
$(mpd_inputPlugins)
\
audio.c
\
audioOutput.c
\
audioOutput_ao.c
\
audioOutput_oss.c
\
audioOutput_shout.c
\
buffer2array.c
\
charConv.c
\
command.c
\
...
...
src/audioOutput.h
View file @
0adfd8ae
...
...
@@ -26,8 +26,6 @@
#include "tag.h"
#include "conf.h"
#define AUDIO_AO_DRIVER_DEFAULT "default"
typedef
struct
_AudioOutput
AudioOutput
;
typedef
int
(
*
AudioOutputInitDriverFunc
)
(
AudioOutput
*
audioOutput
,
...
...
src/audioOutput_ao.c
→
src/audioOutput
/audioOutput
_ao.c
View file @
0adfd8ae
...
...
@@ -16,10 +16,10 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "audioOutput.h"
#include "conf.h"
#include "log.h"
#include "sig_handlers.h"
#include "
../
audioOutput.h"
#include "
../
conf.h"
#include "
../
log.h"
#include "
../
sig_handlers.h"
#include <string.h>
#include <assert.h>
...
...
src/audioOutput_oss.c
→
src/audioOutput
/audioOutput
_oss.c
View file @
0adfd8ae
...
...
@@ -18,16 +18,15 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "../config.h"
#include "audioOutput.h"
#include "../audioOutput.h"
#include <stdlib.h>
#ifdef HAVE_OSS
#include "conf.h"
#include "log.h"
#include "sig_handlers.h"
#include "
../
conf.h"
#include "
../
log.h"
#include "
../
sig_handlers.h"
#include <string.h>
#include <assert.h>
...
...
src/audioOutput_shout.c
→
src/audioOutput
/audioOutput
_shout.c
View file @
0adfd8ae
...
...
@@ -16,18 +16,17 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "../
config
.h"
#include "../
audioOutput
.h"
#include
"audioOutput.h"
#include
<stdlib.h>
#ifdef HAVE_SHOUT
#include "conf.h"
#include "log.h"
#include "sig_handlers.h"
#include "pcm_utils.h"
#include "
../
conf.h"
#include "
../
log.h"
#include "
../
sig_handlers.h"
#include "
../
pcm_utils.h"
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include <signal.h>
...
...
@@ -568,8 +567,6 @@ AudioOutputPlugin shoutPlugin =
#else
#include <stdlib.h>
AudioOutputPlugin
shoutPlugin
=
{
NULL
,
...
...
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