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
debdf9bb
Commit
debdf9bb
authored
Sep 21, 2018
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
decoder/{Thread,Control,...}: rename source files, drop prefix
parent
218d9383
Show whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
15 additions
and
17 deletions
+15
-17
Makefile.am
Makefile.am
+4
-4
Bridge.cxx
src/decoder/Bridge.cxx
+2
-2
Client.hxx
src/decoder/Client.hxx
+1
-1
Command.hxx
src/decoder/Command.hxx
+0
-0
Control.cxx
src/decoder/Control.cxx
+1
-2
Control.hxx
src/decoder/Control.hxx
+1
-1
DecoderAPI.hxx
src/decoder/DecoderAPI.hxx
+1
-1
Domain.cxx
src/decoder/Domain.cxx
+1
-1
Domain.hxx
src/decoder/Domain.hxx
+2
-2
Thread.cxx
src/decoder/Thread.cxx
+1
-2
Thread.cxx
src/player/Thread.cxx
+1
-1
No files found.
Makefile.am
View file @
debdf9bb
...
...
@@ -101,10 +101,10 @@ libmpd_a_SOURCES = \
src/command/CommandListBuilder.cxx src/command/CommandListBuilder.hxx
\
src/Idle.cxx src/Idle.hxx
\
src/IdleFlags.cxx src/IdleFlags.hxx
\
src/decoder/D
ecoderError.cxx src/decoder/DecoderError
.hxx
\
src/decoder/
Decoder
Thread.cxx
\
src/decoder/
Decoder
Command.hxx
\
src/decoder/
DecoderControl.cxx src/decoder/Decoder
Control.hxx
\
src/decoder/D
omain.cxx src/decoder/Domain
.hxx
\
src/decoder/Thread.cxx
\
src/decoder/Command.hxx
\
src/decoder/
Control.cxx src/decoder/
Control.hxx
\
src/decoder/Client.hxx
\
src/decoder/DecoderPlugin.hxx
\
src/decoder/Bridge.cxx src/decoder/Bridge.hxx
\
...
...
src/decoder/Bridge.cxx
View file @
debdf9bb
...
...
@@ -20,8 +20,8 @@
#include "config.h"
#include "Bridge.hxx"
#include "DecoderAPI.hxx"
#include "D
ecoderError
.hxx"
#include "
Decoder
Control.hxx"
#include "D
omain
.hxx"
#include "Control.hxx"
#include "song/DetachedSong.hxx"
#include "pcm/PcmConvert.hxx"
#include "MusicPipe.hxx"
...
...
src/decoder/Client.hxx
View file @
debdf9bb
...
...
@@ -21,7 +21,7 @@
#define MPD_DECODER_CLIENT_HXX
#include "check.h"
#include "
Decoder
Command.hxx"
#include "Command.hxx"
#include "Chrono.hxx"
#include "input/Ptr.hxx"
#include "util/Compiler.h"
...
...
src/decoder/
Decoder
Command.hxx
→
src/decoder/Command.hxx
View file @
debdf9bb
File moved
src/decoder/
Decoder
Control.cxx
→
src/decoder/Control.cxx
View file @
debdf9bb
...
...
@@ -18,8 +18,7 @@
*/
#include "config.h"
#include "DecoderControl.hxx"
#include "DecoderError.hxx"
#include "Control.hxx"
#include "MusicPipe.hxx"
#include "song/DetachedSong.hxx"
...
...
src/decoder/
Decoder
Control.hxx
→
src/decoder/Control.hxx
View file @
debdf9bb
...
...
@@ -20,7 +20,7 @@
#ifndef MPD_DECODER_CONTROL_HXX
#define MPD_DECODER_CONTROL_HXX
#include "
Decoder
Command.hxx"
#include "Command.hxx"
#include "AudioFormat.hxx"
#include "MixRampInfo.hxx"
#include "input/Handler.hxx"
...
...
src/decoder/DecoderAPI.hxx
View file @
debdf9bb
...
...
@@ -32,7 +32,7 @@
#include "check.h"
#include "Client.hxx"
#include "input/Ptr.hxx"
#include "
Decoder
Command.hxx"
#include "Command.hxx"
#include "DecoderPlugin.hxx"
#include "ReplayGainInfo.hxx"
#include "tag/Tag.hxx"
...
...
src/decoder/D
ecoderError
.cxx
→
src/decoder/D
omain
.cxx
View file @
debdf9bb
...
...
@@ -17,7 +17,7 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include "D
ecoderError
.hxx"
#include "D
omain
.hxx"
#include "util/Domain.hxx"
const
Domain
decoder_domain
(
"decoder"
);
src/decoder/D
ecoderError
.hxx
→
src/decoder/D
omain
.hxx
View file @
debdf9bb
...
...
@@ -17,8 +17,8 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef MPD_DECODER_
ERROR
_HXX
#define MPD_DECODER_
ERROR
_HXX
#ifndef MPD_DECODER_
DOMAIN
_HXX
#define MPD_DECODER_
DOMAIN
_HXX
extern
const
class
Domain
decoder_domain
;
...
...
src/decoder/
Decoder
Thread.cxx
→
src/decoder/Thread.cxx
View file @
debdf9bb
...
...
@@ -18,9 +18,8 @@
*/
#include "config.h"
#include "
Decoder
Control.hxx"
#include "Control.hxx"
#include "Bridge.hxx"
#include "DecoderError.hxx"
#include "DecoderPlugin.hxx"
#include "song/DetachedSong.hxx"
#include "MusicPipe.hxx"
...
...
src/player/Thread.cxx
View file @
debdf9bb
...
...
@@ -21,7 +21,7 @@
#include "Thread.hxx"
#include "Outputs.hxx"
#include "Listener.hxx"
#include "decoder/
Decoder
Control.hxx"
#include "decoder/Control.hxx"
#include "MusicPipe.hxx"
#include "MusicBuffer.hxx"
#include "MusicChunk.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