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
ec52b134
Commit
ec52b134
authored
Oct 14, 2021
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
player/CrossFade: add method IsEnabled()
parent
cf6ca1b0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
CrossFade.cxx
src/player/CrossFade.cxx
+2
-2
CrossFade.hxx
src/player/CrossFade.hxx
+4
-0
No files found.
src/player/CrossFade.cxx
View file @
ec52b134
...
@@ -96,8 +96,8 @@ CrossFadeSettings::Calculate(SignedSongTime total_time,
...
@@ -96,8 +96,8 @@ CrossFadeSettings::Calculate(SignedSongTime total_time,
{
{
unsigned
int
chunks
=
0
;
unsigned
int
chunks
=
0
;
if
(
total_time
.
IsNegative
()
||
if
(
!
IsEnabled
()
||
duration
<=
FloatDuration
::
zero
()
||
total_time
.
IsNegative
()
||
duration
>=
std
::
chrono
::
duration_cast
<
FloatDuration
>
(
total_time
)
||
duration
>=
std
::
chrono
::
duration_cast
<
FloatDuration
>
(
total_time
)
||
/* we can't crossfade when the audio formats are different */
/* we can't crossfade when the audio formats are different */
af
!=
old_format
)
af
!=
old_format
)
...
...
src/player/CrossFade.hxx
View file @
ec52b134
...
@@ -39,6 +39,10 @@ struct CrossFadeSettings {
...
@@ -39,6 +39,10 @@ struct CrossFadeSettings {
*/
*/
FloatDuration
mixramp_delay
{
-
1
};
FloatDuration
mixramp_delay
{
-
1
};
constexpr
bool
IsEnabled
()
const
noexcept
{
return
duration
.
count
()
>
0
;
}
/**
/**
* Calculate how many music pipe chunks should be used for crossfading.
* Calculate how many music pipe chunks should be used for crossfading.
*
*
...
...
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