ParamsHolder
The ParamsHolder model model allows the application to:
- Set video codecs
- Enable Simulcast transmission
- Create conferences enabled with Dolby Voice
- Build a holder in a native HashMap
Available in the package com.voxeet.sdk.json.internal.ParamsHolder.
Methods
setVideoCodec
▸ setVideoCodec(@NonNull videoCodec
: String): ParamsHolder
Sets video codecs (VP8 or H264) for a specific conference.
Parameters
Name | Type | Description |
---|---|---|
videoCodec | String | non null video codec |
Returns: ParamsHolder - the current instance.
setDolbyVoice
▸ setDolbyVoice(activate
: boolean): ParamsHolder
Creates a conference enabled with Dolby Voice. For more information about Dolby Voice, see this article.
Parameters
Name | Type | Description |
---|---|---|
activate | boolean |
Returns: ParamsHolder
setSimulcast
▸ setSimulcast(state
: boolean): ParamsHolder
Sets the Simulcast transmission for a specific conference.
Parameters
Name | Type | Description |
---|---|---|
state | boolean | use simulcast feature |
Returns: ParamsHolder - the current instance.
build
▸ build(): HashMap<String, Object>
Builds a holder in a native HashMap.
Returns: @NonNull HashMap<String, Object> - the created map.