public final class OutputConfiguration
extends Object
implements Parcelable
java.lang.Object | |
↳ | android.hardware.camera2.params.OutputConfiguration |
描述摄像机输出的类,其中包含 Surface
及其用于创建捕获会话的特定配置。
Constants |
|
---|---|
int |
SURFACE_GROUP_ID_NONE 无效的表面组ID。 |
Inherited constants |
---|
From interface android.os.Parcelable
|
Fields |
|
---|---|
public static final Creator<OutputConfiguration> |
CREATOR |
Public constructors |
|
---|---|
OutputConfiguration(Surface surface) 创建一个新 |
|
OutputConfiguration(int surfaceGroupId, Surface surface) 用 |
Public methods |
|
---|---|
int |
describeContents() 描述此Parcelable实例的封送表示中包含的特殊对象的种类。 |
boolean |
equals(Object obj) 检查这个 |
Surface |
getSurface() 得到 |
int |
getSurfaceGroupId() 获取与此 |
int |
hashCode() 返回对象的哈希码值。 |
void |
writeToParcel(Parcel dest, int flags) 将此对象平铺到一个包裹中。 |
Inherited methods |
|
---|---|
From class java.lang.Object
|
|
From interface android.os.Parcelable
|
int SURFACE_GROUP_ID_NONE
无效的表面组ID。
具有此值的 OutputConfiguration
表示包含的曲面不属于任何曲面组。
常量值:-1(0xffffffff)
OutputConfiguration (Surface surface)
创建一个新 OutputConfiguration
实例与 Surface
。
Parameters | |
---|---|
surface |
Surface : A Surface for camera to output to. 此构造函数创建一个默认配置,其表面组ID为 |
OutputConfiguration (int surfaceGroupId, Surface surface)
用 OutputConfiguration
创建一个带有表面组ID的新实例 Surface
。
表面组ID用于标识此输出表面属于哪个表面组。 表面组是一组输出表面,不打算同时接收摄像机输出缓冲流。 CameraDevice
可能能够共享同一表面组中所有表面使用的缓冲区,因此可以减少整个内存占用量。 应用程序只应为不同时流式传输的流设置相同的设置ID。 负ID表示该表面不属于任何表面组。 默认值是.SURFACE_GROUP_ID_NONE
。
例如,具有自适应输出分辨率功能的视频聊天应用程序需要两个(或更多)输出分辨率才能切换分辨率,而不会产生任何输出毛刺。 然而,在任何给定的时间,只有一个输出被激活以最小化输出网络带宽和编码开销。 为节省内存,应用程序应将视频输出设置为具有相同的非负数组ID,以便摄像机设备可以为交替输出共享相同的内存区域。
在相同的捕获请求中包含具有相同组ID的输出流并不是错误,但是由此产生的内存消耗可能会高于两个流不在同一表面组中的情况,特别是如果输出具有实质性不同的尺寸。
Parameters | |
---|---|
surfaceGroupId |
int : A group ID for this output, used for sharing memory between multiple outputs. |
surface |
Surface : A Surface for camera to output to. |
int describeContents ()
描述此Parcelable实例的封送表示中包含的特殊对象的种类。 例如,如果对象将在writeToParcel(Parcel, int)
的输出中包含writeToParcel(Parcel, int)
,则此方法的返回值必须包含CONTENTS_FILE_DESCRIPTOR
位。
Returns | |
---|---|
int |
a bitmask indicating the set of special object types marshaled by this Parcelable object instance. |
boolean equals (Object obj)
检查这个 OutputConfiguration
是否等于另一个 OutputConfiguration
。
只有当创建输出配置时的底层表面,表面属性(宽度,高度,格式,数据空间)和所有其他配置参数相等时,两个输出配置才相等。
Parameters | |
---|---|
obj |
Object : the reference object with which to compare. |
Returns | |
---|---|
boolean |
true if the objects were equal, false otherwise |
Surface getSurface ()
得到 Surface
与此相关 OutputConfiguration
。
Returns | |
---|---|
Surface |
the Surface associated with this OutputConfiguration . |
int getSurfaceGroupId ()
获取与此 OutputConfiguration
关联的表面组ID。
Returns | |
---|---|
int |
the surface group ID associated with this OutputConfiguration . The default value is .SURFACE_GROUP_ID_NONE . |
int hashCode ()
返回对象的哈希码值。 为了散列表的好处而支持此方法,例如由HashMap
提供的HashMap
。
hashCode
的总合同是:
hashCode
method must consistently return the same integer, provided no information used in equals
comparisons on the object is modified. This integer need not remain consistent from one execution of an application to another execution of the same application. equals(Object)
method, then calling the hashCode
method on each of the two objects must produce the same integer result. equals(java.lang.Object)
method, then calling the hashCode
method on each of the two objects must produce distinct integer results. However, the programmer should be aware that producing distinct integer results for unequal objects may improve the performance of hash tables. 尽可能合理实用,由类Object
定义的hashCode方法确实为不同的对象返回不同的整数。 (这通常通过将对象的内部地址转换为整数来实现,但Java TM编程语言不需要此实现技术。)
Returns | |
---|---|
int |
a hash code value for this object. |
void writeToParcel (Parcel dest, int flags)
将此对象平铺到一个包裹中。
Parameters | |
---|---|
dest |
Parcel : The Parcel in which the object should be written. |
flags |
int : Additional flags about how the object should be written. May be 0 or PARCELABLE_WRITE_RETURN_VALUE . |