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
36d24fb7
Commit
36d24fb7
authored
Mar 02, 2009
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
input: moved plugins to ./src/input/
Create a sub directory for input plugins.
parent
2e51365e
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
16 additions
and
16 deletions
+16
-16
Makefile.am
Makefile.am
+8
-8
archive_input_plugin.c
src/input/archive_input_plugin.c
+1
-1
archive_input_plugin.h
src/input/archive_input_plugin.h
+0
-0
curl_input_plugin.c
src/input/curl_input_plugin.c
+1
-1
curl_input_plugin.h
src/input/curl_input_plugin.h
+0
-0
file_input_plugin.c
src/input/file_input_plugin.c
+1
-1
file_input_plugin.h
src/input/file_input_plugin.h
+0
-0
mms_input_plugin.c
src/input/mms_input_plugin.c
+1
-1
mms_input_plugin.h
src/input/mms_input_plugin.h
+0
-0
input_stream.c
src/input_stream.c
+4
-4
No files found.
Makefile.am
View file @
36d24fb7
...
...
@@ -69,9 +69,9 @@ mpd_headers = \
src/decoder/_ogg_common.h
\
src/input_plugin.h
\
src/input_stream.h
\
src/input
_file
.h
\
src/input
_curl
.h
\
src/input
_mms
.h
\
src/input
/file_input_plugin
.h
\
src/input
/curl_input_plugin
.h
\
src/input
/mms_input_plugin
.h
\
src/icy_metadata.h
\
src/client.h
\
src/listen.h
\
...
...
@@ -138,7 +138,7 @@ mpd_headers = \
src/archive_api.h
\
src/archive_internal.h
\
src/archive_list.h
\
src/input
_archive
.h
src/input
/archive_input_plugin
.h
src_mpd_SOURCES
=
\
$(mpd_headers)
\
...
...
@@ -257,7 +257,7 @@ if ENABLE_ARCHIVE
ARCHIVE_SRC
+=
\
src/archive_api.c
\
src/archive_list.c
\
src/input
_archive
.c
src/input
/archive_input_plugin
.c
endif
...
...
@@ -408,14 +408,14 @@ INPUT_LIBS = \
INPUT_SRC
=
\
src/input_stream.c
\
src/input
_file
.c
src/input
/file_input_plugin
.c
if
HAVE_CURL
INPUT_SRC
+=
src/input
_curl
.c src/icy_metadata.c
INPUT_SRC
+=
src/input
/curl_input_plugin
.c src/icy_metadata.c
endif
if
ENABLE_MMS
INPUT_SRC
+=
src/input
_mms
.c
INPUT_SRC
+=
src/input
/mms_input_plugin
.c
endif
...
...
src/input
_archive
.c
→
src/input
/archive_input_plugin
.c
View file @
36d24fb7
...
...
@@ -16,7 +16,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "input
_archive
.h"
#include "input
/archive_input_plugin
.h"
#include "archive_api.h"
#include "archive_list.h"
#include "input_plugin.h"
...
...
src/input
_archive
.h
→
src/input
/archive_input_plugin
.h
View file @
36d24fb7
File moved
src/input
_curl
.c
→
src/input
/curl_input_plugin
.c
View file @
36d24fb7
...
...
@@ -16,7 +16,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "input
_curl
.h"
#include "input
/curl_input_plugin
.h"
#include "input_plugin.h"
#include "conf.h"
#include "config.h"
...
...
src/input
_curl
.h
→
src/input
/curl_input_plugin
.h
View file @
36d24fb7
File moved
src/input
_file
.c
→
src/input
/file_input_plugin
.c
View file @
36d24fb7
...
...
@@ -16,7 +16,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "input
_file
.h"
#include "input
/file_input_plugin
.h"
#include "input_plugin.h"
#include <sys/stat.h>
...
...
src/input
_file
.h
→
src/input
/file_input_plugin
.h
View file @
36d24fb7
File moved
src/input
_mms
.c
→
src/input
/mms_input_plugin
.c
View file @
36d24fb7
...
...
@@ -16,7 +16,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "input
_mms
.h"
#include "input
/mms_input_plugin
.h"
#include "input_plugin.h"
#include <glib.h>
...
...
src/input
_mms
.h
→
src/input
/mms_input_plugin
.h
View file @
36d24fb7
File moved
src/input_stream.c
View file @
36d24fb7
...
...
@@ -19,18 +19,18 @@
#include "input_plugin.h"
#include "config.h"
#include "input
_file
.h"
#include "input
/file_input_plugin
.h"
#ifdef ENABLE_ARCHIVE
#include "input
_archive
.h"
#include "input
/archive_input_plugin
.h"
#endif
#ifdef HAVE_CURL
#include "input
_curl
.h"
#include "input
/curl_input_plugin
.h"
#endif
#ifdef ENABLE_MMS
#include "input
_mms
.h"
#include "input
/mms_input_plugin
.h"
#endif
#include <glib.h>
...
...
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