8000 Support rtp transceiver direction type 4. by cloudwebrtc · Pull Request #1114 · flutter-webrtc/flutter-webrtc · GitHub
[go: up one dir, main page]

Skip to content
Dismiss alert

Support rtp transceiver direction type 4. #1114

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

Merged
merged 1 commit into from
Oct 11, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ android {
}

dependencies {
implementation 'com.github.webrtc-sdk:android:104.5112.01'
implementation 'com.github.webrtc-sdk:android:104.5112.03'
implementation "com.twilio:audioswitch:1.1.5"
implementation 'androidx.annotation:annotation:1.1.0'
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -607,6 +607,8 @@ private String transceiverDirectionString(RtpTransceiver.RtpTransceiverDirection
return "recvonly";
case INACTIVE:
return "inactive";
case STOPPED:
return "stopped";
}
return null;
}
Expand All @@ -621,6 +623,8 @@ private RtpTransceiver.RtpTransceiverDirection stringToTransceiverDirection(Stri
return RtpTransceiver.RtpTransceiverDirection.RECV_ONLY;
case "inactive":
return RtpTransceiver.RtpTransceiverDirection.INACTIVE;
case "stopped":
return RtpTransceiver.RtpTransceiverDirection.STOPPED;
}
return RtpTransceiver.RtpTransceiverDirection.INACTIVE;
}
Expand Down
0