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
67f0d26d
Commit
67f0d26d
authored
Aug 23, 2014
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
decoder/dsf: fix big-endian bugs
parent
8574bcd4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
6 deletions
+9
-6
NEWS
NEWS
+1
-0
DsfDecoderPlugin.cxx
src/decoder/plugins/DsfDecoderPlugin.cxx
+8
-6
No files found.
NEWS
View file @
67f0d26d
...
...
@@ -44,6 +44,7 @@ ver 0.19 (not yet released)
- dsdiff, dsf: report bit rate
- dsf: support DSD512
- dsf: support multi-channel files
- dsf: fix big-endian bugs
- dsf: fix noise at end of malformed file
- sndfile: support scanning remote files
- sndfile: support tags "comment", "album", "track", "genre"
...
...
src/decoder/plugins/DsfDecoderPlugin.cxx
View file @
67f0d26d
...
...
@@ -127,14 +127,16 @@ dsf_read_metadata(Decoder *decoder, InputStream &is,
return
false
;
uint32_t
samplefreq
=
FromLE32
(
dsf_fmt_chunk
.
sample_freq
);
const
unsigned
channels
=
FromLE32
(
dsf_fmt_chunk
.
channelnum
);
/* for now, only support version 1 of the standard, DSD raw stereo
files with a sample freq of 2822400 or 5644800 Hz */
if
(
dsf_fmt_chunk
.
version
!=
1
||
dsf_fmt_chunk
.
formatid
!=
0
||
dsf_fmt_chunk
.
channeltype
!=
2
||
dsf_fmt_chunk
.
channelnum
!=
2
||
(
!
dsdlib_valid_freq
(
samplefreq
)))
if
(
FromLE32
(
dsf_fmt_chunk
.
version
)
!=
1
||
FromLE32
(
dsf_fmt_chunk
.
formatid
)
!=
0
||
FromLE32
(
dsf_fmt_chunk
.
channeltype
)
!=
2
||
channels
!=
2
||
!
dsdlib_valid_freq
(
samplefreq
))
return
false
;
uint32_t
chblksize
=
FromLE32
(
dsf_fmt_chunk
.
block_size
);
...
...
@@ -170,13 +172,13 @@ dsf_read_metadata(Decoder *decoder, InputStream &is,
data_size
=
playable_size
;
metadata
->
chunk_size
=
data_size
;
metadata
->
channels
=
(
unsigned
)
dsf_fmt_chunk
.
channelnum
;
metadata
->
channels
=
channels
;
metadata
->
sample_rate
=
samplefreq
;
#ifdef HAVE_ID3TAG
metadata
->
id3_offset
=
metadata_offset
;
#endif
/* check bits per sample format, determine if bitreverse is needed */
metadata
->
bitreverse
=
dsf_fmt_chunk
.
bitssample
==
1
;
metadata
->
bitreverse
=
FromLE32
(
dsf_fmt_chunk
.
bitssample
)
==
1
;
return
true
;
}
...
...
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