-
Notifications
You must be signed in to change notification settings - Fork 76
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 #209 from GetStream/patches/m118
Update patches from M118
- Loading branch information
Showing
5 changed files
with
31 additions
and
0 deletions.
There are no files selected for viewing
Binary file modified
BIN
+5.56 KB
(100%)
stream-webrtc-android/libs/arm64-v8a/libjingle_peerconnection_so.so
Binary file not shown.
Binary file modified
BIN
+3.52 KB
(100%)
stream-webrtc-android/libs/armeabi-v7a/libjingle_peerconnection_so.so
Binary file not shown.
Binary file modified
BIN
+5.17 KB
(100%)
stream-webrtc-android/libs/x86/libjingle_peerconnection_so.so
Binary file not shown.
Binary file modified
BIN
+5.89 KB
(100%)
stream-webrtc-android/libs/x86_64/libjingle_peerconnection_so.so
Binary file not shown.
31 changes: 31 additions & 0 deletions
31
stream-webrtc-android/src/main/java/org/webrtc/ManagedAudioProcessingFactory.java
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,31 @@ | ||
package org.webrtc; | ||
|
||
/* | ||
* Copyright 2024 The WebRTC project authors. All Rights Reserved. | ||
* | ||
* Use of this source code is governed by a BSD-style license | ||
* that can be found in the LICENSE file in the root of the source | ||
* tree. An additional intellectual property rights grant can be found | ||
* in the file PATENTS. All contributing project authors may | ||
* be found in the AUTHORS file in the root of the source tree. | ||
*/ | ||
|
||
/** AudioProcessing factory with lifecycle management and runtime control capabilities. */ | ||
public interface ManagedAudioProcessingFactory extends AudioProcessingFactory { | ||
/** | ||
* Destroys the native AudioProcessing instance. | ||
*/ | ||
public void destroyNative(); | ||
|
||
/** | ||
* Checks if the AudioProcessing is enabled. | ||
* @return true if enabled, false otherwise. | ||
*/ | ||
public boolean isEnabled(); | ||
|
||
/** | ||
* Sets the enabled state of the AudioProcessing. | ||
* @param enabled The desired enabled state. | ||
*/ | ||
public void setEnabled(boolean enabled); | ||
} |