Language

MediaCodecListKind Enum

Definition

Enumerates values returned by the AllCodecs, and RegularCodecs members and taken as a parameter of the F:Android.Media.MediaCodecList..ctor member.

public enum MediaCodecListKind
type MediaCodecListKind = 
Inheritance
MediaCodecListKind

Fields

Name Value Description
RegularCodecs 0

Use in MediaCodecList(int) to enumerate only codecs that are suitable for regular (buffer-to-buffer) decoding or encoding. NOTE: These are the codecs that are returned prior to API 21, using the now deprecated static methods.

Android reference for android.media.MediaCodecList.REGULAR_CODECS.

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.

AllCodecs 1

Use in MediaCodecList(int) to enumerate all codecs, even ones that are not suitable for regular (buffer-to-buffer) decoding or encoding. These include codecs, for example, that only work with special input or output surfaces, such as secure-only or tunneled-only codecs.

Android reference for android.media.MediaCodecList.ALL_CODECS.

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.

Remarks

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.

Applies to