android_external_alsa-lib/include/version.h
Konsta 15c7354c4e Merge tag 'v1.2.16.1' of https://github.com/alsa-project/alsa-lib into android-16.0
Release v1.2.16.1

Core
 - Release v1.2.16.1
Use Case Manager API
 - ucm: move optional file trace into uc_mgr_config_load_into
 - ucm: pass optional flag to config load functions to suppress spurious errors
Configuration
 - conf: add missing return value check in parse_def()

Signed-off-by: Jaroslav Kysela <perex@perex.cz>
2026-06-18 13:45:41 +03:00

13 lines
552 B
C

/*
* version.h
*/
#define SND_LIB_MAJOR 1 /**< major number of library version */
#define SND_LIB_MINOR 2 /**< minor number of library version */
#define SND_LIB_SUBMINOR 16 /**< subminor number of library version */
#define SND_LIB_EXTRAVER 1000000 /**< extra version number, used mainly for betas */
/** library version */
#define SND_LIB_VER(maj, min, sub) (((maj)<<16)|((min)<<8)|(sub))
#define SND_LIB_VERSION SND_LIB_VER(SND_LIB_MAJOR, SND_LIB_MINOR, SND_LIB_SUBMINOR)
/** library version (string) */
#define SND_LIB_VERSION_STR "1.2.16.1"