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
069895d2
Commit
069895d2
authored
Aug 12, 2014
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
PcmDsdUsb: use class ConstBuffer
parent
0e756e43
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
18 deletions
+16
-18
PcmDsdUsb.cxx
src/pcm/PcmDsdUsb.cxx
+10
-12
PcmDsdUsb.hxx
src/pcm/PcmDsdUsb.hxx
+3
-3
PcmExport.cxx
src/pcm/PcmExport.cxx
+3
-3
No files found.
src/pcm/PcmDsdUsb.cxx
View file @
069895d2
...
...
@@ -21,6 +21,7 @@
#include "PcmDsdUsb.hxx"
#include "PcmBuffer.hxx"
#include "AudioFormat.hxx"
#include "util/ConstBuffer.hxx"
#include <assert.h>
...
...
@@ -38,18 +39,16 @@ pcm_two_dsd_to_usb_marker2(uint8_t a, uint8_t b)
return
0xfffa0000
|
(
a
<<
8
)
|
b
;
}
const
uint32_t
*
ConstBuffer
<
uint32_t
>
pcm_dsd_to_usb
(
PcmBuffer
&
buffer
,
unsigned
channels
,
const
uint8_t
*
src
,
size_t
src_size
,
size_t
*
dest_size_r
)
ConstBuffer
<
uint8_t
>
_src
)
{
assert
(
audio_valid_channel_count
(
channels
));
assert
(
src
!=
nullptr
);
assert
(
src_
size
>
0
);
assert
(
src_
size
%
channels
==
0
);
assert
(
!
_src
.
IsNull
()
);
assert
(
_src
.
size
>
0
);
assert
(
_src
.
size
%
channels
==
0
);
const
unsigned
num_src_samples
=
src_
size
;
const
unsigned
num_src_samples
=
_src
.
size
;
const
unsigned
num_src_frames
=
num_src_samples
/
channels
;
/* this rounds down and discards the last odd frame; not
...
...
@@ -57,11 +56,10 @@ pcm_dsd_to_usb(PcmBuffer &buffer, unsigned channels,
const
unsigned
num_frames
=
num_src_frames
/
2
;
const
unsigned
num_samples
=
num_frames
*
channels
;
const
size_t
dest_size
=
num_samples
*
4
;
*
dest_size_r
=
dest_size
;
uint32_t
*
const
dest0
=
(
uint32_t
*
)
buffer
.
Get
(
dest_size
),
uint32_t
*
const
dest0
=
(
uint32_t
*
)
buffer
.
GetT
<
uint32_t
>
(
num_samples
),
*
dest
=
dest0
;
auto
src
=
_src
.
data
;
for
(
unsigned
i
=
num_frames
/
2
;
i
>
0
;
--
i
)
{
for
(
unsigned
c
=
channels
;
c
>
0
;
--
c
)
{
/* each 24 bit sample has 16 DSD sample bits
...
...
@@ -94,5 +92,5 @@ pcm_dsd_to_usb(PcmBuffer &buffer, unsigned channels,
src
+=
channels
;
}
return
dest0
;
return
{
dest0
,
num_samples
}
;
}
src/pcm/PcmDsdUsb.hxx
View file @
069895d2
...
...
@@ -26,6 +26,7 @@
#include <stddef.h>
class
PcmBuffer
;
template
<
typename
T
>
struct
ConstBuffer
;
/**
* Pack DSD 1 bit samples into (padded) 24 bit PCM samples for
...
...
@@ -33,9 +34,8 @@ class PcmBuffer;
* dCS and others:
* http://www.sonore.us/DoP_openStandard_1v1.pdf
*/
const
uint32_t
*
ConstBuffer
<
uint32_t
>
pcm_dsd_to_usb
(
PcmBuffer
&
buffer
,
unsigned
channels
,
const
uint8_t
*
src
,
size_t
src_size
,
size_t
*
dest_size_r
);
ConstBuffer
<
uint8_t
>
src
);
#endif
src/pcm/PcmExport.cxx
View file @
069895d2
...
...
@@ -76,9 +76,9 @@ ConstBuffer<void>
PcmExport
::
Export
(
ConstBuffer
<
void
>
data
)
{
if
(
dsd_usb
)
data
.
data
=
pcm_dsd_to_usb
(
dsd_buffer
,
channels
,
(
const
uint8_t
*
)
data
.
data
,
data
.
size
,
&
data
.
size
);
data
=
pcm_dsd_to_usb
(
dsd_buffer
,
channels
,
ConstBuffer
<
uint8_t
>::
FromVoid
(
data
))
.
ToVoid
(
);
if
(
pack24
)
{
const
auto
src
=
ConstBuffer
<
int32_t
>::
FromVoid
(
data
);
...
...
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