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
eb173360
Commit
eb173360
authored
Jan 31, 2015
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
decoder/sndfile, ...: update API documentation
parent
e2e66404
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
13 additions
and
13 deletions
+13
-13
DecoderPlugin.hxx
src/decoder/DecoderPlugin.hxx
+1
-1
DecoderThread.cxx
src/decoder/DecoderThread.cxx
+2
-2
DsdLib.cxx
src/decoder/plugins/DsdLib.cxx
+2
-2
SndfileDecoderPlugin.cxx
src/decoder/plugins/SndfileDecoderPlugin.cxx
+1
-1
WavpackDecoderPlugin.cxx
src/decoder/plugins/WavpackDecoderPlugin.cxx
+1
-1
Init.hxx
src/input/Init.hxx
+2
-2
TextInputStream.hxx
src/input/TextInputStream.hxx
+2
-2
PlaylistRegistry.hxx
src/playlist/PlaylistRegistry.hxx
+1
-1
PlaylistStream.hxx
src/playlist/PlaylistStream.hxx
+1
-1
No files found.
src/decoder/DecoderPlugin.hxx
View file @
eb173360
...
...
@@ -53,7 +53,7 @@ struct DecoderPlugin {
void
(
*
finish
)(
void
);
/**
* Decode a stream (data read from an #
input_s
tream object).
* Decode a stream (data read from an #
InputS
tream object).
*
* Either implement this method or file_decode(). If
* possible, it is recommended to implement this method,
...
...
src/decoder/DecoderThread.cxx
View file @
eb173360
...
...
@@ -60,14 +60,14 @@ decoder_command_finished_locked(DecoderControl &dc)
}
/**
* Opens the input stream with
input_s
tream::Open(), and waits until
* Opens the input stream with
InputS
tream::Open(), and waits until
* the stream gets ready. If a decoder STOP command is received
* during that, it cancels the operation (but does not close the
* stream).
*
* Unlock the decoder before calling this function.
*
* @return an
input_s
tream on success or if #DecoderCommand::STOP is
* @return an
InputS
tream on success or if #DecoderCommand::STOP is
* received, nullptr on error
*/
static
InputStream
*
...
...
src/decoder/plugins/DsdLib.cxx
View file @
eb173360
...
...
@@ -48,7 +48,7 @@ DsdId::Equals(const char *s) const
}
/**
* Skip the #
input_s
tream to the specified offset.
* Skip the #
InputS
tream to the specified offset.
*/
bool
dsdlib_skip_to
(
Decoder
*
decoder
,
InputStream
&
is
,
...
...
@@ -64,7 +64,7 @@ dsdlib_skip_to(Decoder *decoder, InputStream &is,
}
/**
* Skip some bytes from the #
input_s
tream.
* Skip some bytes from the #
InputS
tream.
*/
bool
dsdlib_skip
(
Decoder
*
decoder
,
InputStream
&
is
,
...
...
src/decoder/plugins/SndfileDecoderPlugin.cxx
View file @
eb173360
...
...
@@ -125,7 +125,7 @@ sndfile_vio_tell(void *user_data)
}
/**
* This SF_VIRTUAL_IO implementation wraps MPD's #
input_s
tream to a
* This SF_VIRTUAL_IO implementation wraps MPD's #
InputS
tream to a
* libsndfile stream.
*/
static
SF_VIRTUAL_IO
vio
=
{
...
...
src/decoder/plugins/WavpackDecoderPlugin.cxx
View file @
eb173360
...
...
@@ -322,7 +322,7 @@ wavpack_scan_file(Path path_fs,
}
/*
*
mpd input_s
tream <=> WavpackStreamReader wrapper callbacks
*
#InputS
tream <=> WavpackStreamReader wrapper callbacks
*/
/* This struct is needed for per-stream last_byte storage. */
...
...
src/input/Init.hxx
View file @
eb173360
...
...
@@ -23,13 +23,13 @@
class
Error
;
/**
* Initializes this library and all
input_s
tream implementations.
* Initializes this library and all
#InputS
tream implementations.
*/
bool
input_stream_global_init
(
Error
&
error
);
/**
* Deinitializes this library and all
input_s
tream implementations.
* Deinitializes this library and all
#InputS
tream implementations.
*/
void
input_stream_global_finish
(
void
);
...
...
src/input/TextInputStream.hxx
View file @
eb173360
...
...
@@ -30,10 +30,10 @@ class TextInputStream {
public
:
/**
* Wraps an existing #
input_s
tream object into a #TextInputStream,
* Wraps an existing #
InputS
tream object into a #TextInputStream,
* to read its contents as text lines.
*
* @param _is an open #
input_s
tream object
* @param _is an open #
InputS
tream object
*/
explicit
TextInputStream
(
InputStream
&
_is
)
:
is
(
_is
)
{}
...
...
src/playlist/PlaylistRegistry.hxx
View file @
eb173360
...
...
@@ -57,7 +57,7 @@ playlist_list_open_stream_suffix(InputStream &is, const char *suffix);
/**
* Opens a playlist from an input stream.
*
* @param is an #
input_s
tream object which is open and ready
* @param is an #
InputS
tream object which is open and ready
* @param uri optional URI which was used to open the stream; may be
* used to select the appropriate playlist plugin
*/
...
...
src/playlist/PlaylistStream.hxx
View file @
eb173360
...
...
@@ -31,7 +31,7 @@ class Path;
* Opens a playlist from a local file.
*
* @param path the path of the playlist file
* @param is_r on success, an
input_s
tream object is returned here,
* @param is_r on success, an
#InputS
tream object is returned here,
* which must be closed after the playlist_provider object is freed
* @return a playlist, or nullptr on error
*/
...
...
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