-
Notifications
You must be signed in to change notification settings - Fork 96
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 #3 from webrtc-sdk/android-simulcast
Support for simulcast in Android SDK
- Loading branch information
1 parent
a8c4468
commit 41d8773
Showing
5 changed files
with
145 additions
and
0 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
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,28 @@ | ||
package org.webrtc; | ||
|
||
public class SimulcastVideoEncoder extends WrappedNativeVideoEncoder { | ||
|
||
static native long nativeCreateEncoder(VideoEncoderFactory primary, VideoEncoderFactory fallback, VideoCodecInfo info); | ||
|
||
VideoEncoderFactory primary; | ||
VideoEncoderFactory fallback; | ||
VideoCodecInfo info; | ||
|
||
public SimulcastVideoEncoder(VideoEncoderFactory primary, VideoEncoderFactory fallback, VideoCodecInfo info) { | ||
this.primary = primary; | ||
this.fallback = fallback; | ||
this.info = info; | ||
} | ||
|
||
@Override | ||
public long createNativeVideoEncoder() { | ||
return nativeCreateEncoder(primary, fallback, info); | ||
} | ||
|
||
@Override | ||
public boolean isHardwareEncoder() { | ||
return false; | ||
} | ||
|
||
} | ||
|
43 changes: 43 additions & 0 deletions
43
sdk/android/api/org/webrtc/SimulcastVideoEncoderFactory.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,43 @@ | ||
/* | ||
* Copyright 2017 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 androidx.annotation.Nullable; | ||
import java.util.ArrayList; | ||
import java.util.HashMap; | ||
import java.util.List; | ||
import java.util.Arrays; | ||
|
||
public class SimulcastVideoEncoderFactory implements VideoEncoderFactory { | ||
|
||
VideoEncoderFactory primary; | ||
VideoEncoderFactory fallback; | ||
|
||
public SimulcastVideoEncoderFactory(VideoEncoderFactory primary, VideoEncoderFactory fallback) { | ||
this.primary = primary; | ||
this.fallback = fallback; | ||
} | ||
|
||
@Nullable | ||
@Override | ||
public VideoEncoder createEncoder(VideoCodecInfo info) { | ||
return new SimulcastVideoEncoder(primary, fallback, info); | ||
} | ||
|
||
@Override | ||
public VideoCodecInfo[] getSupportedCodecs() { | ||
List<VideoCodecInfo> codecs = new ArrayList<VideoCodecInfo>(); | ||
codecs.addAll(Arrays.asList(primary.getSupportedCodecs())); | ||
codecs.addAll(Arrays.asList(fallback.getSupportedCodecs())); | ||
return codecs.toArray(new VideoCodecInfo[codecs.size()]); | ||
} | ||
|
||
} |
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,34 @@ | ||
#include <jni.h> | ||
|
||
#include "sdk/android/src/jni/jni_helpers.h" | ||
#include "sdk/android/src/jni/video_encoder_factory_wrapper.h" | ||
#include "sdk/android/src/jni/video_codec_info.h" | ||
#include "sdk/android/native_api/codecs/wrapper.h" | ||
#include "media/engine/simulcast_encoder_adapter.h" | ||
#include "rtc_base/logging.h" | ||
|
||
using namespace webrtc; | ||
using namespace webrtc::jni; | ||
|
||
#ifdef __cplusplus | ||
extern "C" { | ||
#endif | ||
|
||
// (VideoEncoderFactory primary, VideoEncoderFactory fallback, VideoCodecInfo info) | ||
JNIEXPORT jlong JNICALL Java_org_webrtc_SimulcastVideoEncoder_nativeCreateEncoder(JNIEnv *env, jclass klass, jobject primary, jobject fallback, jobject info) { | ||
RTC_LOG(LS_INFO) << "Create simulcast video encoder"; | ||
JavaParamRef<jobject> info_ref(info); | ||
SdpVideoFormat format = VideoCodecInfoToSdpVideoFormat(env, info_ref); | ||
|
||
// TODO: 影響は軽微だが、リークする可能性があるので将来的に修正したい | ||
// https://github.com/shiguredo-webrtc-build/webrtc-build/pull/16#pullrequestreview-600675795 | ||
return NativeToJavaPointer(std::make_unique<SimulcastEncoderAdapter>( | ||
JavaToNativeVideoEncoderFactory(env, primary).release(), | ||
JavaToNativeVideoEncoderFactory(env, fallback).release(), | ||
format).release()); | ||
} | ||
|
||
|
||
#ifdef __cplusplus | ||
} | ||
#endif |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.