Searched defs:PcmFormat (Results 1 – 2 of 2) sorted by relevance
65 struct PcmFormat { struct66 using Type = void;67 static constexpr pcm_format kFormat = F;68 static constexpr int32_t kMax = 0;69 static constexpr int32_t kMin = 0;73 struct PcmFormat<PCM_FORMAT_S16_LE> { struct74 using Type = int16_t;75 static constexpr pcm_format kFormat = PCM_FORMAT_S16_LE;76 static constexpr Type kMax = std::numeric_limits<Type>::max();77 static constexpr Type kMin = std::numeric_limits<Type>::min();[all …]
42 enum class PcmFormat { enum