public final class MediaCodecList
extends Object
java.lang.Object | |
↳ | android.media.MediaCodecList |
允许您枚举可用的编解码器,每个指定为 MediaCodecInfo
对象,查找支持给定格式的编解码器并查询给 MediaCodecInfo
解码器的功能。
有关示例用法,请参见 MediaCodecInfo
。
Constants |
|
---|---|
int |
ALL_CODECS 用于 |
int |
REGULAR_CODECS 用于 |
Public constructors |
|
---|---|
MediaCodecList(int kind) 创建一个特定类型的媒体编解码器列表。 |
Public methods |
|
---|---|
final String |
findDecoderForFormat(MediaFormat format) 在媒体编解码器列表中找到支持给定 |
final String |
findEncoderForFormat(MediaFormat format) 在媒体编解码器列表中查找支持给定 |
static final int |
getCodecCount() 此方法在API级别21中已弃用。请改为使用 |
static final MediaCodecInfo |
getCodecInfoAt(int index) 此方法在API级别21中已弃用。请改为使用 |
final MediaCodecInfo[] |
getCodecInfos() 返回媒体编解码器列表的 |
Inherited methods |
|
---|---|
From class java.lang.Object
|
int ALL_CODECS
在MediaCodecList(int)
使用枚举所有编解码器,即使是不适合常规(缓冲区到缓冲区)解码或编码的编解码器。 这些包括编解码器,例如,只能用于特殊输入或输出表面,例如仅安全或隧道编解码器。
常数值:1(0x00000001)
int REGULAR_CODECS
用于MediaCodecList(int)
仅枚举适用于常规(缓冲区到缓冲区)解码或编码的编解码器。 注意:这些是使用现在不推荐使用的静态方法在API 21之前返回的编解码器。
常量值:0(0x00000000)
MediaCodecList (int kind)
创建一个特定类型的媒体编解码器列表。
Parameters | |
---|---|
kind |
int : Either REGULAR_CODECS or ALL_CODECS . |
String findDecoderForFormat (MediaFormat format)
在媒体编解码器列表中找到支持给定 MediaFormat
的解码器。
注意:在LOLLIPOP
, format
不能包含frame rate 。 使用format.setString(MediaFormat.KEY_FRAME_RATE, null)
以格式清除任何现有的帧速率设置。
Parameters | |
---|---|
format |
MediaFormat : A decoder media format with optional feature directives. |
Returns | |
---|---|
String |
the name of a decoder that supports the given format and feature requests, or null if no such codec has been found. |
Throws | |
---|---|
IllegalArgumentException |
if format is not a valid media format. |
NullPointerException |
if format is null. |
String findEncoderForFormat (MediaFormat format)
在媒体编解码器列表中找到支持给定 MediaFormat
的编码器。
注意:在LOLLIPOP
, format
不能包含frame rate 。 使用format.setString(MediaFormat.KEY_FRAME_RATE, null)
清除格式中的任何现有帧速率设置。
Parameters | |
---|---|
format |
MediaFormat : An encoder media format with optional feature directives. |
Returns | |
---|---|
String |
the name of an encoder that supports the given format and feature requests, or null if no such codec has been found. |
Throws | |
---|---|
IllegalArgumentException |
if format is not a valid media format. |
NullPointerException |
if format is null. |
int getCodecCount ()
此方法在API级别21中已弃用。
改为使用getCodecInfos()
。
计算可用(常规)编解码器的数量。
Returns | |
---|---|
int |
也可以看看:
MediaCodecInfo getCodecInfoAt (int index)
此方法在API级别21中已弃用。
改为使用getCodecInfos()
。
返回常规列表中给定 index
的编解码器的 MediaCodecInfo
对象。
Parameters | |
---|---|
index |
int
|
Returns | |
---|---|
MediaCodecInfo |
也可以看看:
MediaCodecInfo[] getCodecInfos ()
返回媒体编解码器列表的 MediaCodecInfo
对象列表。
Returns | |
---|---|
MediaCodecInfo[] |