Home
last modified time | relevance | path

Searched refs:nativeMask (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/core/jni/
Dandroid_media_AudioFormat.h244 static inline int outChannelMaskFromNative(audio_channel_mask_t nativeMask) in outChannelMaskFromNative() argument
246 switch (nativeMask) { in outChannelMaskFromNative()
250 return (int)nativeMask<<2; in outChannelMaskFromNative()
264 static inline int inChannelMaskFromNative(audio_channel_mask_t nativeMask) in inChannelMaskFromNative() argument
266 switch (nativeMask) { in inChannelMaskFromNative()
270 return (int)nativeMask; in inChannelMaskFromNative()
/frameworks/base/media/java/android/media/
DAudioFormat.java722 public static int convertNativeChannelMaskToOutMask(int nativeMask) { in convertNativeChannelMaskToOutMask() argument
723 return (nativeMask << 2); in convertNativeChannelMaskToOutMask()