Most visited

Recently visited

Added in API level 24

OutputConfiguration

public final class OutputConfiguration
extends Object implements Parcelable

java.lang.Object
   ↳ android.hardware.camera2.params.OutputConfiguration


描述摄像机输出的类,其中包含 Surface及其用于创建捕获会话的特定配置。

也可以看看:

Summary

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实例与 Surface

OutputConfiguration(int surfaceGroupId, Surface surface)

OutputConfiguration创建一个带有表面组ID的新实例 Surface

Public methods

int describeContents()

描述此Parcelable实例的封送表示中包含的特殊对象的种类。

boolean equals(Object obj)

检查这个 OutputConfiguration是否等于另一个 OutputConfiguration

Surface getSurface()

得到 Surface与此相关 OutputConfiguration

int getSurfaceGroupId()

获取与此 OutputConfiguration关联的表面组ID。

int hashCode()

返回对象的哈希码值。

void writeToParcel(Parcel dest, int flags)

将此对象平铺到一个包裹中。

Inherited methods

From class java.lang.Object
From interface android.os.Parcelable

Constants

SURFACE_GROUP_ID_NONE

Added in API level 24
int SURFACE_GROUP_ID_NONE

无效的表面组ID。

具有此值的 OutputConfiguration表示包含的曲面不属于任何曲面组。

常量值:-1(0xffffffff)

Fields

CREATOR

Added in API level 24
Creator<OutputConfiguration> CREATOR

Public constructors

OutputConfiguration

Added in API level 24
OutputConfiguration (Surface surface)

创建一个新 OutputConfiguration实例与 Surface

Parameters
surface Surface: A Surface for camera to output to.

此构造函数创建一个默认配置,其表面组ID为 .SURFACE_GROUP_ID_NONE

OutputConfiguration

Added in API level 24
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.

Public methods

describeContents

Added in API level 24
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.

equals

Added in API level 24
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

getSurface

Added in API level 24
Surface getSurface ()

得到 Surface与此相关 OutputConfiguration

Returns
Surface the Surface associated with this OutputConfiguration.

getSurfaceGroupId

Added in API level 24
int getSurfaceGroupId ()

获取与此 OutputConfiguration关联的表面组ID。

Returns
int the surface group ID associated with this OutputConfiguration. The default value is .SURFACE_GROUP_ID_NONE.

hashCode

Added in API level 24
int hashCode ()

返回对象的哈希码值。 为了散列表的好处而支持此方法,例如由HashMap提供的HashMap

hashCode的总合同是:

  • Whenever it is invoked on the same object more than once during an execution of a Java application, the 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.
  • If two objects are equal according to the equals(Object) method, then calling the hashCode method on each of the two objects must produce the same integer result.
  • It is not required that if two objects are unequal according to the 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.

writeToParcel

Added in API level 24
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.

Hooray!