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
c4efc37a
Commit
c4efc37a
authored
Mar 08, 2019
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
system/ByteOrder: move to util/
parent
691b6a23
Hide whitespace changes
Inline
Side-by-side
Showing
23 changed files
with
23 additions
and
23 deletions
+23
-23
DsdLib.hxx
src/decoder/plugins/DsdLib.hxx
+1
-1
DsdiffDecoderPlugin.cxx
src/decoder/plugins/DsdiffDecoderPlugin.cxx
+1
-1
DsfDecoderPlugin.cxx
src/decoder/plugins/DsfDecoderPlugin.cxx
+1
-1
HybridDsdDecoderPlugin.cxx
src/decoder/plugins/HybridDsdDecoderPlugin.cxx
+1
-1
PcmDecoderPlugin.cxx
src/decoder/plugins/PcmDecoderPlugin.cxx
+1
-1
SidplayDecoderPlugin.cxx
src/decoder/plugins/SidplayDecoderPlugin.cxx
+1
-1
OpusEncoderPlugin.cxx
src/encoder/plugins/OpusEncoderPlugin.cxx
+1
-1
WaveEncoderPlugin.cxx
src/encoder/plugins/WaveEncoderPlugin.cxx
+1
-1
CdioParanoiaInputPlugin.cxx
src/input/plugins/CdioParanoiaInputPlugin.cxx
+1
-1
HwSetup.cxx
src/lib/alsa/HwSetup.cxx
+1
-1
IPv4Address.hxx
src/net/IPv4Address.hxx
+1
-1
IPv6Address.hxx
src/net/IPv6Address.hxx
+1
-1
OSXOutputPlugin.cxx
src/output/plugins/OSXOutputPlugin.cxx
+1
-1
OssOutputPlugin.cxx
src/output/plugins/OssOutputPlugin.cxx
+1
-1
SlesOutputPlugin.cxx
src/output/plugins/sles/SlesOutputPlugin.cxx
+1
-1
PcmPack.cxx
src/pcm/PcmPack.cxx
+1
-1
Aiff.cxx
src/tag/Aiff.cxx
+1
-1
ApeLoader.cxx
src/tag/ApeLoader.cxx
+1
-1
Riff.cxx
src/tag/Riff.cxx
+1
-1
ByteOrder.hxx
src/util/ByteOrder.hxx
+1
-1
ByteReverse.cxx
src/util/ByteReverse.cxx
+1
-1
test_pcm_export.cxx
test/test_pcm_export.cxx
+1
-1
test_pcm_pack.cxx
test/test_pcm_pack.cxx
+1
-1
No files found.
src/decoder/plugins/DsdLib.hxx
View file @
c4efc37a
...
...
@@ -20,7 +20,7 @@
#ifndef MPD_DECODER_DSDLIB_HXX
#define MPD_DECODER_DSDLIB_HXX
#include "
system
/ByteOrder.hxx"
#include "
util
/ByteOrder.hxx"
#include "input/Offset.hxx"
#include "util/Compiler.h"
...
...
src/decoder/plugins/DsdiffDecoderPlugin.cxx
View file @
c4efc37a
...
...
@@ -32,7 +32,7 @@
#include "input/InputStream.hxx"
#include "CheckAudioFormat.hxx"
#include "util/bit_reverse.h"
#include "
system
/ByteOrder.hxx"
#include "
util
/ByteOrder.hxx"
#include "tag/Handler.hxx"
#include "DsdLib.hxx"
#include "Log.hxx"
...
...
src/decoder/plugins/DsfDecoderPlugin.cxx
View file @
c4efc37a
...
...
@@ -33,7 +33,7 @@
#include "input/InputStream.hxx"
#include "CheckAudioFormat.hxx"
#include "util/bit_reverse.h"
#include "
system
/ByteOrder.hxx"
#include "
util
/ByteOrder.hxx"
#include "DsdLib.hxx"
#include "tag/Handler.hxx"
#include "Log.hxx"
...
...
src/decoder/plugins/HybridDsdDecoderPlugin.cxx
View file @
c4efc37a
...
...
@@ -20,7 +20,7 @@
#include "HybridDsdDecoderPlugin.hxx"
#include "../DecoderAPI.hxx"
#include "input/InputStream.hxx"
#include "
system
/ByteOrder.hxx"
#include "
util
/ByteOrder.hxx"
#include "util/Domain.hxx"
#include "util/WritableBuffer.hxx"
#include "util/StaticFifoBuffer.hxx"
...
...
src/decoder/plugins/PcmDecoderPlugin.cxx
View file @
c4efc37a
...
...
@@ -22,7 +22,7 @@
#include "CheckAudioFormat.hxx"
#include "pcm/PcmPack.hxx"
#include "input/InputStream.hxx"
#include "
system
/ByteOrder.hxx"
#include "
util
/ByteOrder.hxx"
#include "util/Domain.hxx"
#include "util/ByteReverse.hxx"
#include "util/StaticFifoBuffer.hxx"
...
...
src/decoder/plugins/SidplayDecoderPlugin.cxx
View file @
c4efc37a
...
...
@@ -35,7 +35,7 @@
#include "util/Domain.hxx"
#include "util/AllocatedString.hxx"
#include "util/CharUtil.hxx"
#include "
system
/ByteOrder.hxx"
#include "
util
/ByteOrder.hxx"
#include "Log.hxx"
#ifdef HAVE_SIDPLAYFP
...
...
src/encoder/plugins/OpusEncoderPlugin.cxx
View file @
c4efc37a
...
...
@@ -22,7 +22,7 @@
#include "AudioFormat.hxx"
#include "config/Domain.hxx"
#include "util/Alloc.hxx"
#include "
system
/ByteOrder.hxx"
#include "
util
/ByteOrder.hxx"
#include "util/StringUtil.hxx"
#include <opus.h>
...
...
src/encoder/plugins/WaveEncoderPlugin.cxx
View file @
c4efc37a
...
...
@@ -19,7 +19,7 @@
#include "WaveEncoderPlugin.hxx"
#include "../EncoderAPI.hxx"
#include "
system
/ByteOrder.hxx"
#include "
util
/ByteOrder.hxx"
#include "util/DynamicFifoBuffer.hxx"
#include <assert.h>
...
...
src/input/plugins/CdioParanoiaInputPlugin.cxx
View file @
c4efc37a
...
...
@@ -30,7 +30,7 @@
#include "util/StringCompare.hxx"
#include "util/RuntimeError.hxx"
#include "util/Domain.hxx"
#include "
system
/ByteOrder.hxx"
#include "
util
/ByteOrder.hxx"
#include "fs/AllocatedPath.hxx"
#include "Log.hxx"
#include "config/Block.hxx"
...
...
src/lib/alsa/HwSetup.cxx
View file @
c4efc37a
...
...
@@ -19,7 +19,7 @@
#include "HwSetup.hxx"
#include "Format.hxx"
#include "
system
/ByteOrder.hxx"
#include "
util
/ByteOrder.hxx"
#include "util/Domain.hxx"
#include "util/RuntimeError.hxx"
#include "AudioFormat.hxx"
...
...
src/net/IPv4Address.hxx
View file @
c4efc37a
...
...
@@ -31,7 +31,7 @@
#define IPV4_ADDRESS_HXX
#include "SocketAddress.hxx"
#include "
system
/ByteOrder.hxx"
#include "
util
/ByteOrder.hxx"
#include <stdint.h>
...
...
src/net/IPv6Address.hxx
View file @
c4efc37a
...
...
@@ -31,7 +31,7 @@
#define IPV6_ADDRESS_HXX
#include "SocketAddress.hxx"
#include "
system
/ByteOrder.hxx"
#include "
util
/ByteOrder.hxx"
#include "util/Compiler.h"
#include <stdint.h>
...
...
src/output/plugins/OSXOutputPlugin.cxx
View file @
c4efc37a
...
...
@@ -29,7 +29,7 @@
#include "pcm/PcmExport.hxx"
#include "thread/Mutex.hxx"
#include "thread/Cond.hxx"
#include "
system
/ByteOrder.hxx"
#include "
util
/ByteOrder.hxx"
#include "util/StringBuffer.hxx"
#include "util/StringFormat.hxx"
#include "Log.hxx"
...
...
src/output/plugins/OssOutputPlugin.cxx
View file @
c4efc37a
...
...
@@ -25,7 +25,7 @@
#include "util/ConstBuffer.hxx"
#include "util/Domain.hxx"
#include "util/Macros.hxx"
#include "
system
/ByteOrder.hxx"
#include "
util
/ByteOrder.hxx"
#include "Log.hxx"
#include <stdexcept>
...
...
src/output/plugins/sles/SlesOutputPlugin.cxx
View file @
c4efc37a
...
...
@@ -27,7 +27,7 @@
#include "thread/Cond.hxx"
#include "util/Macros.hxx"
#include "util/Domain.hxx"
#include "
system
/ByteOrder.hxx"
#include "
util
/ByteOrder.hxx"
#include "mixer/MixerList.hxx"
#include "Log.hxx"
...
...
src/pcm/PcmPack.cxx
View file @
c4efc37a
...
...
@@ -18,7 +18,7 @@
*/
#include "PcmPack.hxx"
#include "
system
/ByteOrder.hxx"
#include "
util
/ByteOrder.hxx"
static
void
pack_sample
(
uint8_t
*
dest
,
const
int32_t
*
src0
)
noexcept
...
...
src/tag/Aiff.cxx
View file @
c4efc37a
...
...
@@ -19,7 +19,7 @@
#include "Aiff.hxx"
#include "input/InputStream.hxx"
#include "
system
/ByteOrder.hxx"
#include "
util
/ByteOrder.hxx"
#include <limits>
#include <stdexcept>
...
...
src/tag/ApeLoader.cxx
View file @
c4efc37a
...
...
@@ -18,7 +18,7 @@
*/
#include "ApeLoader.hxx"
#include "
system
/ByteOrder.hxx"
#include "
util
/ByteOrder.hxx"
#include "input/InputStream.hxx"
#include "util/StringView.hxx"
...
...
src/tag/Riff.cxx
View file @
c4efc37a
...
...
@@ -19,7 +19,7 @@
#include "Riff.hxx"
#include "input/InputStream.hxx"
#include "
system
/ByteOrder.hxx"
#include "
util
/ByteOrder.hxx"
#include <limits>
#include <stdexcept>
...
...
src/
system
/ByteOrder.hxx
→
src/
util
/ByteOrder.hxx
View file @
c4efc37a
...
...
@@ -30,7 +30,7 @@
#ifndef BYTE_ORDER_HXX
#define BYTE_ORDER_HXX
#include "
util/
Compiler.h"
#include "Compiler.h"
#include <stdint.h>
...
...
src/util/ByteReverse.cxx
View file @
c4efc37a
...
...
@@ -18,7 +18,7 @@
*/
#include "ByteReverse.hxx"
#include "
system
/ByteOrder.hxx"
#include "
util
/ByteOrder.hxx"
#include "Compiler.h"
#include <assert.h>
...
...
test/test_pcm_export.cxx
View file @
c4efc37a
...
...
@@ -20,7 +20,7 @@
#include "config.h"
#include "pcm/PcmExport.hxx"
#include "pcm/Traits.hxx"
#include "
system
/ByteOrder.hxx"
#include "
util
/ByteOrder.hxx"
#include "util/ConstBuffer.hxx"
#include <gtest/gtest.h>
...
...
test/test_pcm_pack.cxx
View file @
c4efc37a
...
...
@@ -19,7 +19,7 @@
#include "test_pcm_util.hxx"
#include "pcm/PcmPack.hxx"
#include "
system
/ByteOrder.hxx"
#include "
util
/ByteOrder.hxx"
#include <gtest/gtest.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