Searched refs:nativeMask (Results 1 – 2 of 2) sorted by relevance
229 static inline int outChannelMaskFromNative(audio_channel_mask_t nativeMask) in outChannelMaskFromNative() argument231 switch (nativeMask) { in outChannelMaskFromNative()235 return (int)nativeMask<<2; in outChannelMaskFromNative()249 static inline int inChannelMaskFromNative(audio_channel_mask_t nativeMask) in inChannelMaskFromNative() argument251 switch (nativeMask) { in inChannelMaskFromNative()255 return (int)nativeMask; in inChannelMaskFromNative()
597 public static int convertNativeChannelMaskToOutMask(int nativeMask) { in convertNativeChannelMaskToOutMask() argument598 return (nativeMask << 2); in convertNativeChannelMaskToOutMask()