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
5fba8d77
Commit
5fba8d77
authored
Aug 15, 2015
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
PlayerThread, ...: move to src/player/
parent
36cd73df
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
22 additions
and
22 deletions
+22
-22
Makefile.am
Makefile.am
+4
-4
Main.cxx
src/Main.cxx
+1
-1
Partition.hxx
src/Partition.hxx
+2
-2
Stats.cxx
src/Stats.cxx
+1
-1
MultipleOutputs.cxx
src/output/MultipleOutputs.cxx
+1
-1
OutputCommand.cxx
src/output/OutputCommand.cxx
+1
-1
OutputThread.cxx
src/output/OutputThread.cxx
+1
-1
Control.cxx
src/player/Control.cxx
+1
-1
Control.hxx
src/player/Control.hxx
+0
-0
CrossFade.cxx
src/player/CrossFade.cxx
+0
-0
CrossFade.hxx
src/player/CrossFade.hxx
+0
-0
Listener.hxx
src/player/Listener.hxx
+0
-0
Thread.cxx
src/player/Thread.cxx
+3
-3
Thread.hxx
src/player/Thread.hxx
+1
-1
Playlist.cxx
src/queue/Playlist.cxx
+1
-1
PlaylistControl.cxx
src/queue/PlaylistControl.cxx
+1
-1
PlaylistEdit.cxx
src/queue/PlaylistEdit.cxx
+1
-1
PlaylistState.cxx
src/queue/PlaylistState.cxx
+1
-1
run_output.cxx
test/run_output.cxx
+1
-1
test_mixramp.cxx
test/test_mixramp.cxx
+1
-1
No files found.
Makefile.am
View file @
5fba8d77
...
...
@@ -95,7 +95,6 @@ libmpd_a_SOURCES = \
src/command/OtherCommands.cxx src/command/OtherCommands.hxx
\
src/command/CommandListBuilder.cxx src/command/CommandListBuilder.hxx
\
src/Idle.cxx src/Idle.hxx
\
src/CrossFade.cxx src/CrossFade.hxx
\
src/decoder/DecoderError.cxx src/decoder/DecoderError.hxx
\
src/decoder/DecoderThread.cxx src/decoder/DecoderThread.hxx
\
src/decoder/DecoderCommand.hxx
\
...
...
@@ -140,9 +139,10 @@ libmpd_a_SOURCES = \
src/Mapper.cxx src/Mapper.hxx
\
src/Partition.cxx src/Partition.hxx
\
src/Permission.cxx src/Permission.hxx
\
src/PlayerThread.cxx src/PlayerThread.hxx
\
src/PlayerControl.cxx src/PlayerControl.hxx
\
src/PlayerListener.hxx
\
src/player/CrossFade.cxx src/player/CrossFade.hxx
\
src/player/Thread.cxx src/player/Thread.hxx
\
src/player/Control.cxx src/player/Control.hxx
\
src/player/Listener.hxx
\
src/PlaylistError.cxx src/PlaylistError.hxx
\
src/PlaylistGlobal.cxx src/PlaylistGlobal.hxx
\
src/PlaylistPrint.cxx src/PlaylistPrint.hxx
\
...
...
src/Main.cxx
View file @
5fba8d77
...
...
@@ -25,7 +25,7 @@
#include "PlaylistGlobal.hxx"
#include "MusicChunk.hxx"
#include "StateFile.hxx"
#include "
Player
Thread.hxx"
#include "
player/
Thread.hxx"
#include "Mapper.hxx"
#include "Permission.hxx"
#include "Listen.hxx"
...
...
src/Partition.hxx
View file @
5fba8d77
...
...
@@ -23,8 +23,8 @@
#include "queue/Playlist.hxx"
#include "output/MultipleOutputs.hxx"
#include "mixer/Listener.hxx"
#include "
Player
Control.hxx"
#include "
Player
Listener.hxx"
#include "
player/
Control.hxx"
#include "
player/
Listener.hxx"
#include "Chrono.hxx"
#include "Compiler.h"
...
...
src/Stats.cxx
View file @
5fba8d77
...
...
@@ -19,7 +19,7 @@
#include "config.h"
#include "Stats.hxx"
#include "
Player
Control.hxx"
#include "
player/
Control.hxx"
#include "client/Response.hxx"
#include "Partition.hxx"
#include "Instance.hxx"
...
...
src/output/MultipleOutputs.cxx
View file @
5fba8d77
...
...
@@ -19,7 +19,7 @@
#include "config.h"
#include "MultipleOutputs.hxx"
#include "
Player
Control.hxx"
#include "
player/
Control.hxx"
#include "Internal.hxx"
#include "Domain.hxx"
#include "MusicBuffer.hxx"
...
...
src/output/OutputCommand.cxx
View file @
5fba8d77
...
...
@@ -28,7 +28,7 @@
#include "OutputCommand.hxx"
#include "MultipleOutputs.hxx"
#include "Internal.hxx"
#include "
Player
Control.hxx"
#include "
player/
Control.hxx"
#include "mixer/MixerControl.hxx"
#include "Idle.hxx"
...
...
src/output/OutputThread.cxx
View file @
5fba8d77
...
...
@@ -27,7 +27,7 @@
#include "filter/FilterInternal.hxx"
#include "filter/plugins/ConvertFilterPlugin.hxx"
#include "filter/plugins/ReplayGainFilterPlugin.hxx"
#include "
Player
Control.hxx"
#include "
player/
Control.hxx"
#include "MusicPipe.hxx"
#include "MusicChunk.hxx"
#include "thread/Util.hxx"
...
...
src/
Player
Control.cxx
→
src/
player/
Control.cxx
View file @
5fba8d77
...
...
@@ -18,7 +18,7 @@
*/
#include "config.h"
#include "
Player
Control.hxx"
#include "Control.hxx"
#include "Idle.hxx"
#include "DetachedSong.hxx"
...
...
src/
Player
Control.hxx
→
src/
player/
Control.hxx
View file @
5fba8d77
File moved
src/CrossFade.cxx
→
src/
player/
CrossFade.cxx
View file @
5fba8d77
File moved
src/CrossFade.hxx
→
src/
player/
CrossFade.hxx
View file @
5fba8d77
File moved
src/
Player
Listener.hxx
→
src/
player/
Listener.hxx
View file @
5fba8d77
File moved
src/
Player
Thread.cxx
→
src/
player/
Thread.cxx
View file @
5fba8d77
...
...
@@ -18,8 +18,8 @@
*/
#include "config.h"
#include "
Player
Thread.hxx"
#include "
Player
Listener.hxx"
#include "Thread.hxx"
#include "Listener.hxx"
#include "decoder/DecoderThread.hxx"
#include "decoder/DecoderControl.hxx"
#include "MusicPipe.hxx"
...
...
@@ -28,7 +28,7 @@
#include "DetachedSong.hxx"
#include "system/FatalError.hxx"
#include "CrossFade.hxx"
#include "
Player
Control.hxx"
#include "Control.hxx"
#include "output/MultipleOutputs.hxx"
#include "tag/Tag.hxx"
#include "Idle.hxx"
...
...
src/
Player
Thread.hxx
→
src/
player/
Thread.hxx
View file @
5fba8d77
...
...
@@ -26,7 +26,7 @@
* audio outputs via audio_output_all_play().
*
* It is controlled by the main thread (the playlist code), see
*
Player
Control.hxx. The playlist enqueues new songs into the player
* Control.hxx. The playlist enqueues new songs into the player
* thread and sends it commands.
*
* The player thread itself does not do any I/O. It synchronizes with
...
...
src/queue/Playlist.cxx
View file @
5fba8d77
...
...
@@ -20,7 +20,7 @@
#include "config.h"
#include "Playlist.hxx"
#include "PlaylistError.hxx"
#include "
Player
Control.hxx"
#include "
player/
Control.hxx"
#include "DetachedSong.hxx"
#include "Idle.hxx"
#include "Log.hxx"
...
...
src/queue/PlaylistControl.cxx
View file @
5fba8d77
...
...
@@ -25,7 +25,7 @@
#include "config.h"
#include "Playlist.hxx"
#include "PlaylistError.hxx"
#include "
Player
Control.hxx"
#include "
player/
Control.hxx"
#include "DetachedSong.hxx"
#include "Log.hxx"
...
...
src/queue/PlaylistEdit.cxx
View file @
5fba8d77
...
...
@@ -26,7 +26,7 @@
#include "config.h"
#include "Playlist.hxx"
#include "PlaylistError.hxx"
#include "
Player
Control.hxx"
#include "
player/
Control.hxx"
#include "util/UriUtil.hxx"
#include "util/Error.hxx"
#include "DetachedSong.hxx"
...
...
src/queue/PlaylistState.cxx
View file @
5fba8d77
...
...
@@ -29,7 +29,7 @@
#include "queue/QueueSave.hxx"
#include "fs/io/TextFile.hxx"
#include "fs/io/BufferedOutputStream.hxx"
#include "
Player
Control.hxx"
#include "
player/
Control.hxx"
#include "config/ConfigGlobal.hxx"
#include "config/ConfigOption.hxx"
#include "util/CharUtil.hxx"
...
...
test/run_output.cxx
View file @
5fba8d77
...
...
@@ -31,7 +31,7 @@
#include "AudioParser.hxx"
#include "pcm/PcmConvert.hxx"
#include "filter/FilterRegistry.hxx"
#include "
Player
Control.hxx"
#include "
player/
Control.hxx"
#include "stdbin.h"
#include "util/Error.hxx"
#include "Log.hxx"
...
...
test/test_mixramp.cxx
View file @
5fba8d77
...
...
@@ -3,7 +3,7 @@
*/
#include "config.h"
#include "CrossFade.cxx"
#include "
player/
CrossFade.cxx"
#include <cppunit/TestFixture.h>
#include <cppunit/extensions/TestFactoryRegistry.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