| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2017 The WebRTC project authors. All Rights Reserved. | 2 * Copyright 2017 The WebRTC project authors. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 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 | 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 | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 | 10 |
| 11 #include "webrtc/sdk/android/src/jni/videodecoderfactorywrapper.h" | 11 #include "webrtc/sdk/android/src/jni/videodecoderfactorywrapper.h" |
| 12 | 12 |
| 13 #include "webrtc/api/video_codecs/video_decoder.h" | 13 #include "webrtc/api/video_codecs/video_decoder.h" |
| 14 #include "webrtc/common_types.h" | 14 #include "webrtc/common_types.h" |
| 15 #include "webrtc/rtc_base/logging.h" | 15 #include "webrtc/rtc_base/logging.h" |
| 16 #include "webrtc/sdk/android/src/jni/videodecoderwrapper.h" | 16 #include "webrtc/sdk/android/src/jni/videodecoderwrapper.h" |
| 17 | 17 |
| 18 namespace webrtc_jni { | 18 namespace webrtc { |
| 19 namespace jni { |
| 19 | 20 |
| 20 VideoDecoderFactoryWrapper::VideoDecoderFactoryWrapper(JNIEnv* jni, | 21 VideoDecoderFactoryWrapper::VideoDecoderFactoryWrapper(JNIEnv* jni, |
| 21 jobject decoder_factory) | 22 jobject decoder_factory) |
| 22 : decoder_factory_(jni, decoder_factory) { | 23 : decoder_factory_(jni, decoder_factory) { |
| 23 jclass decoder_factory_class = jni->GetObjectClass(*decoder_factory_); | 24 jclass decoder_factory_class = jni->GetObjectClass(*decoder_factory_); |
| 24 create_decoder_method_ = | 25 create_decoder_method_ = |
| 25 jni->GetMethodID(decoder_factory_class, "createDecoder", | 26 jni->GetMethodID(decoder_factory_class, "createDecoder", |
| 26 "(Ljava/lang/String;)Lorg/webrtc/VideoDecoder;"); | 27 "(Ljava/lang/String;)Lorg/webrtc/VideoDecoder;"); |
| 27 } | 28 } |
| 28 | 29 |
| 29 webrtc::VideoDecoder* VideoDecoderFactoryWrapper::CreateVideoDecoder( | 30 VideoDecoder* VideoDecoderFactoryWrapper::CreateVideoDecoder( |
| 30 webrtc::VideoCodecType type) { | 31 VideoCodecType type) { |
| 31 JNIEnv* jni = AttachCurrentThreadIfNeeded(); | 32 JNIEnv* jni = AttachCurrentThreadIfNeeded(); |
| 32 ScopedLocalRefFrame local_ref_frame(jni); | 33 ScopedLocalRefFrame local_ref_frame(jni); |
| 33 const char* type_payload = webrtc::CodecTypeToPayloadString(type); | 34 const char* type_payload = CodecTypeToPayloadString(type); |
| 34 jstring name = jni->NewStringUTF(type_payload); | 35 jstring name = jni->NewStringUTF(type_payload); |
| 35 jobject decoder = | 36 jobject decoder = |
| 36 jni->CallObjectMethod(*decoder_factory_, create_decoder_method_, name); | 37 jni->CallObjectMethod(*decoder_factory_, create_decoder_method_, name); |
| 37 return decoder != nullptr ? new VideoDecoderWrapper(jni, decoder) : nullptr; | 38 return decoder != nullptr ? new VideoDecoderWrapper(jni, decoder) : nullptr; |
| 38 } | 39 } |
| 39 | 40 |
| 40 void VideoDecoderFactoryWrapper::DestroyVideoDecoder( | 41 void VideoDecoderFactoryWrapper::DestroyVideoDecoder(VideoDecoder* decoder) { |
| 41 webrtc::VideoDecoder* decoder) { | |
| 42 delete decoder; | 42 delete decoder; |
| 43 } | 43 } |
| 44 | 44 |
| 45 } // namespace webrtc_jni | 45 } // namespace jni |
| 46 } // namespace webrtc |
| OLD | NEW |