File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
src/main/java/com/cloudwebrtc/webrtc Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ android {
49
49
}
50
50
51
51
dependencies {
52
- implementation ' com.github.webrtc-sdk:android:104.5112.01 '
52
+ implementation ' com.github.webrtc-sdk:android:104.5112.03 '
53
53
implementation " com.twilio:audioswitch:1.1.5"
54
54
implementation ' androidx.annotation:annotation:1.1.0'
55
55
implementation " org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version "
Original file line number Diff line number Diff line change @@ -607,6 +607,8 @@ private String transceiverDirectionString(RtpTransceiver.RtpTransceiverDirection
607
607
return "recvonly" ;
608
608
case INACTIVE :
609
609
return "inactive" ;
610
+ case STOPPED :
611
+ return "stopped" ;
610
612
}
611
613
return null ;
612
614
}
@@ -621,6 +623,8 @@ private RtpTransceiver.RtpTransceiverDirection stringToTransceiverDirection(Stri
621
623
return RtpTransceiver .RtpTransceiverDirection .RECV_ONLY ;
622
624
case "inactive" :
623
625
return RtpTransceiver .RtpTransceiverDirection .INACTIVE ;
626
+ case "stopped" :
627
+ return RtpTransceiver .RtpTransceiverDirection .STOPPED ;
624
628
}
625
629
return RtpTransceiver .RtpTransceiverDirection .INACTIVE ;
626
630
}
You can’t perform that action at this time.
0 commit comments