-
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 #233 from GetStream/migrate/m125
Patch to m125
- Loading branch information
Showing
35 changed files
with
915 additions
and
464 deletions.
There are no files selected for viewing
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
Binary file modified
BIN
+1.51 MB
(120%)
stream-webrtc-android/libs/arm64-v8a/libjingle_peerconnection_so.so
Binary file not shown.
Binary file modified
BIN
+123 KB
(100%)
stream-webrtc-android/libs/armeabi-v7a/libjingle_peerconnection_so.so
Binary file not shown.
Binary file modified
BIN
+261 KB
(100%)
stream-webrtc-android/libs/x86/libjingle_peerconnection_so.so
Binary file not shown.
Binary file modified
BIN
+35.7 KB
(100%)
stream-webrtc-android/libs/x86_64/libjingle_peerconnection_so.so
Binary file not shown.
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
27 changes: 27 additions & 0 deletions
27
stream-webrtc-android/src/main/java/org/webrtc/AudioTrackSink.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,27 @@ | ||
/* | ||
* Copyright 2023 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. | ||
*/ | ||
|
||
package org.webrtc; | ||
|
||
import java.nio.ByteBuffer; | ||
|
||
/** | ||
* Java version of rtc::AudioTrackSinkInterface. | ||
*/ | ||
public interface AudioTrackSink { | ||
/** | ||
* Implementations should copy the audio data into a local copy if they wish | ||
* to use the data after this function returns. | ||
*/ | ||
@CalledByNative | ||
void onData(ByteBuffer audioData, int bitsPerSample, int sampleRate, | ||
int numberOfChannels, int numberOfFrames, | ||
long absoluteCaptureTimestampMs); | ||
} |
Oops, something went wrong.