Skip to content

Commit 60da4f5

Browse files
committed
Updated WebRTC branch to 4472 (M91) and updated dependency versions
1 parent 4b596a2 commit 60da4f5

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,11 @@
4646
<distributionManagement>
4747
<snapshotRepository>
4848
<id>ossrh</id>
49-
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
49+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
5050
</snapshotRepository>
5151
<repository>
5252
<id>ossrh</id>
53-
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
53+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
5454
</repository>
5555
</distributionManagement>
5656

webrtc-demo/webrtc-demo-api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<dependency>
1515
<groupId>com.google.inject</groupId>
1616
<artifactId>guice</artifactId>
17-
<version>5.0.0-BETA-1</version>
17+
<version>5.0.1</version>
1818
</dependency>
1919

2020
<dependency>

webrtc-demo/webrtc-demo-api/src/main/java/dev/onvoid/webrtc/demo/service/PeerConnectionService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -376,6 +376,6 @@ else if (send) {
376376
return RTCRtpTransceiverDirection.SEND_ONLY;
377377
}
378378

379-
throw new IllegalArgumentException();
379+
return RTCRtpTransceiverDirection.INACTIVE;
380380
}
381381
}

webrtc-jni/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<packaging>pom</packaging>
1313

1414
<properties>
15-
<webrtc.branch>branch-heads/4324</webrtc.branch>
15+
<webrtc.branch>branch-heads/4472</webrtc.branch>
1616
<webrtc.src.dir>${user.home}/webrtc</webrtc.src.dir>
1717
<webrtc.install.dir>${user.home}/webrtc/build</webrtc.install.dir>
1818
<cmake.build.type>Release</cmake.build.type>
@@ -78,7 +78,7 @@
7878
<plugin>
7979
<groupId>com.googlecode.cmake-maven-project</groupId>
8080
<artifactId>cmake-maven-plugin</artifactId>
81-
<version>3.16.3-b2</version>
81+
<version>3.19.2-b1</version>
8282
<executions>
8383
<execution>
8484
<id>cmake-generate</id>

webrtc-jni/src/main/cpp/src/platform/windows/MFUtils.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@ namespace jni
7878
{MFVideoFormat_RGB32, webrtc::VideoType::kBGRA},
7979
{MFVideoFormat_ARGB32, webrtc::VideoType::kARGB},
8080
{MFVideoFormat_MJPG, webrtc::VideoType::kMJPEG},
81-
{MFVideoFormat_NV12, webrtc::VideoType::kNV12},
8281
{MFVideoFormat_YV12, webrtc::VideoType::kYV12}
8382
};
8483

0 commit comments

Comments
 (0)