| /* |
| * Copyright 2022 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. |
| */ |
| |
| #include <memory> |
| |
| #include "api/environment/environment.h" |
| #include "api/video_codecs/builtin_video_decoder_factory.h" |
| #include "api/video_codecs/video_decoder.h" |
| #include "api/video_codecs/video_decoder_factory.h" |
| #include "sdk/android/generated_swcodecs_jni/SoftwareVideoDecoderFactory_jni.h" |
| #include "sdk/android/native_api/jni/java_types.h" |
| #include "sdk/android/src/jni/jni_helpers.h" |
| #include "sdk/android/src/jni/video_codec_info.h" |
| |
| namespace webrtc { |
| namespace jni { |
| |
| static jlong JNI_SoftwareVideoDecoderFactory_CreateFactory(JNIEnv* env) { |
| return webrtc::NativeToJavaPointer( |
| CreateBuiltinVideoDecoderFactory().release()); |
| } |
| |
| jboolean JNI_SoftwareVideoDecoderFactory_IsSupported( |
| JNIEnv* env, |
| jlong j_factory, |
| const JavaParamRef<jobject>& j_info) { |
| return VideoCodecInfoToSdpVideoFormat(env, j_info) |
| .IsCodecInList(reinterpret_cast<VideoDecoderFactory*>(j_factory) |
| ->GetSupportedFormats()); |
| } |
| |
| jlong JNI_SoftwareVideoDecoderFactory_Create( |
| JNIEnv* env, |
| jlong j_factory, |
| jlong j_webrtc_env_ref, |
| const JavaParamRef<jobject>& j_info) { |
| return NativeToJavaPointer( |
| reinterpret_cast<VideoDecoderFactory*>(j_factory) |
| ->Create(*reinterpret_cast<const Environment*>(j_webrtc_env_ref), |
| VideoCodecInfoToSdpVideoFormat(env, j_info)) |
| .release()); |
| } |
| |
| static webrtc::ScopedJavaLocalRef<jobject> |
| JNI_SoftwareVideoDecoderFactory_GetSupportedCodecs(JNIEnv* env, |
| jlong j_factory) { |
| auto* const native_factory = |
| reinterpret_cast<webrtc::VideoDecoderFactory*>(j_factory); |
| |
| return webrtc::NativeToJavaList(env, native_factory->GetSupportedFormats(), |
| &webrtc::jni::SdpVideoFormatToVideoCodecInfo); |
| } |
| |
| } // namespace jni |
| } // namespace webrtc |