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
c4d4011c
Commit
c4d4011c
authored
Oct 23, 2013
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
InputInternal: remove obsolete library
parent
3d12f8d2
Show whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
0 additions
and
84 deletions
+0
-84
Makefile.am
Makefile.am
+0
-1
InputInternal.cxx
src/InputInternal.cxx
+0
-40
InputInternal.hxx
src/InputInternal.hxx
+0
-33
Bzip2ArchivePlugin.cxx
src/archive/Bzip2ArchivePlugin.cxx
+0
-1
Iso9660ArchivePlugin.cxx
src/archive/Iso9660ArchivePlugin.cxx
+0
-1
ZzipArchivePlugin.cxx
src/archive/ZzipArchivePlugin.cxx
+0
-1
CdioParanoiaInputPlugin.cxx
src/input/CdioParanoiaInputPlugin.cxx
+0
-1
CurlInputPlugin.cxx
src/input/CurlInputPlugin.cxx
+0
-1
DespotifyInputPlugin.cxx
src/input/DespotifyInputPlugin.cxx
+0
-1
FfmpegInputPlugin.cxx
src/input/FfmpegInputPlugin.cxx
+0
-1
FileInputPlugin.cxx
src/input/FileInputPlugin.cxx
+0
-1
MmsInputPlugin.cxx
src/input/MmsInputPlugin.cxx
+0
-1
RewindInputPlugin.cxx
src/input/RewindInputPlugin.cxx
+0
-1
No files found.
Makefile.am
View file @
c4d4011c
...
@@ -755,7 +755,6 @@ libinput_a_SOURCES = \
...
@@ -755,7 +755,6 @@ libinput_a_SOURCES = \
src/InputRegistry.cxx src/InputRegistry.hxx
\
src/InputRegistry.cxx src/InputRegistry.hxx
\
src/InputStream.cxx src/InputStream.hxx
\
src/InputStream.cxx src/InputStream.hxx
\
src/InputPlugin.hxx
\
src/InputPlugin.hxx
\
src/InputInternal.cxx src/InputInternal.hxx
\
src/input/RewindInputPlugin.cxx src/input/RewindInputPlugin.hxx
\
src/input/RewindInputPlugin.cxx src/input/RewindInputPlugin.hxx
\
src/input/FileInputPlugin.cxx src/input/FileInputPlugin.hxx
src/input/FileInputPlugin.cxx src/input/FileInputPlugin.hxx
...
...
src/InputInternal.cxx
deleted
100644 → 0
View file @
3d12f8d2
/*
* Copyright (C) 2003-2013 The Music Player Daemon Project
* http://www.musicpd.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include "config.h"
#include "InputInternal.hxx"
#include "InputStream.hxx"
#include "thread/Cond.hxx"
void
input_stream_signal_client
(
struct
input_stream
*
is
)
{
is
->
cond
.
broadcast
();
}
void
input_stream_set_ready
(
struct
input_stream
*
is
)
{
const
ScopeLock
protect
(
is
->
mutex
);
if
(
!
is
->
ready
)
{
is
->
ready
=
true
;
input_stream_signal_client
(
is
);
}
}
src/InputInternal.hxx
deleted
100644 → 0
View file @
3d12f8d2
/*
* Copyright (C) 2003-2013 The Music Player Daemon Project
* http://www.musicpd.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef MPD_INPUT_INTERNAL_HXX
#define MPD_INPUT_INTERNAL_HXX
#include "check.h"
struct
input_stream
;
void
input_stream_signal_client
(
struct
input_stream
*
is
);
void
input_stream_set_ready
(
struct
input_stream
*
is
);
#endif
src/archive/Bzip2ArchivePlugin.cxx
View file @
c4d4011c
...
@@ -26,7 +26,6 @@
...
@@ -26,7 +26,6 @@
#include "ArchivePlugin.hxx"
#include "ArchivePlugin.hxx"
#include "ArchiveFile.hxx"
#include "ArchiveFile.hxx"
#include "ArchiveVisitor.hxx"
#include "ArchiveVisitor.hxx"
#include "InputInternal.hxx"
#include "InputStream.hxx"
#include "InputStream.hxx"
#include "InputPlugin.hxx"
#include "InputPlugin.hxx"
#include "util/RefCount.hxx"
#include "util/RefCount.hxx"
...
...
src/archive/Iso9660ArchivePlugin.cxx
View file @
c4d4011c
...
@@ -26,7 +26,6 @@
...
@@ -26,7 +26,6 @@
#include "ArchivePlugin.hxx"
#include "ArchivePlugin.hxx"
#include "ArchiveFile.hxx"
#include "ArchiveFile.hxx"
#include "ArchiveVisitor.hxx"
#include "ArchiveVisitor.hxx"
#include "InputInternal.hxx"
#include "InputStream.hxx"
#include "InputStream.hxx"
#include "InputPlugin.hxx"
#include "InputPlugin.hxx"
#include "util/RefCount.hxx"
#include "util/RefCount.hxx"
...
...
src/archive/ZzipArchivePlugin.cxx
View file @
c4d4011c
...
@@ -26,7 +26,6 @@
...
@@ -26,7 +26,6 @@
#include "ArchivePlugin.hxx"
#include "ArchivePlugin.hxx"
#include "ArchiveFile.hxx"
#include "ArchiveFile.hxx"
#include "ArchiveVisitor.hxx"
#include "ArchiveVisitor.hxx"
#include "InputInternal.hxx"
#include "InputStream.hxx"
#include "InputStream.hxx"
#include "InputPlugin.hxx"
#include "InputPlugin.hxx"
#include "util/RefCount.hxx"
#include "util/RefCount.hxx"
...
...
src/input/CdioParanoiaInputPlugin.cxx
View file @
c4d4011c
...
@@ -23,7 +23,6 @@
...
@@ -23,7 +23,6 @@
#include "config.h"
#include "config.h"
#include "CdioParanoiaInputPlugin.hxx"
#include "CdioParanoiaInputPlugin.hxx"
#include "InputInternal.hxx"
#include "InputStream.hxx"
#include "InputStream.hxx"
#include "InputPlugin.hxx"
#include "InputPlugin.hxx"
#include "util/Error.hxx"
#include "util/Error.hxx"
...
...
src/input/CurlInputPlugin.cxx
View file @
c4d4011c
...
@@ -19,7 +19,6 @@
...
@@ -19,7 +19,6 @@
#include "config.h"
#include "config.h"
#include "CurlInputPlugin.hxx"
#include "CurlInputPlugin.hxx"
#include "InputInternal.hxx"
#include "InputStream.hxx"
#include "InputStream.hxx"
#include "InputPlugin.hxx"
#include "InputPlugin.hxx"
#include "ConfigGlobal.hxx"
#include "ConfigGlobal.hxx"
...
...
src/input/DespotifyInputPlugin.cxx
View file @
c4d4011c
...
@@ -20,7 +20,6 @@
...
@@ -20,7 +20,6 @@
#include "config.h"
#include "config.h"
#include "DespotifyInputPlugin.hxx"
#include "DespotifyInputPlugin.hxx"
#include "DespotifyUtils.hxx"
#include "DespotifyUtils.hxx"
#include "InputInternal.hxx"
#include "InputStream.hxx"
#include "InputStream.hxx"
#include "InputPlugin.hxx"
#include "InputPlugin.hxx"
#include "tag/Tag.hxx"
#include "tag/Tag.hxx"
...
...
src/input/FfmpegInputPlugin.cxx
View file @
c4d4011c
...
@@ -22,7 +22,6 @@
...
@@ -22,7 +22,6 @@
#include "config.h"
#include "config.h"
#include "FfmpegInputPlugin.hxx"
#include "FfmpegInputPlugin.hxx"
#include "InputInternal.hxx"
#include "InputStream.hxx"
#include "InputStream.hxx"
#include "InputPlugin.hxx"
#include "InputPlugin.hxx"
#include "util/Error.hxx"
#include "util/Error.hxx"
...
...
src/input/FileInputPlugin.cxx
View file @
c4d4011c
...
@@ -19,7 +19,6 @@
...
@@ -19,7 +19,6 @@
#include "config.h"
/* must be first for large file support */
#include "config.h"
/* must be first for large file support */
#include "FileInputPlugin.hxx"
#include "FileInputPlugin.hxx"
#include "InputInternal.hxx"
#include "InputStream.hxx"
#include "InputStream.hxx"
#include "InputPlugin.hxx"
#include "InputPlugin.hxx"
#include "util/Error.hxx"
#include "util/Error.hxx"
...
...
src/input/MmsInputPlugin.cxx
View file @
c4d4011c
...
@@ -19,7 +19,6 @@
...
@@ -19,7 +19,6 @@
#include "config.h"
#include "config.h"
#include "MmsInputPlugin.hxx"
#include "MmsInputPlugin.hxx"
#include "InputInternal.hxx"
#include "InputStream.hxx"
#include "InputStream.hxx"
#include "InputPlugin.hxx"
#include "InputPlugin.hxx"
#include "util/Error.hxx"
#include "util/Error.hxx"
...
...
src/input/RewindInputPlugin.cxx
View file @
c4d4011c
...
@@ -19,7 +19,6 @@
...
@@ -19,7 +19,6 @@
#include "config.h"
#include "config.h"
#include "RewindInputPlugin.hxx"
#include "RewindInputPlugin.hxx"
#include "InputInternal.hxx"
#include "InputStream.hxx"
#include "InputStream.hxx"
#include "InputPlugin.hxx"
#include "InputPlugin.hxx"
#include "tag/Tag.hxx"
#include "tag/Tag.hxx"
...
...
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