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
a55bb280
Commit
a55bb280
authored
8 years ago
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
decoder: include cleanup
parent
a2e3dc05
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
1 addition
and
11 deletions
+1
-11
Open.cxx
src/input/Open.cxx
+1
-6
AlsaInputPlugin.cxx
src/input/plugins/AlsaInputPlugin.cxx
+0
-1
CdioParanoiaInputPlugin.cxx
src/input/plugins/CdioParanoiaInputPlugin.cxx
+0
-1
CurlInputPlugin.cxx
src/input/plugins/CurlInputPlugin.cxx
+0
-1
FfmpegInputPlugin.cxx
src/input/plugins/FfmpegInputPlugin.cxx
+0
-1
NfsInputPlugin.cxx
src/input/plugins/NfsInputPlugin.cxx
+0
-1
No files found.
src/input/Open.cxx
View file @
a55bb280
...
...
@@ -26,7 +26,6 @@
#include "plugins/RewindInputPlugin.hxx"
#include "fs/Traits.hxx"
#include "fs/AllocatedPath.hxx"
#include "util/Error.hxx"
#include <stdexcept>
...
...
@@ -35,11 +34,7 @@ InputStream::Open(const char *url,
Mutex
&
mutex
,
Cond
&
cond
)
{
if
(
PathTraitsUTF8
::
IsAbsolute
(
url
))
{
Error
error
;
const
auto
path
=
AllocatedPath
::
FromUTF8
(
url
,
error
);
if
(
path
.
IsNull
())
throw
std
::
runtime_error
(
error
.
GetMessage
());
const
auto
path
=
AllocatedPath
::
FromUTF8Throw
(
url
);
return
OpenLocalInputStream
(
path
,
mutex
,
cond
);
}
...
...
This diff is collapsed.
Click to expand it.
src/input/plugins/AlsaInputPlugin.cxx
View file @
a55bb280
...
...
@@ -29,7 +29,6 @@
#include "../InputPlugin.hxx"
#include "../AsyncInputStream.hxx"
#include "util/Domain.hxx"
#include "util/Error.hxx"
#include "util/RuntimeError.hxx"
#include "util/StringCompare.hxx"
#include "util/ReusableArray.hxx"
...
...
This diff is collapsed.
Click to expand it.
src/input/plugins/CdioParanoiaInputPlugin.cxx
View file @
a55bb280
...
...
@@ -28,7 +28,6 @@
#include "util/StringUtil.hxx"
#include "util/StringCompare.hxx"
#include "util/RuntimeError.hxx"
#include "util/Error.hxx"
#include "util/Domain.hxx"
#include "system/ByteOrder.hxx"
#include "fs/AllocatedPath.hxx"
...
...
This diff is collapsed.
Click to expand it.
src/input/plugins/CurlInputPlugin.cxx
View file @
a55bb280
...
...
@@ -33,7 +33,6 @@
#include "util/StringUtil.hxx"
#include "util/NumberParser.hxx"
#include "util/RuntimeError.hxx"
#include "util/Error.hxx"
#include "util/Domain.hxx"
#include "Log.hxx"
#include "PluginUnavailable.hxx"
...
...
This diff is collapsed.
Click to expand it.
src/input/plugins/FfmpegInputPlugin.cxx
View file @
a55bb280
...
...
@@ -29,7 +29,6 @@
#include "../InputPlugin.hxx"
#include "PluginUnavailable.hxx"
#include "util/StringCompare.hxx"
#include "util/Error.hxx"
extern
"C"
{
#include <libavformat/avio.h>
...
...
This diff is collapsed.
Click to expand it.
src/input/plugins/NfsInputPlugin.cxx
View file @
a55bb280
...
...
@@ -24,7 +24,6 @@
#include "lib/nfs/Glue.hxx"
#include "lib/nfs/FileReader.hxx"
#include "util/StringCompare.hxx"
#include "util/Error.hxx"
#include <string.h>
...
...
This diff is collapsed.
Click to expand it.
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