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
b6909da7
Commit
b6909da7
authored
Aug 26, 2008
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
clean up CPP includes
Include only headers which are really required. This speeds up compilation and helps detect cross-layer accesses.
parent
a383f451
Hide whitespace changes
Inline
Side-by-side
Showing
19 changed files
with
1 addition
and
79 deletions
+1
-79
audio.c
src/audio.c
+0
-1
_flac_common.c
src/inputPlugins/_flac_common.c
+0
-6
_flac_common.h
src/inputPlugins/_flac_common.h
+0
-4
_ogg_common.c
src/inputPlugins/_ogg_common.c
+0
-1
aac_plugin.c
src/inputPlugins/aac_plugin.c
+0
-4
audiofile_plugin.c
src/inputPlugins/audiofile_plugin.c
+0
-5
flac_plugin.c
src/inputPlugins/flac_plugin.c
+0
-6
mod_plugin.c
src/inputPlugins/mod_plugin.c
+0
-4
mp3_plugin.c
src/inputPlugins/mp3_plugin.c
+0
-5
mp4_plugin.c
src/inputPlugins/mp4_plugin.c
+0
-6
mpc_plugin.c
src/inputPlugins/mpc_plugin.c
+0
-6
oggflac_plugin.c
src/inputPlugins/oggflac_plugin.c
+0
-6
oggvorbis_plugin.c
src/inputPlugins/oggvorbis_plugin.c
+0
-6
wavpack_plugin.c
src/inputPlugins/wavpack_plugin.c
+0
-5
outputBuffer.h
src/outputBuffer.h
+0
-1
player.c
src/player.c
+0
-8
player.h
src/player.h
+1
-1
playerData.h
src/playerData.h
+0
-2
sig_handlers.c
src/sig_handlers.c
+0
-2
No files found.
src/audio.c
View file @
b6909da7
...
...
@@ -20,7 +20,6 @@
#include "audioOutput.h"
#include "log.h"
#include "command.h"
#include "playerData.h"
#include "path.h"
#include "ack.h"
#include "myfprintf.h"
...
...
src/inputPlugins/_flac_common.c
View file @
b6909da7
...
...
@@ -26,12 +26,6 @@
#include "_flac_common.h"
#include "../log.h"
#include "../tag.h"
#include "../inputStream.h"
#include "../outputBuffer.h"
#include "../decode.h"
#include "../replayGain.h"
#include "../os_compat.h"
#include <FLAC/format.h>
#include <FLAC/metadata.h>
...
...
src/inputPlugins/_flac_common.h
View file @
b6909da7
...
...
@@ -26,10 +26,6 @@
#if defined(HAVE_FLAC) || defined(HAVE_OGGFLAC)
#include "../tag.h"
#include "../inputStream.h"
#include "../outputBuffer.h"
#include "../decode.h"
#include <FLAC/export.h>
#if !defined(FLAC_API_VERSION_CURRENT) || FLAC_API_VERSION_CURRENT <= 7
# include <FLAC/seekable_stream_decoder.h>
...
...
src/inputPlugins/_ogg_common.c
View file @
b6909da7
...
...
@@ -28,7 +28,6 @@
(defined(FLAC_API_VERSION_CURRENT) && FLAC_API_VERSION_CURRENT > 7)
#include "../utils.h"
#include "../os_compat.h"
ogg_stream_type
ogg_stream_type_detect
(
InputStream
*
inStream
)
{
...
...
src/inputPlugins/aac_plugin.c
View file @
b6909da7
...
...
@@ -23,11 +23,7 @@
#define AAC_MAX_CHANNELS 6
#include "../utils.h"
#include "../audio.h"
#include "../log.h"
#include "../inputStream.h"
#include "../outputBuffer.h"
#include "../os_compat.h"
#include <faad.h>
...
...
src/inputPlugins/audiofile_plugin.c
View file @
b6909da7
...
...
@@ -22,12 +22,7 @@
#ifdef HAVE_AUDIOFILE
#include "../utils.h"
#include "../audio.h"
#include "../log.h"
#include "../pcm_utils.h"
#include "../playerData.h"
#include "../os_compat.h"
#include <audiofile.h>
...
...
src/inputPlugins/flac_plugin.c
View file @
b6909da7
...
...
@@ -22,12 +22,6 @@
#include "../utils.h"
#include "../log.h"
#include "../pcm_utils.h"
#include "../inputStream.h"
#include "../outputBuffer.h"
#include "../replayGain.h"
#include "../audio.h"
#include "../os_compat.h"
/* this code was based on flac123, from flac-tools */
...
...
src/inputPlugins/mod_plugin.c
View file @
b6909da7
...
...
@@ -21,11 +21,7 @@
#ifdef HAVE_MIKMOD
#include "../utils.h"
#include "../audio.h"
#include "../log.h"
#include "../pcm_utils.h"
#include "../playerData.h"
#include "../os_compat.h"
#include <mikmod.h>
...
...
src/inputPlugins/mp3_plugin.c
View file @
b6909da7
...
...
@@ -20,7 +20,6 @@
#ifdef HAVE_MAD
#include "../pcm_utils.h"
#include <mad.h>
#ifdef HAVE_ID3TAG
...
...
@@ -29,12 +28,8 @@
#include "../log.h"
#include "../utils.h"
#include "../replayGain.h"
#include "../tag.h"
#include "../conf.h"
#include "../os_compat.h"
#define FRAMES_CUSHION 2000
#define READ_BUFFER_SIZE 40960
...
...
src/inputPlugins/mp4_plugin.c
View file @
b6909da7
...
...
@@ -21,13 +21,7 @@
#ifdef HAVE_FAAD
#include "../utils.h"
#include "../audio.h"
#include "../log.h"
#include "../pcm_utils.h"
#include "../inputStream.h"
#include "../outputBuffer.h"
#include "../decode.h"
#include "../os_compat.h"
#include "../mp4ff/mp4ff.h"
...
...
src/inputPlugins/mpc_plugin.c
View file @
b6909da7
...
...
@@ -21,13 +21,7 @@
#ifdef HAVE_MPCDEC
#include "../utils.h"
#include "../audio.h"
#include "../log.h"
#include "../pcm_utils.h"
#include "../inputStream.h"
#include "../outputBuffer.h"
#include "../replayGain.h"
#include "../os_compat.h"
#include <mpcdec/mpcdec.h>
...
...
src/inputPlugins/oggflac_plugin.c
View file @
b6909da7
...
...
@@ -27,12 +27,6 @@
#include "../utils.h"
#include "../log.h"
#include "../pcm_utils.h"
#include "../inputStream.h"
#include "../outputBuffer.h"
#include "../replayGain.h"
#include "../audio.h"
#include "../os_compat.h"
static
void
oggflac_cleanup
(
FlacData
*
data
,
OggFLAC__SeekableStreamDecoder
*
decoder
)
...
...
src/inputPlugins/oggvorbis_plugin.c
View file @
b6909da7
...
...
@@ -25,13 +25,7 @@
#include "_ogg_common.h"
#include "../utils.h"
#include "../audio.h"
#include "../log.h"
#include "../pcm_utils.h"
#include "../inputStream.h"
#include "../outputBuffer.h"
#include "../replayGain.h"
#include "../os_compat.h"
#ifndef HAVE_TREMOR
#include <vorbis/vorbisfile.h>
...
...
src/inputPlugins/wavpack_plugin.c
View file @
b6909da7
...
...
@@ -23,12 +23,7 @@
#ifdef HAVE_WAVPACK
#include "../utils.h"
#include "../audio.h"
#include "../log.h"
#include "../pcm_utils.h"
#include "../playerData.h"
#include "../outputBuffer.h"
#include "../os_compat.h"
#include "../path.h"
#include <wavpack/wavpack.h>
...
...
src/outputBuffer.h
View file @
b6909da7
...
...
@@ -21,7 +21,6 @@
#include "pcm_utils.h"
#include "mpd_types.h"
#include "decode.h"
#include "inputStream.h"
#include "replayGain.h"
...
...
src/player.c
View file @
b6909da7
...
...
@@ -20,16 +20,8 @@
#include "path.h"
#include "decode.h"
#include "command.h"
#include "interface.h"
#include "playlist.h"
#include "ls.h"
#include "listen.h"
#include "log.h"
#include "utils.h"
#include "directory.h"
#include "volume.h"
#include "playerData.h"
#include "permission.h"
#include "ack.h"
#include "os_compat.h"
#include "main_notify.h"
...
...
src/player.h
View file @
b6909da7
...
...
@@ -19,7 +19,7 @@
#ifndef PLAYER_H
#define PLAYER_H
#include "
decode
.h"
#include "
notify
.h"
#include "mpd_types.h"
#include "song.h"
#include "os_compat.h"
...
...
src/playerData.h
View file @
b6909da7
...
...
@@ -19,10 +19,8 @@
#ifndef PLAYER_DATA_H
#define PLAYER_DATA_H
#include "audio.h"
#include "player.h"
#include "decode.h"
#include "mpd_types.h"
#include "outputBuffer.h"
extern
unsigned
int
buffered_before_play
;
...
...
src/sig_handlers.c
View file @
b6909da7
...
...
@@ -23,8 +23,6 @@
#include "command.h"
#include "signal_check.h"
#include "log.h"
#include "player.h"
#include "decode.h"
int
handlePendingSignals
(
void
)
{
...
...
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