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
bece0230
Commit
bece0230
authored
Jan 11, 2017
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pcm/PcmDsd: move Dsd8To32() to Dsd32.cxx
parent
9c4df669
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
100 additions
and
44 deletions
+100
-44
Makefile.am
Makefile.am
+1
-0
Dsd32.cxx
src/pcm/Dsd32.cxx
+62
-0
Dsd32.hxx
src/pcm/Dsd32.hxx
+36
-0
PcmDsd.cxx
src/pcm/PcmDsd.cxx
+0
-38
PcmDsd.hxx
src/pcm/PcmDsd.hxx
+0
-6
PcmExport.cxx
src/pcm/PcmExport.cxx
+1
-0
No files found.
Makefile.am
View file @
bece0230
...
@@ -575,6 +575,7 @@ PCM_LIBS = \
...
@@ -575,6 +575,7 @@ PCM_LIBS = \
if
ENABLE_DSD
if
ENABLE_DSD
libpcm_a_SOURCES
+=
\
libpcm_a_SOURCES
+=
\
src/pcm/Dsd32.cxx src/pcm/Dsd32.hxx
\
src/pcm/PcmDsd.cxx src/pcm/PcmDsd.hxx
\
src/pcm/PcmDsd.cxx src/pcm/PcmDsd.hxx
\
src/pcm/dsd2pcm/dsd2pcm.c src/pcm/dsd2pcm/dsd2pcm.h
src/pcm/dsd2pcm/dsd2pcm.c src/pcm/dsd2pcm/dsd2pcm.h
endif
endif
...
...
src/pcm/Dsd32.cxx
0 → 100644
View file @
bece0230
/*
* Copyright 2003-2017 The Music Player Daemon Project
* http://www.musicpd.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include "config.h"
#include "Dsd32.hxx"
#include "PcmBuffer.hxx"
#include "dsd2pcm/dsd2pcm.h"
#include "util/ConstBuffer.hxx"
/**
* Construct a 32 bit integer from four bytes.
*/
static
constexpr
inline
uint32_t
Construct32
(
uint8_t
a
,
uint8_t
b
,
uint8_t
c
,
uint8_t
d
)
{
return
uint32_t
(
a
)
|
(
uint32_t
(
b
)
<<
8
)
|
(
uint32_t
(
c
)
<<
16
)
|
(
uint32_t
(
d
)
<<
24
);
}
static
constexpr
inline
uint32_t
Dsd8To32Sample
(
const
uint8_t
*
src
,
unsigned
channels
)
{
return
Construct32
(
src
[
0
],
src
[
channels
],
src
[
2
*
channels
],
src
[
3
*
channels
]);
}
ConstBuffer
<
uint32_t
>
Dsd8To32
(
PcmBuffer
&
buffer
,
unsigned
channels
,
ConstBuffer
<
uint8_t
>
_src
)
{
const
size_t
in_frames
=
_src
.
size
/
channels
;
const
size_t
out_frames
=
in_frames
/
4
;
const
size_t
out_samples
=
out_frames
*
channels
;
const
uint8_t
*
src
=
_src
.
data
;
uint32_t
*
const
dest0
=
buffer
.
GetT
<
uint32_t
>
(
out_samples
);
uint32_t
*
dest
=
dest0
;
for
(
size_t
i
=
0
;
i
<
out_frames
;
++
i
)
{
for
(
size_t
c
=
0
;
c
<
channels
;
++
c
)
*
dest
++
=
Dsd8To32Sample
(
src
++
,
channels
);
src
+=
3
*
channels
;
}
return
{
dest0
,
out_samples
};
}
src/pcm/Dsd32.hxx
0 → 100644
View file @
bece0230
/*
* Copyright 2003-2017 The Music Player Daemon Project
* http://www.musicpd.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef MPD_PCM_DSD_32_HXX
#define MPD_PCM_DSD_32_HXX
#include "check.h"
#include <stdint.h>
template
<
typename
T
>
struct
ConstBuffer
;
class
PcmBuffer
;
/**
* Convert DSD_U8 to DSD_U32 (native endian).
*/
ConstBuffer
<
uint32_t
>
Dsd8To32
(
PcmBuffer
&
buffer
,
unsigned
channels
,
ConstBuffer
<
uint8_t
>
src
);
#endif
src/pcm/PcmDsd.cxx
View file @
bece0230
...
@@ -71,41 +71,3 @@ PcmDsd::ToFloat(unsigned channels, ConstBuffer<uint8_t> src)
...
@@ -71,41 +71,3 @@ PcmDsd::ToFloat(unsigned channels, ConstBuffer<uint8_t> src)
return
{
dest
,
num_samples
};
return
{
dest
,
num_samples
};
}
}
/**
* Construct a 32 bit integer from four bytes.
*/
static
constexpr
inline
uint32_t
Construct32
(
uint8_t
a
,
uint8_t
b
,
uint8_t
c
,
uint8_t
d
)
{
return
uint32_t
(
a
)
|
(
uint32_t
(
b
)
<<
8
)
|
(
uint32_t
(
c
)
<<
16
)
|
(
uint32_t
(
d
)
<<
24
);
}
static
constexpr
inline
uint32_t
Dsd8To32Sample
(
const
uint8_t
*
src
,
unsigned
channels
)
{
return
Construct32
(
src
[
0
],
src
[
channels
],
src
[
2
*
channels
],
src
[
3
*
channels
]);
}
ConstBuffer
<
uint32_t
>
Dsd8To32
(
PcmBuffer
&
buffer
,
unsigned
channels
,
ConstBuffer
<
uint8_t
>
_src
)
{
const
size_t
in_frames
=
_src
.
size
/
channels
;
const
size_t
out_frames
=
in_frames
/
4
;
const
size_t
out_samples
=
out_frames
*
channels
;
const
uint8_t
*
src
=
_src
.
data
;
uint32_t
*
const
dest0
=
buffer
.
GetT
<
uint32_t
>
(
out_samples
);
uint32_t
*
dest
=
dest0
;
for
(
size_t
i
=
0
;
i
<
out_frames
;
++
i
)
{
for
(
size_t
c
=
0
;
c
<
channels
;
++
c
)
*
dest
++
=
Dsd8To32Sample
(
src
++
,
channels
);
src
+=
3
*
channels
;
}
return
{
dest0
,
out_samples
};
}
src/pcm/PcmDsd.hxx
View file @
bece0230
...
@@ -48,10 +48,4 @@ public:
...
@@ -48,10 +48,4 @@ public:
ConstBuffer
<
uint8_t
>
src
);
ConstBuffer
<
uint8_t
>
src
);
};
};
/**
* Convert DSD_U8 to DSD_U32 (native endian).
*/
ConstBuffer
<
uint32_t
>
Dsd8To32
(
PcmBuffer
&
buffer
,
unsigned
channels
,
ConstBuffer
<
uint8_t
>
src
);
#endif
#endif
src/pcm/PcmExport.cxx
View file @
bece0230
...
@@ -25,6 +25,7 @@
...
@@ -25,6 +25,7 @@
#include "util/ConstBuffer.hxx"
#include "util/ConstBuffer.hxx"
#ifdef ENABLE_DSD
#ifdef ENABLE_DSD
#include "Dsd32.hxx"
#include "PcmDsd.hxx"
#include "PcmDsd.hxx"
#include "PcmDop.hxx"
#include "PcmDop.hxx"
#endif
#endif
...
...
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