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
f4911353
Commit
f4911353
authored
May 02, 2016
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
decoder/Reader: new Reader implementation
parent
a7ced005
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
78 additions
and
0 deletions
+78
-0
Makefile.am
Makefile.am
+1
-0
Reader.cxx
src/decoder/Reader.cxx
+28
-0
Reader.hxx
src/decoder/Reader.hxx
+49
-0
No files found.
Makefile.am
View file @
f4911353
...
@@ -900,6 +900,7 @@ endif
...
@@ -900,6 +900,7 @@ endif
libdecoder_a_SOURCES
=
\
libdecoder_a_SOURCES
=
\
src/decoder/plugins/PcmDecoderPlugin.cxx
\
src/decoder/plugins/PcmDecoderPlugin.cxx
\
src/decoder/plugins/PcmDecoderPlugin.hxx
\
src/decoder/plugins/PcmDecoderPlugin.hxx
\
src/decoder/Reader.cxx src/decoder/Reader.hxx
\
src/decoder/DecoderBuffer.cxx src/decoder/DecoderBuffer.hxx
\
src/decoder/DecoderBuffer.cxx src/decoder/DecoderBuffer.hxx
\
src/decoder/DecoderPlugin.cxx
\
src/decoder/DecoderPlugin.cxx
\
src/decoder/DecoderList.cxx src/decoder/DecoderList.hxx
src/decoder/DecoderList.cxx src/decoder/DecoderList.hxx
...
...
src/decoder/Reader.cxx
0 → 100644
View file @
f4911353
/*
* Copyright 2003-2016 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.
*/
#include "config.h"
#include "Reader.hxx"
#include "DecoderAPI.hxx"
size_t
DecoderReader
::
Read
(
void
*
data
,
size_t
size
)
{
return
decoder_read
(
decoder
,
is
,
data
,
size
);
}
src/decoder/Reader.hxx
0 → 100644
View file @
f4911353
/*
* Copyright 2003-2016 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_READER_HXX
#define MPD_DECODER_READER_HXX
#include "check.h"
#include "fs/io/Reader.hxx"
#include "Compiler.h"
struct
Decoder
;
class
InputStream
;
/**
* A wrapper for decoder_read() which implements the #Reader
* interface.
*/
class
DecoderReader
final
:
public
Reader
{
Decoder
*
const
decoder
;
InputStream
&
is
;
public
:
DecoderReader
(
Decoder
&
_decoder
,
InputStream
&
_is
)
:
decoder
(
&
_decoder
),
is
(
_is
)
{}
DecoderReader
(
Decoder
*
_decoder
,
InputStream
&
_is
)
:
decoder
(
_decoder
),
is
(
_is
)
{}
/* virtual methods from class Reader */
size_t
Read
(
void
*
data
,
size_t
size
)
override
;
};
#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