Bug: webrtc:11956 Change-Id: I758a28f2755cfa72ad486fbe1f9209f356eb5fa1 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/184510 Reviewed-by: Stefan Holmer <stefan@webrtc.org> Commit-Queue: Ilya Nikolaevskiy <ilnik@webrtc.org> Cr-Commit-Position: refs/heads/master@{#32147}
100 lines
3.8 KiB
C++
100 lines
3.8 KiB
C++
/*
|
|
* Copyright (c) 2016 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.
|
|
*/
|
|
|
|
#ifndef API_ANDROID_JNI_ANDROIDVIDEOTRACKSOURCE_H_
|
|
#define API_ANDROID_JNI_ANDROIDVIDEOTRACKSOURCE_H_
|
|
|
|
#include <jni.h>
|
|
|
|
#include "common_video/libyuv/include/webrtc_libyuv.h"
|
|
#include "media/base/adapted_video_track_source.h"
|
|
#include "rtc_base/async_invoker.h"
|
|
#include "rtc_base/checks.h"
|
|
#include "rtc_base/thread.h"
|
|
#include "rtc_base/timestamp_aligner.h"
|
|
#include "sdk/android/src/jni/video_frame.h"
|
|
|
|
namespace webrtc {
|
|
namespace jni {
|
|
|
|
// This class needs to be used in conjunction with the Java corresponding class
|
|
// NativeAndroidVideoTrackSource. This class is thred safe and methods can be
|
|
// called from any thread, but if frames A, B, ..., are sent to adaptFrame(),
|
|
// the adapted frames adaptedA, adaptedB, ..., needs to be passed in the same
|
|
// order to onFrameCaptured().
|
|
class AndroidVideoTrackSource : public rtc::AdaptedVideoTrackSource {
|
|
public:
|
|
AndroidVideoTrackSource(rtc::Thread* signaling_thread,
|
|
JNIEnv* jni,
|
|
bool is_screencast,
|
|
bool align_timestamps);
|
|
~AndroidVideoTrackSource() override;
|
|
|
|
bool is_screencast() const override;
|
|
|
|
// Indicates that the encoder should denoise video before encoding it.
|
|
// If it is not set, the default configuration is used which is different
|
|
// depending on video codec.
|
|
absl::optional<bool> needs_denoising() const override;
|
|
|
|
void SetState(SourceState state);
|
|
|
|
SourceState state() const override;
|
|
|
|
bool remote() const override;
|
|
|
|
// This function should be called before delivering any frame to determine if
|
|
// the frame should be dropped or what the cropping and scaling parameters
|
|
// should be. This function is thread safe and can be called from any thread.
|
|
// This function returns
|
|
// NativeAndroidVideoTrackSource.FrameAdaptationParameters, or null if the
|
|
// frame should be dropped.
|
|
ScopedJavaLocalRef<jobject> AdaptFrame(JNIEnv* env,
|
|
jint j_width,
|
|
jint j_height,
|
|
jint j_rotation,
|
|
jlong j_timestamp_ns);
|
|
|
|
// This function converts and passes the frame on to the rest of the C++
|
|
// WebRTC layer. Note that GetFrameAdaptationParameters() is expected to be
|
|
// called first and that the delivered frame conforms to those parameters.
|
|
// This function is thread safe and can be called from any thread.
|
|
void OnFrameCaptured(JNIEnv* env,
|
|
jint j_rotation,
|
|
jlong j_timestamp_ns,
|
|
const JavaRef<jobject>& j_video_frame_buffer);
|
|
|
|
void SetState(JNIEnv* env,
|
|
jboolean j_is_live);
|
|
|
|
void AdaptOutputFormat(JNIEnv* env,
|
|
jint j_landscape_width,
|
|
jint j_landscape_height,
|
|
const JavaRef<jobject>& j_max_landscape_pixel_count,
|
|
jint j_portrait_width,
|
|
jint j_portrait_height,
|
|
const JavaRef<jobject>& j_max_portrait_pixel_count,
|
|
const JavaRef<jobject>& j_max_fps);
|
|
|
|
void SetIsScreencast(JNIEnv* env, jboolean j_is_screencast);
|
|
|
|
private:
|
|
rtc::Thread* signaling_thread_;
|
|
std::atomic<SourceState> state_;
|
|
std::atomic<bool> is_screencast_;
|
|
rtc::TimestampAligner timestamp_aligner_;
|
|
const bool align_timestamps_;
|
|
};
|
|
|
|
} // namespace jni
|
|
} // namespace webrtc
|
|
|
|
#endif // API_ANDROID_JNI_ANDROIDVIDEOTRACKSOURCE_H_
|