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
a8568d72
Commit
a8568d72
authored
6 years ago
by
Max Kellermann
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'v0.20.x'
parents
43a43c1e
6522d2f7
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
22 additions
and
0 deletions
+22
-0
NEWS
NEWS
+6
-0
DsdiffDecoderPlugin.cxx
src/decoder/plugins/DsdiffDecoderPlugin.cxx
+2
-0
DsfDecoderPlugin.cxx
src/decoder/plugins/DsfDecoderPlugin.cxx
+2
-0
AlsaInputPlugin.cxx
src/input/plugins/AlsaInputPlugin.cxx
+6
-0
AlsaOutputPlugin.cxx
src/output/plugins/AlsaOutputPlugin.cxx
+6
-0
No files found.
NEWS
View file @
a8568d72
...
@@ -31,6 +31,12 @@ ver 0.21 (not yet released)
...
@@ -31,6 +31,12 @@ ver 0.21 (not yet released)
- opus: support for sending metadata using ogg stream chaining
- opus: support for sending metadata using ogg stream chaining
* require GCC 5.0
* require GCC 5.0
ver 0.20.20 (not yet released)
* protocol
- fix "modified-since" filter regression
* decoder
- dsdiff, dsf: support more MIME types
ver 0.20.19 (2018/04/26)
ver 0.20.19 (2018/04/26)
* protocol
* protocol
- validate absolute seek time, reject negative values
- validate absolute seek time, reject negative values
...
...
This diff is collapsed.
Click to expand it.
src/decoder/plugins/DsdiffDecoderPlugin.cxx
View file @
a8568d72
...
@@ -485,6 +485,8 @@ static const char *const dsdiff_suffixes[] = {
...
@@ -485,6 +485,8 @@ static const char *const dsdiff_suffixes[] = {
static
const
char
*
const
dsdiff_mime_types
[]
=
{
static
const
char
*
const
dsdiff_mime_types
[]
=
{
"application/x-dff"
,
"application/x-dff"
,
"audio/x-dff"
,
"audio/x-dsd"
,
nullptr
nullptr
};
};
...
...
This diff is collapsed.
Click to expand it.
src/decoder/plugins/DsfDecoderPlugin.cxx
View file @
a8568d72
...
@@ -358,6 +358,8 @@ static const char *const dsf_suffixes[] = {
...
@@ -358,6 +358,8 @@ static const char *const dsf_suffixes[] = {
static
const
char
*
const
dsf_mime_types
[]
=
{
static
const
char
*
const
dsf_mime_types
[]
=
{
"application/x-dsf"
,
"application/x-dsf"
,
"audio/x-dsf"
,
"audio/x-dsd"
,
nullptr
nullptr
};
};
...
...
This diff is collapsed.
Click to expand it.
src/input/plugins/AlsaInputPlugin.cxx
View file @
a8568d72
...
@@ -260,6 +260,12 @@ AlsaInputStream::Recover(int err)
...
@@ -260,6 +260,12 @@ AlsaInputStream::Recover(int err)
/* this is no error, so just keep running */
/* this is no error, so just keep running */
err
=
0
;
err
=
0
;
break
;
break
;
default
:
/* this default case is just here to work around
-Wswitch due to SND_PCM_STATE_PRIVATE1 (libasound
1.1.6) */
break
;
}
}
...
...
This diff is collapsed.
Click to expand it.
src/output/plugins/AlsaOutputPlugin.cxx
View file @
a8568d72
...
@@ -706,6 +706,12 @@ AlsaOutput::Recover(int err) noexcept
...
@@ -706,6 +706,12 @@ AlsaOutput::Recover(int err) noexcept
case
SND_PCM_STATE_DRAINING
:
case
SND_PCM_STATE_DRAINING
:
err
=
0
;
err
=
0
;
break
;
break
;
default
:
/* this default case is just here to work around
-Wswitch due to SND_PCM_STATE_PRIVATE1 (libasound
1.1.6) */
break
;
}
}
return
err
;
return
err
;
...
...
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