This repository has been archived by the owner on May 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #47 from jellyfish-dev/jellyfish
Jellyfish refactor
- Loading branch information
Showing
20 changed files
with
441 additions
and
462 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 0 additions & 16 deletions
16
MembraneRTC/src/main/java/org/membraneframework/rtc/ConnectOptions.kt
This file was deleted.
Oops, something went wrong.
9 changes: 9 additions & 0 deletions
9
MembraneRTC/src/main/java/org/membraneframework/rtc/CreateOptions.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package org.membraneframework.rtc | ||
|
||
/** | ||
* A set of options used by the <strong>MembraneRTC</strong> when creating the client. | ||
* @property encoderOptions The encoder options used to encode video | ||
*/ | ||
data class CreateOptions( | ||
val encoderOptions: EncoderOptions = EncoderOptions() | ||
) |
Oops, something went wrong.