1 /* 2 * Copyright 2017 The WebRTC project authors. All Rights Reserved. 3 * 4 * Use of this source code is governed by a BSD-style license 5 * that can be found in the LICENSE file in the root of the source 6 * tree. An additional intellectual property rights grant can be found 7 * in the file PATENTS. All contributing project authors may 8 * be found in the AUTHORS file in the root of the source tree. 9 */ 10 11 #ifndef SDK_ANDROID_SRC_JNI_ENCODED_IMAGE_H_ 12 #define SDK_ANDROID_SRC_JNI_ENCODED_IMAGE_H_ 13 14 #include <jni.h> 15 #include <vector> 16 17 #include "api/video/video_frame_type.h" 18 19 #include "sdk/android/native_api/jni/scoped_java_ref.h" 20 21 namespace webrtc { 22 23 class EncodedImage; 24 25 namespace jni { 26 27 ScopedJavaLocalRef<jobject> NativeToJavaFrameType(JNIEnv* env, 28 VideoFrameType frame_type); 29 ScopedJavaLocalRef<jobject> NativeToJavaEncodedImage(JNIEnv* jni, 30 const EncodedImage& image); 31 ScopedJavaLocalRef<jobjectArray> NativeToJavaFrameTypeArray( 32 JNIEnv* env, 33 const std::vector<VideoFrameType>& frame_types); 34 35 EncodedImage JavaToNativeEncodedImage(JNIEnv* env, 36 const JavaRef<jobject>& j_encoded_image); 37 38 int64_t GetJavaEncodedImageCaptureTimeNs( 39 JNIEnv* jni, 40 const JavaRef<jobject>& j_encoded_image); 41 42 } // namespace jni 43 } // namespace webrtc 44 45 #endif // SDK_ANDROID_SRC_JNI_ENCODED_IMAGE_H_ 46