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
069a7fe7
Commit
069a7fe7
authored
7 years ago
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
player/Thread: more API documentation
parent
9c8a4585
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletion
+11
-1
Thread.cxx
src/player/Thread.cxx
+11
-1
No files found.
src/player/Thread.cxx
View file @
069a7fe7
...
...
@@ -201,9 +201,13 @@ private:
/**
* The decoder has acknowledged the "START" command (see
* ActivateDecoder()). This function checks if the decoder
* initialization has completed yet.
* initialization has completed yet. If not, it will wait
* some more.
*
* Caller must lock the mutex.
*
* @return false if the decoder has failed, true on success
* (though the decoder startup may or may not yet be finished)
*/
bool
CheckDecoderStartup
();
...
...
@@ -214,6 +218,8 @@ private:
*
* This method does not check for commands. It is only
* allowed to be used while a command is being handled.
*
* @return false if the decoder has failed
*/
bool
WaitDecoderStartup
()
{
const
std
::
lock_guard
<
Mutex
>
lock
(
pc
.
mutex
);
...
...
@@ -270,6 +276,8 @@ private:
* This is the handler for the #PlayerCommand::SEEK command.
*
* The player lock is not held.
*
* @return false if the decoder has failed
*/
bool
SeekDecoder
();
...
...
@@ -320,6 +328,8 @@ private:
* yet, to prevent underruns in the hardware buffers.
*
* The player lock is not held.
*
* @return false on error
*/
bool
SendSilence
();
...
...
This diff is collapsed.
Click to expand it.
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