public static final enum

AudioDevice.Format

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.amazonaws.ivs.broadcast.AudioDevice.Format

Class Overview

Audio data representations

Summary

Enum Values
AudioDevice.Format  FLOAT32  16-bit signed integer, planar. 
AudioDevice.Format  FLOAT32_PLANAR  32-bit floating point, interleaved. 
AudioDevice.Format  FLOAT64  32-bit signed integer, planar. 
AudioDevice.Format  FLOAT64_PLANAR  64-bit floating point, interleaved. 
AudioDevice.Format  INT16   
AudioDevice.Format  INT16_PLANAR  16-bit signed integer, interleaved. 
AudioDevice.Format  INT32  32-bit floating point, planar. 
AudioDevice.Format  INT32_PLANAR  32-bit signed integer, interleaved. 
Public Methods
static AudioDevice.Format valueOf(String name)
final static Format[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final AudioDevice.Format FLOAT32

16-bit signed integer, planar. For example, buffer layout is [LLLRRR]

public static final AudioDevice.Format FLOAT32_PLANAR

32-bit floating point, interleaved.

public static final AudioDevice.Format FLOAT64

32-bit signed integer, planar.

public static final AudioDevice.Format FLOAT64_PLANAR

64-bit floating point, interleaved.

public static final AudioDevice.Format INT16

public static final AudioDevice.Format INT16_PLANAR

16-bit signed integer, interleaved. For example, buffer layout is [LRLRLR]

public static final AudioDevice.Format INT32

32-bit floating point, planar.

public static final AudioDevice.Format INT32_PLANAR

32-bit signed integer, interleaved.

Public Methods

public static AudioDevice.Format valueOf (String name)

public static final Format[] values ()