mirror of
https://github.com/kavishdevar/librepods.git
synced 2026-02-01 15:49:10 +00:00
18 lines
442 B
Python
18 lines
442 B
Python
class NoiseCancellation:
|
|
OFF = b"\x01"
|
|
ON = b"\x02"
|
|
TRANSPARENCY = b"\x03"
|
|
ADAPTIVE = b"\x04"
|
|
|
|
class ConversationAwareness:
|
|
OFF = b"\x02"
|
|
ON = b"\x01"
|
|
|
|
class Capabilites:
|
|
NOISE_CANCELLATION = b"\x0d"
|
|
CONVERSATION_AWARENESS = b"\x28"
|
|
CUSTOMIZABLE_ADAPTIVE_TRANSPARENCY = b"\x01\x02"
|
|
EAR_DETECTION = b"\x06"
|
|
|
|
NoiseCancellation = NoiseCancellation
|
|
ConversationAwareness = ConversationAwareness |