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
005e6913
Commit
005e6913
authored
Oct 23, 2018
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
decoder/fluidsynth: adapt to API change in version 2.0
Closes #360
parent
61eff1cd
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
NEWS
NEWS
+2
-0
FluidsynthDecoderPlugin.cxx
src/decoder/plugins/FluidsynthDecoderPlugin.cxx
+6
-1
No files found.
NEWS
View file @
005e6913
...
...
@@ -6,6 +6,8 @@ ver 0.20.22 (not yet released)
- fix broken command "list ... group"
* storage
- curl: URL-encode paths
* decoder
- fluidsynth: adapt to API change in version 2.0
* Android
- now runs as a service
- add button to start/stop MPD
...
...
src/decoder/plugins/FluidsynthDecoderPlugin.cxx
View file @
005e6913
...
...
@@ -64,7 +64,12 @@ fluidsynth_level_to_mpd(enum fluid_log_level level)
* logging library.
*/
static
void
fluidsynth_mpd_log_function
(
int
level
,
char
*
message
,
gcc_unused
void
*
data
)
fluidsynth_mpd_log_function
(
int
level
,
#if FLUIDSYNTH_VERSION_MAJOR >= 2
const
#endif
char
*
message
,
void
*
)
{
Log
(
fluidsynth_domain
,
fluidsynth_level_to_mpd
(
fluid_log_level
(
level
)),
...
...
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