Re: [Musicpd-dev-team] [PATCH 0/5] Add new decoder for outputting DSD data to 'DSD-over-USB' spec. - info

2012-02-03 Thread Jesus R
Max, this is the first attempt to get the code in for comments. I think it's understandable that some things may not be what you expect or require. I my fear has been that the longer the patch goes on without this kind of input the harder it would be to submit and have it excepted. Let us look into

Re: [Musicpd-dev-team] [PATCH 0/5] Add new decoder for outputting DSD data to 'DSD-over-USB' spec. - info

2012-02-03 Thread Max Kellermann
On 2012/02/03 16:17, Jurgen Kramer wrote: > It output either 24 or 32-bit sample format packed in 32-bits. The > 24-bit format could be removed as most newer devices support 32-bit > sample formats. But these samples are *not* 24 or 32 bit. It is a strange protocol that abuses PCM samples to emb

Re: [Musicpd-dev-team] [PATCH 0/5] Add new decoder for outputting DSD data to 'DSD-over-USB' spec. - info

2012-02-03 Thread Max Kellermann
On 2012/02/03 15:12, Jurgen Kramer wrote: > Hi, > > I hereby sent a series of patches to add my new DSD decoder I talked > about last December. The decoder supports outputting > DSD data over PCM according to the proposed > 'DSD-over-USB' standard by dCS. It reads raw DSD data > from DFF (Philips

[Musicpd-dev-team] [PATCH 5/5] Add new decoder for outputting DSD data to 'DSD-over-USB' spec. - add decoder to mpd (3/3)

2012-02-03 Thread Jurgen Kramer
Final patch. --- Makefile.am |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) Jurgen diff --git a/Makefile.am b/Makefile.am index 00edcfd..c603aa9 100644 --- a/Makefile.am +++ b/Makefile.am @@ -460,6 +460,9 @@ libdecoder_plugins_a_SOURCES = \ src/decoder/dsdiff_decoder_plugin.c \

[Musicpd-dev-team] [PATCH 4/5] Add new decoder for outputting DSD data to 'DSD-over-USB' spec. - add decoder to mpd (2/3)

2012-02-03 Thread Jurgen Kramer
make the new decoder known to the decoder_list --- src/decoder_list.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) Jurgen diff --git a/src/decoder_list.c b/src/decoder_list.c index c987403..6fa4c00 100644 --- a/src/decoder_list.c +++ b/src/decoder_list.c @@ -48,7 +48,7 @@ extern

[Musicpd-dev-team] [PATCH 3/5] Add new decoder for outputting DSD data to 'DSD-over-USB' spec. - add decoder to mpd (1/3)

2012-02-03 Thread Jurgen Kramer
This patch adds the decoder to mpd (part1) --- src/conf.h |1 + src/decoder_list.c |2 ++ 2 files changed, 3 insertions(+), 0 deletions(-) Jurgen diff --git a/src/conf.h b/src/conf.h index 815c739..8f936d3 100644 --- a/src/conf.h +++ b/src/conf.h @@ -75,6 +75,7 @@ #define CONF_

[Musicpd-dev-team] [PATCH 2/5] Add new decoder for outputting DSD data to 'DSD-over-USB' spec. - dsd packer

2012-02-03 Thread Jurgen Kramer
This part of the new decoder actually packs the raw DSD data into 'DSD-over-USB' format. --- src/dsdnative/dsdnative.c | 211 + src/dsdnative/dsdnative.h | 39 2 files changed, 250 insertions(+), 0 deletions(-) create mode 100644 src/dsdna

[Musicpd-dev-team] [PATCH 1/5] Add new decoder for outputting DSD data to 'DSD-over-USB' spec. - decoder files

2012-02-03 Thread Jurgen Kramer
This patch adds a new decoder which support outputting DSD data over PCM according to the proposed 'DSD-over-USB' standard by dCS. It reads raw DSD data from DFF (Philips) and DSF (Sony) formatted DSD files and sends the DSD data packed over PCM to a capable audio device like a DAC. Further

[Musicpd-dev-team] [PATCH 0/5] Add new decoder for outputting DSD data to 'DSD-over-USB' spec. - info

2012-02-03 Thread Jurgen Kramer
Hi, I hereby sent a series of patches to add my new DSD decoder I talked about last December. The decoder supports outputting DSD data over PCM according to the proposed 'DSD-over-USB' standard by dCS. It reads raw DSD data from DFF (Philips) and DSF (Sony) formatted DSD files and sends the DSD da