MediaCodecInfo.AudioCapabilities.MaxInputChannelCount Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns the maximum number of input channels supported.
public int MaxInputChannelCount { [Android.Runtime.Register("getMaxInputChannelCount", "()I", "")] get; }
[<get: Android.Runtime.Register("getMaxInputChannelCount", "()I", "")>]
member this.MaxInputChannelCount : int
Property Value
- Attributes
Remarks
Returns the maximum number of input channels supported.
Through android.os.Build.VERSION_CODES#R
, this method indicated support for any number of input channels between 1 and this maximum value.
As of android.os.Build.VERSION_CODES#S
, the implied lower limit of 1 channel is no longer valid. As of android.os.Build.VERSION_CODES#S
, #getMaxInputChannelCount
is superseded by #getInputChannelCountRanges
, which returns an array of ranges of channels. The #getMaxInputChannelCount
method will return the highest value in the ranges returned by #getInputChannelCountRanges
Java documentation for android.media.MediaCodecInfo.AudioCapabilities.getMaxInputChannelCount()
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.