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
e10c287c
Commit
e10c287c
authored
Aug 30, 2014
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
PlayerControl: make settings "const"
parent
ce42d53a
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
5 deletions
+7
-5
PlayerControl.hxx
src/PlayerControl.hxx
+2
-2
run_output.cxx
test/run_output.cxx
+5
-3
No files found.
src/PlayerControl.hxx
View file @
e10c287c
...
...
@@ -98,9 +98,9 @@ struct PlayerControl {
MultipleOutputs
&
outputs
;
unsigned
buffer_chunks
;
const
unsigned
buffer_chunks
;
unsigned
int
buffered_before_play
;
const
unsigned
buffered_before_play
;
/**
* The handle of the player thread.
...
...
test/run_output.cxx
View file @
e10c287c
...
...
@@ -55,9 +55,11 @@ filter_plugin_by_name(gcc_unused const char *name)
PlayerControl
::
PlayerControl
(
PlayerListener
&
_listener
,
MultipleOutputs
&
_outputs
,
gcc_unused
unsigned
_buffer_chunks
,
gcc_unused
unsigned
_buffered_before_play
)
:
listener
(
_listener
),
outputs
(
_outputs
)
{}
unsigned
_buffer_chunks
,
unsigned
_buffered_before_play
)
:
listener
(
_listener
),
outputs
(
_outputs
),
buffer_chunks
(
_buffer_chunks
),
buffered_before_play
(
_buffered_before_play
)
{}
PlayerControl
::~
PlayerControl
()
{}
static
AudioOutput
*
...
...
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