vx_evt_sessiongroup_updated
Reference the Vivox Core SDK API.
Read time 2 minutesLast updated 20 hours ago
Sent when a session group is updated.
#include <VxcEvents.h>Public Attributes
Name | |
|---|---|
| vx_evt_base_t | base The common properties for all events. |
| VX_HANDLE | sessiongroup_handle The handle returned from a successful session group create request. |
| int | in_delayed_playback |
| double | current_playback_speed |
| vx_sessiongroup_playback_mode | current_playback_mode |
| int | playback_paused |
| int | loop_buffer_capacity |
| int | first_loop_frame |
| int | total_loop_frames_captured |
| int | last_loop_frame_played |
| char * | current_recording_filename |
| int | total_recorded_frames |
| long long | first_frame_timestamp_us |
Public Attributes Documentation
variable base
The common properties for all events.vx_evt_base_t base;
variable sessiongroup_handle
The handle returned from a successful session group create request.VX_HANDLE sessiongroup_handle;
variable in_delayed_playback
Deprecated: This is deprecated and should not be used. Indicates whether in delayed playback. When in delayed playback, the mic is not active.int in_delayed_playback;
variable current_playback_speed
Deprecated: This is deprecated and should not be used. Indicates the playback speed.double current_playback_speed;
variable current_playback_mode
Deprecated: This is deprecated and should not be used. Indicates the playback mode.vx_sessiongroup_playback_mode current_playback_mode;
variable playback_paused
Deprecated: This is deprecated and should not be used. Indicates whether playback is paused.int playback_paused;
variable loop_buffer_capacity
Deprecated: This is deprecated and should not be used. The total capacity of the loop buffer.int loop_buffer_capacity;
variable first_loop_frame
Deprecated: This is deprecated and should not be used. The sequence number of first frame in the loop buffer. This starts increasing when the loop buffer fills.int first_loop_frame;
variable total_loop_frames_captured
Deprecated: This is deprecated and should not be used. The total number of frames captured to the loop buffer since recording started. This peaks when the loop buffer fills.int total_loop_frames_captured;
variable last_loop_frame_played
Deprecated: This is deprecated and should not be used. The sequence number of the last frame played.int last_loop_frame_played;
variable current_recording_filename
Deprecated: This is deprecated and should not be used. The filename currently being recorded. This is empty if no file is being recorded.char * current_recording_filename;
variable total_recorded_frames
Deprecated: This is deprecated and should not be used. The total number of frames recorded to file.int total_recorded_frames;
variable first_frame_timestamp_us
Note: This is for file-based recording only.long long first_frame_timestamp_us;