-
Notifications
You must be signed in to change notification settings - Fork 70
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add DataStream support #871
Conversation
🦋 Changeset detectedLatest commit: f38498a The changes in this PR will be included in the next version bump. Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR 💥 An error occurred when fetching the changed packages and changesets in this PR
|
…lukas/data-stream
…lukas/data-stream
…lukas/data-stream
…lukas/data-stream
…lukas/data-stream
protobufs/livekit_models.proto
Outdated
string messageId = 1; // unique identifier for this data stream to map it to the correct header | ||
uint64 chunkIndex = 2; // chunkId as an unsigned 32-bit integer | ||
bytes content = 3; // content as binary (bytes) | ||
uint32 contentLength = 4; // content length in bytes |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what is the purpose of this? can this not be derived from content
as length of it? Are there cases where content is padded? (maybe for the encryption case?)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah, although I'm not sure anymore what we'd need it for, even in the encryption case. Will remove and we can re-add if it turns out we need it
No description provided.