Skip to content

Commit

Permalink
Merge pull request #209 from GetStream/patches/m118
Browse files Browse the repository at this point in the history
Update patches from M118
  • Loading branch information
skydoves authored Oct 4, 2024
2 parents 823c5ff + c5a3bd9 commit 637e937
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 0 deletions.
Binary file not shown.
Binary file not shown.
Binary file modified stream-webrtc-android/libs/x86/libjingle_peerconnection_so.so
Binary file not shown.
Binary file modified stream-webrtc-android/libs/x86_64/libjingle_peerconnection_so.so
Binary file not shown.
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);
}

0 comments on commit 637e937

Please sign in to comment.