31class RemoteParticipant;
33class LocalTrackPublication;
34class RemoteTrackPublication;
35class TrackPublication;
102 std::vector<std::uint8_t>
data;
127 std::optional<std::string>
sid;
202 } content_type = ContentType::None;
228 std::optional<std::string>
name;
246 std::vector<std::uint8_t>
iv;
505 std::vector<std::uint8_t>
data;
639 std::shared_ptr<RemoteDataTrack>
track;
Base class for local and remote room participants.
Definition participant.h:34
Represents a remote participant in a LiveKit room.
Definition remote_participant.h:31
Public API for the LiveKit C++ Client SDK.
Definition audio_frame.h:25
EncryptionState
End-to-end encryption state for a participant.
Definition room_event_types.h:67
TrackSource
Source category for a published track.
Definition track.h:43
DataPacketKind
Type of data packet delivery semantics.
Definition room_event_types.h:59
ConnectionState
Current connection state of the room.
Definition room_event_types.h:49
DisconnectReason
Reason why a participant or room was disconnected.
Definition room_event_types.h:80
@ SipTrunkFailure
SIP (telephony) trunk connection failed.
ConnectionQuality
Overall quality of a participant's connection.
Definition room_event_types.h:41
Fired when the list of active speakers changes.
Definition room_event_types.h:431
std::vector< Participant * > speakers
Participants currently considered active speakers (owned by Room).
Definition room_event_types.h:433
Key/value pair for participant or room attributes.
Definition room_event_types.h:164
std::string value
Attribute value.
Definition room_event_types.h:169
std::string key
Attribute key.
Definition room_event_types.h:166
Audio encoding configuration used when publishing a track.
Definition room_event_types.h:271
std::uint64_t max_bitrate
Maximum target bitrate in bps.
Definition room_event_types.h:273
Fired when a high-level byte stream reader is opened.
Definition room_event_types.h:588
std::string participant_identity
Identity of the participant that opened the stream.
Definition room_event_types.h:593
std::uint64_t reader_handle
Handle to the underlying byte stream reader.
Definition room_event_types.h:590
Fired when a participant's connection quality estimate changes.
Definition room_event_types.h:494
ConnectionQuality quality
New connection quality.
Definition room_event_types.h:499
Participant * participant
Participant whose connection quality changed (owned by Room).
Definition room_event_types.h:496
Fired when the room's connection state changes.
Definition room_event_types.h:531
ConnectionState state
New connection state.
Definition room_event_types.h:533
Fired when a data channel's buffered amount falls below its low threshold.
Definition room_event_types.h:579
std::uint64_t threshold
New threshold value in bytes.
Definition room_event_types.h:584
DataPacketKind kind
Data channel kind (reliable or lossy).
Definition room_event_types.h:581
One chunk of a data stream’s payload.
Definition room_event_types.h:232
std::optional< int > version
Optional version, mirroring header version if applicable.
Definition room_event_types.h:243
std::uint64_t chunk_index
Zero-based index of this chunk.
Definition room_event_types.h:237
std::vector< std::uint8_t > iv
Optional initialization vector for encrypted payloads.
Definition room_event_types.h:246
std::string stream_id
Stream identifier this chunk belongs to.
Definition room_event_types.h:234
std::vector< std::uint8_t > content
Raw chunk content.
Definition room_event_types.h:240
Fired when a data stream chunk is received.
Definition room_event_types.h:561
std::string participant_identity
Identity of the participant that sent the stream.
Definition room_event_types.h:563
DataStreamChunkData chunk
Chunk payload and metadata.
Definition room_event_types.h:566
Trailer metadata for a data stream, sent after all chunks.
Definition room_event_types.h:250
std::string stream_id
Stream identifier.
Definition room_event_types.h:252
std::map< std::string, std::string > attributes
Additional attributes describing the final state of the stream.
Definition room_event_types.h:258
std::string reason
Reason why the stream ended (empty if normal completion).
Definition room_event_types.h:255
Fired when a data stream trailer is received.
Definition room_event_types.h:570
std::string participant_identity
Identity of the participant that sent the stream.
Definition room_event_types.h:572
DataStreamTrailerData trailer
Trailer metadata describing the stream termination.
Definition room_event_types.h:575
Fired when a participant publishes a data track.
Definition room_event_types.h:637
std::shared_ptr< RemoteDataTrack > track
The newly published remote data track.
Definition room_event_types.h:639
Fired when a remote participant unpublishes a data track.
Definition room_event_types.h:643
std::string sid
SID of the track that was unpublished.
Definition room_event_types.h:645
Fired when the room is disconnected.
Definition room_event_types.h:537
DisconnectReason reason
Reason for disconnect, if known.
Definition room_event_types.h:539
Fired when a participant's E2EE state changes.
Definition room_event_types.h:624
EncryptionState state
New encryption state.
Definition room_event_types.h:629
Participant * participant
Local or remote participant whose state changed (owned by Room).
Definition room_event_types.h:626
Fired when a local track is successfully published.
Definition room_event_types.h:338
std::shared_ptr< LocalTrackPublication > publication
Track publication for the local track.
Definition room_event_types.h:340
std::shared_ptr< Track > track
The published local track.
Definition room_event_types.h:343
Fired when a local track gets its first subscriber.
Definition room_event_types.h:353
std::shared_ptr< Track > track
Subscribed local track.
Definition room_event_types.h:355
Fired when a local track is unpublished.
Definition room_event_types.h:347
std::shared_ptr< LocalTrackPublication > publication
Publication that was unpublished.
Definition room_event_types.h:349
Optional RTP packet-trailer features for published video tracks.
Definition room_event_types.h:277
bool user_timestamp
Embed a user-supplied wall-clock timestamp.
Definition room_event_types.h:279
bool frame_id
Embed a monotonically increasing frame identifier.
Definition room_event_types.h:282
Fired when a participant's attributes change.
Definition room_event_types.h:476
std::vector< AttributeEntry > changed_attributes
Set of attributes that changed (key/value pairs).
Definition room_event_types.h:481
Participant * participant
Participant whose attributes changed (owned by Room).
Definition room_event_types.h:478
Fired when a remote participant joins the room.
Definition room_event_types.h:323
RemoteParticipant * participant
The newly connected remote participant (owned by Room).
Definition room_event_types.h:325
Fired when a remote participant leaves the room.
Definition room_event_types.h:329
RemoteParticipant * participant
The participant that disconnected (owned by Room).
Definition room_event_types.h:331
DisconnectReason reason
Reason for the disconnect, if known.
Definition room_event_types.h:334
Fired when a participant's encryption status changes.
Definition room_event_types.h:485
Participant * participant
Participant whose encryption status changed (owned by Room).
Definition room_event_types.h:487
bool is_encrypted
True if the participant is now fully encrypted.
Definition room_event_types.h:490
Fired when a participant's name changes.
Definition room_event_types.h:464
std::string old_name
Previous name.
Definition room_event_types.h:469
std::string new_name
New name.
Definition room_event_types.h:472
Participant * participant
Participant whose name changed (owned by Room).
Definition room_event_types.h:466
Fired when a batch of participants has been updated.
Definition room_event_types.h:618
std::vector< Participant * > participants
Participants updated in this event (owned by Room).
Definition room_event_types.h:620
Fired after successfully reconnecting.
Definition room_event_types.h:546
Fired just before attempting to reconnect.
Definition room_event_types.h:543
Fired when the room has reached end-of-stream (no more events).
Definition room_event_types.h:549
Snapshot of core room information.
Definition room_event_types.h:125
std::string name
Room name.
Definition room_event_types.h:130
std::uint32_t num_participants
Approximate number of participants (eventually consistent).
Definition room_event_types.h:154
std::uint32_t departure_timeout
Time (seconds) to keep room open after last standard participant leaves.
Definition room_event_types.h:145
std::uint32_t empty_timeout
Time (seconds) to keep room open if no participants join.
Definition room_event_types.h:142
std::string metadata
Arbitrary application metadata associated with the room.
Definition room_event_types.h:133
bool active_recording
True if the room is currently being recorded.
Definition room_event_types.h:160
std::int64_t creation_time
Creation time of the room (ms since Unix epoch).
Definition room_event_types.h:151
std::uint32_t num_publishers
Approximate number of publishers (eventually consistent).
Definition room_event_types.h:157
std::uint32_t max_participants
Maximum number of participants allowed in the room.
Definition room_event_types.h:148
std::uint64_t reliable_dc_buffered_amount_low_threshold
Low-watermark threshold for reliable data channel buffer.
Definition room_event_types.h:139
std::uint64_t lossy_dc_buffered_amount_low_threshold
Low-watermark threshold for lossy data channel buffer.
Definition room_event_types.h:136
std::optional< std::string > sid
Room SID, if known.
Definition room_event_types.h:127
Fired when the participant has been moved to another room.
Definition room_event_types.h:612
RoomInfoData info
Info about the new room.
Definition room_event_types.h:614
Fired when the room SID changes (e.g., after migration).
Definition room_event_types.h:446
std::string sid
New room SID.
Definition room_event_types.h:448
Fired when the room's info is updated.
Definition room_event_types.h:606
RoomInfoData info
New room info snapshot.
Definition room_event_types.h:608
SIP (Session Initiation Protocol) DTMF payload carried via data packets.
Definition room_event_types.h:116
std::uint32_t code
Numeric DTMF code (0-15, mapping to 0-9, *, #, A-D).
Definition room_event_types.h:118
std::optional< std::string > digit
Human-readable digit representation (e.g. "1", "#").
Definition room_event_types.h:121
Fired when a SIP DTMF packet is received.
Definition room_event_types.h:519
RemoteParticipant * participant
Remote participant that sent the DTMF (owned by Room).
Definition room_event_types.h:527
int code
DTMF code.
Definition room_event_types.h:521
std::string digit
Human-readable DTMF digit.
Definition room_event_types.h:524
Fired when a high-level text stream reader is opened.
Definition room_event_types.h:597
std::string participant_identity
Identity of the participant that opened the stream.
Definition room_event_types.h:602
std::uint64_t reader_handle
Handle to the underlying text stream reader.
Definition room_event_types.h:599
Fired when a track is muted.
Definition room_event_types.h:413
Participant * participant
Local or remote participant who owns the track (owned by Room).
Definition room_event_types.h:415
std::shared_ptr< TrackPublication > publication
Publication that was muted.
Definition room_event_types.h:418
Options for publishing a track to the room.
Definition room_event_types.h:286
std::optional< VideoEncodingOptions > video_encoding
Optional video encoding parameters.
Definition room_event_types.h:288
std::optional< bool > red
Enable or disable RED (redundant encoding).
Definition room_event_types.h:300
PacketTrailerFeatures packet_trailer_features
Optional packet-trailer features to enable for published video.
Definition room_event_types.h:315
std::optional< bool > simulcast
Enable or disable simulcast.
Definition room_event_types.h:303
std::optional< std::string > stream
Optional stream label/group for this track.
Definition room_event_types.h:309
std::optional< bool > dtx
Enable or disable discontinuous transmission (DTX).
Definition room_event_types.h:297
std::optional< VideoCodec > video_codec
Optional video codec to use.
Definition room_event_types.h:294
std::optional< AudioEncodingOptions > audio_encoding
Optional audio encoding parameters.
Definition room_event_types.h:291
std::optional< TrackSource > source
Track source (camera, microphone, screen share, etc.).
Definition room_event_types.h:306
std::optional< bool > preconnect_buffer
Enable pre-connect buffering for lower startup latency.
Definition room_event_types.h:312
Fired when a remote participant publishes a track.
Definition room_event_types.h:359
std::shared_ptr< RemoteTrackPublication > publication
Remote track publication.
Definition room_event_types.h:361
RemoteParticipant * participant
Remote participant who owns this track (owned by Room).
Definition room_event_types.h:364
Fired when a remote track is successfully subscribed.
Definition room_event_types.h:377
std::shared_ptr< Track > track
Subscribed remote track.
Definition room_event_types.h:379
std::shared_ptr< RemoteTrackPublication > publication
Publication associated with the track.
Definition room_event_types.h:382
RemoteParticipant * participant
Remote participant who owns the track (owned by Room).
Definition room_event_types.h:385
Fired when subscribing to a remote track fails.
Definition room_event_types.h:401
std::string error
Error message describing the failure.
Definition room_event_types.h:409
std::string track_sid
SID of the track that failed to subscribe.
Definition room_event_types.h:406
RemoteParticipant * participant
Remote participant for which the subscription failed (owned by Room).
Definition room_event_types.h:403
Fired when a track is unmuted.
Definition room_event_types.h:422
Participant * participant
Local or remote participant who owns the track (owned by Room).
Definition room_event_types.h:424
std::shared_ptr< TrackPublication > publication
Publication that was unmuted.
Definition room_event_types.h:427
Fired when a remote participant unpublishes a track.
Definition room_event_types.h:368
std::shared_ptr< RemoteTrackPublication > publication
Remote track publication that was removed.
Definition room_event_types.h:370
RemoteParticipant * participant
Remote participant who owned this track (owned by Room).
Definition room_event_types.h:373
Fired when a remote track is unsubscribed.
Definition room_event_types.h:389
RemoteParticipant * participant
Remote participant who owns the track (owned by Room).
Definition room_event_types.h:397
std::shared_ptr< Track > track
Track that was unsubscribed.
Definition room_event_types.h:391
std::shared_ptr< RemoteTrackPublication > publication
Publication associated with the track.
Definition room_event_types.h:394
Fired when a user data packet (non-SIP) is received.
Definition room_event_types.h:503
std::vector< std::uint8_t > data
Payload data.
Definition room_event_types.h:505
RemoteParticipant * participant
Remote participant that sent this packet, or nullptr if server (owned by Room).
Definition room_event_types.h:512
std::string topic
Optional topic associated with this data (may be empty).
Definition room_event_types.h:515
DataPacketKind kind
Delivery kind (reliable or lossy).
Definition room_event_types.h:508
Application-level user data carried in a data packet.
Definition room_event_types.h:100
std::vector< std::uint8_t > data
Raw payload bytes.
Definition room_event_types.h:102
std::optional< std::string > topic
Optional topic name associated with this payload.
Definition room_event_types.h:105
Video encoding configuration used when publishing a track.
Definition room_event_types.h:262
double max_framerate
Maximum frame rate in frames per second.
Definition room_event_types.h:267
std::uint64_t max_bitrate
Maximum target bitrate in bps.
Definition room_event_types.h:264