Files
frameworks_base/media/java/android/media/MediaCodecList.java
Scott Main c06bb7f5b9 additional documentation for media codec info
Change-Id: I3b4e5baccab6da2dfc8dff8d03872bb5b346a4ad
2013-06-14 11:56:15 -07:00

61 lines
1.9 KiB
Java

/*
* Copyright (C) 2012 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package android.media;
import android.media.MediaCodecInfo;
/**
* Allows you to enumerate available codecs, each specified as a {@link MediaCodecInfo} object,
* find a codec supporting a given format and query the capabilities
* of a given codec.
* <p>See {@link MediaCodecInfo} for sample usage.
*/
final public class MediaCodecList {
/**
* Count the number of available codecs.
*/
public static native final int getCodecCount();
public static final MediaCodecInfo getCodecInfoAt(int index) {
if (index < 0 || index > getCodecCount()) {
throw new IllegalArgumentException();
}
return new MediaCodecInfo(index);
}
/* package private */ static native final String getCodecName(int index);
/* package private */ static native final boolean isEncoder(int index);
/* package private */ static native final String[] getSupportedTypes(int index);
/* package private */ static native final MediaCodecInfo.CodecCapabilities
getCodecCapabilities(int index, String type);
/* package private */ static native final int findCodecByName(String codec);
private static native final void native_init();
private MediaCodecList() {}
static {
System.loadLibrary("media_jni");
native_init();
}
}