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
4e909f94
Commit
4e909f94
authored
Oct 03, 2011
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
decoder/dsdiff: new decoder plugin
Doesn't seem to work yet, getting just noise from a test file. Seeking isn't implemented yet.
parent
99f49e26
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
31 additions
and
0 deletions
+31
-0
Makefile.am
Makefile.am
+3
-0
NEWS
NEWS
+1
-0
dsdiff_decoder_plugin.c
src/decoder/dsdiff_decoder_plugin.c
+0
-0
dsdiff_decoder_plugin.h
src/decoder/dsdiff_decoder_plugin.h
+25
-0
decoder_list.c
src/decoder_list.c
+2
-0
No files found.
Makefile.am
View file @
4e909f94
...
...
@@ -490,6 +490,9 @@ DECODER_LIBS = \
DECODER_SRC
=
\
src/decoder/pcm_decoder_plugin.c
\
src/decoder/dsdiff_decoder_plugin.c
\
src/decoder/dsdiff_decoder_plugin.h
\
src/dsd2pcm/dsd2pcm.c src/dsd2pcm/dsd2pcm.h
\
src/decoder_buffer.c
\
src/decoder_plugin.c
\
src/decoder_list.c
...
...
NEWS
View file @
4e909f94
...
...
@@ -13,6 +13,7 @@ ver 0.17 (2011/??/??)
- ffmpeg: drop support for pre-0.5 ffmpeg
- ffmpeg: support libavformat 0.7
- oggflac: delete this obsolete plugin
- dsdiff: new decoder plugin
* output:
- httpd: support for streaming to a DLNA client
- osx: allow user to specify other audio devices
...
...
src/decoder/dsdiff_decoder_plugin.c
0 → 100644
View file @
4e909f94
This diff is collapsed.
Click to expand it.
src/decoder/dsdiff_decoder_plugin.h
0 → 100644
View file @
4e909f94
/*
* Copyright (C) 2003-2011 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_DECODER_DSDIFF_H
#define MPD_DECODER_DSDIFF_H
extern
const
struct
decoder_plugin
dsdiff_decoder_plugin
;
#endif
src/decoder_list.c
View file @
4e909f94
...
...
@@ -24,6 +24,7 @@
#include "conf.h"
#include "mpd_error.h"
#include "decoder/pcm_decoder_plugin.h"
#include "decoder/dsdiff_decoder_plugin.h"
#include <glib.h>
...
...
@@ -70,6 +71,7 @@ const struct decoder_plugin *const decoder_plugins[] = {
#ifdef HAVE_AUDIOFILE
&
audiofile_decoder_plugin
,
#endif
&
dsdiff_decoder_plugin
,
#ifdef HAVE_FAAD
&
faad_decoder_plugin
,
#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