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
53427fb3
Commit
53427fb3
authored
Jan 14, 2007
by
Eric Wong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sparse: move extern declarations for plugins into header files
git-svn-id:
https://svn.musicpd.org/mpd/trunk@5261
09075e82-0dd4-0310-85a5-a0d7c8717e4f
parent
0a6d48c2
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
20 additions
and
19 deletions
+20
-19
audio.c
src/audio.c
+0
-9
audioOutput.h
src/audioOutput.h
+10
-0
inputPlugin.c
src/inputPlugin.c
+0
-10
inputPlugin.h
src/inputPlugin.h
+10
-0
No files found.
src/audio.c
View file @
53427fb3
...
@@ -89,15 +89,6 @@ int cmpAudioFormat(AudioFormat * f1, AudioFormat * f2)
...
@@ -89,15 +89,6 @@ int cmpAudioFormat(AudioFormat * f1, AudioFormat * f2)
return
1
;
return
1
;
}
}
extern
AudioOutputPlugin
alsaPlugin
;
extern
AudioOutputPlugin
aoPlugin
;
extern
AudioOutputPlugin
ossPlugin
;
extern
AudioOutputPlugin
osxPlugin
;
extern
AudioOutputPlugin
pulsePlugin
;
extern
AudioOutputPlugin
mvpPlugin
;
extern
AudioOutputPlugin
shoutPlugin
;
extern
AudioOutputPlugin
jackPlugin
;
void
loadAudioDrivers
(
void
)
void
loadAudioDrivers
(
void
)
{
{
initAudioOutputPlugins
();
initAudioOutputPlugins
();
...
...
src/audioOutput.h
View file @
53427fb3
...
@@ -102,4 +102,14 @@ int keepAudioOutputAlive(AudioOutput * audioOutput, int ms);
...
@@ -102,4 +102,14 @@ int keepAudioOutputAlive(AudioOutput * audioOutput, int ms);
void
sendMetadataToAudioOutput
(
AudioOutput
*
audioOutput
,
MpdTag
*
tag
);
void
sendMetadataToAudioOutput
(
AudioOutput
*
audioOutput
,
MpdTag
*
tag
);
void
printAllOutputPluginTypes
(
FILE
*
fp
);
void
printAllOutputPluginTypes
(
FILE
*
fp
);
extern
AudioOutputPlugin
alsaPlugin
;
extern
AudioOutputPlugin
aoPlugin
;
extern
AudioOutputPlugin
ossPlugin
;
extern
AudioOutputPlugin
osxPlugin
;
extern
AudioOutputPlugin
pulsePlugin
;
extern
AudioOutputPlugin
mvpPlugin
;
extern
AudioOutputPlugin
shoutPlugin
;
extern
AudioOutputPlugin
jackPlugin
;
#endif
#endif
src/inputPlugin.c
View file @
53427fb3
...
@@ -137,16 +137,6 @@ void printAllInputPluginSuffixes(FILE * fp)
...
@@ -137,16 +137,6 @@ void printAllInputPluginSuffixes(FILE * fp)
fflush
(
fp
);
fflush
(
fp
);
}
}
extern
InputPlugin
mp3Plugin
;
extern
InputPlugin
oggvorbisPlugin
;
extern
InputPlugin
flacPlugin
;
extern
InputPlugin
oggflacPlugin
;
extern
InputPlugin
audiofilePlugin
;
extern
InputPlugin
mp4Plugin
;
extern
InputPlugin
mpcPlugin
;
extern
InputPlugin
aacPlugin
;
extern
InputPlugin
modPlugin
;
void
initInputPlugins
(
void
)
void
initInputPlugins
(
void
)
{
{
inputPlugin_list
=
makeList
(
NULL
,
1
);
inputPlugin_list
=
makeList
(
NULL
,
1
);
...
...
src/inputPlugin.h
View file @
53427fb3
...
@@ -96,4 +96,14 @@ void initInputPlugins(void);
...
@@ -96,4 +96,14 @@ void initInputPlugins(void);
/* this is where we "unload" all the "plugins" */
/* this is where we "unload" all the "plugins" */
void
finishInputPlugins
(
void
);
void
finishInputPlugins
(
void
);
extern
InputPlugin
mp3Plugin
;
extern
InputPlugin
oggvorbisPlugin
;
extern
InputPlugin
flacPlugin
;
extern
InputPlugin
oggflacPlugin
;
extern
InputPlugin
audiofilePlugin
;
extern
InputPlugin
mp4Plugin
;
extern
InputPlugin
mpcPlugin
;
extern
InputPlugin
aacPlugin
;
extern
InputPlugin
modPlugin
;
#endif
#endif
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