mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-07-19 15:29:08 +02:00

Changelog: ========= - Fixed Mixer.getvolume() returning outdated value - Fixed PCM crashing with some sample formats due to buffer size miscalculation - Fixed PCM.read() ignoring overruns (regression in 0.10.0) - Reverted to PCM.write() not throwing an exception on playback buffer underrun; instead, return -EPIPE like PCM.read() does on overrun - Added PCM.avail() and PCM.polldescriptors_revents() functions - Added nominal_bits and physical_bits entries to PCM.info()'s return value - Added Python type hint file, and adjusted documentation accordingly -Improvements to the examples, in particular isine.py Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
13 lines
313 B
BlitzBasic
13 lines
313 B
BlitzBasic
SUMMARY = "ALSA bindings"
|
|
SECTION = "devel/python"
|
|
LICENSE = "PSF-2.0"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=1a3b161aa0fcec32a0c8907a2219ad9d"
|
|
|
|
inherit pypi setuptools3
|
|
|
|
SRC_URI[sha256sum] = "a78a9dca33524b2c9064b34e21f5ab874272313cf324a9a77592f396a5e0fddc"
|
|
|
|
DEPENDS += "alsa-lib"
|
|
|
|
RDEPENDS:${PN} += "libasound"
|