Skip to content

Translates the DSD/DSF file into WAV file written in C for learning,

Notifications You must be signed in to change notification settings

jagger2048/DSD2PCM

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DSD2PCM

This is a library converts dsd file to pcm, wav file,which references from https://code.google.com/archive/p/dsd2pcm . I have do some improvement in this library and the original dsd2pcm version located at the ./dsd2pcm/ directory for reference.

what I do?

  1. Repackage the dsd2pcm algorithm, remove the noise shape processing.
  2. Replace the filter coefficients and order with a new version in order to export 88.2kHz signal. You can switch on thought the macro #define JAVA_VERSION.
    1. half filter taps: 48 -> 64
    2. fifo size: 16 -> 16*2
    3. add 64th fir filter coefficients

The deference of the dsd2pcm algorithm processing between the original version (state1) and the java version (state1+state2) can be found as below.

show

In fact I tried to use halfband structure FIR filter to optimized the state2, but it is not so good. Maybe polyphase structure is better in this case, convert 352kHz to 88.2kHz.

For more details, you can check the VS2017 project, and for learning, you can read DSD2PCM 算法评估.pdf which written in Chinese.

About

Translates the DSD/DSF file into WAV file written in C for learning,

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published