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
b4e4bdcd
Commit
b4e4bdcd
authored
Mar 29, 2017
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lib/alsa/Version: wrapper for snd_asoundlib_version()
parent
dae8b785
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
95 additions
and
0 deletions
+95
-0
Makefile.am
Makefile.am
+1
-0
Version.cxx
src/lib/alsa/Version.cxx
+52
-0
Version.hxx
src/lib/alsa/Version.hxx
+42
-0
No files found.
Makefile.am
View file @
b4e4bdcd
...
...
@@ -257,6 +257,7 @@ UPNP_SOURCES = \
src/lib/upnp/Action.hxx
ALSA_SOURCES
=
\
src/lib/alsa/Version.cxx src/lib/alsa/Version.hxx
\
src/lib/alsa/NonBlock.cxx src/lib/alsa/NonBlock.hxx
#
...
...
src/lib/alsa/Version.cxx
0 → 100644
View file @
b4e4bdcd
/*
* Copyright 2003-2017 The Music Player Daemon Project
* http://www.musicpd.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include "Version.hxx"
#include <alsa/asoundlib.h>
gcc_pure
static
uint_least32_t
ParseAlsaVersion
(
const
char
*
p
)
{
char
*
endptr
;
unsigned
long
major
,
minor
=
0
,
subminor
=
0
;
major
=
strtoul
(
p
,
&
endptr
,
10
);
if
(
*
endptr
==
'.'
)
{
p
=
endptr
+
1
;
minor
=
strtoul
(
p
,
&
endptr
,
10
);
if
(
*
endptr
==
'.'
)
{
p
=
endptr
+
1
;
subminor
=
strtoul
(
p
,
nullptr
,
10
);
}
}
return
MakeAlsaVersion
(
major
,
minor
,
subminor
);
}
uint_least32_t
GetRuntimeAlsaVersion
()
{
const
char
*
version
=
snd_asoundlib_version
();
if
(
version
==
nullptr
)
return
0
;
return
ParseAlsaVersion
(
version
);
}
src/lib/alsa/Version.hxx
0 → 100644
View file @
b4e4bdcd
/*
* Copyright 2003-2017 The Music Player Daemon Project
* http://www.musicpd.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef MPD_ALSA_VERSION_HXX
#define MPD_ALSA_VERSION_HXX
#include "Compiler.h"
#include <stdint.h>
static
constexpr
uint_least32_t
MakeAlsaVersion
(
uint_least32_t
major
,
uint_least32_t
minor
,
uint_least32_t
subminor
)
{
return
(
major
<<
16
)
|
(
minor
<<
8
)
|
subminor
;
}
/**
* Wrapper for snd_asoundlib_version() which translates the resulting
* string to an integer constructed with MakeAlsaVersion().
*/
gcc_const
uint_least32_t
GetRuntimeAlsaVersion
();
#endif
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