| 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 <jni.h> | 11 #include <jni.h> |
| 12 #include <vector> | 12 #include <vector> |
| 13 | 13 |
| 14 #include "third_party/libyuv/include/libyuv/convert.h" | 14 #include "third_party/libyuv/include/libyuv/convert.h" |
| 15 #include "third_party/libyuv/include/libyuv/scale.h" | 15 #include "third_party/libyuv/include/libyuv/scale.h" |
| 16 | 16 |
| 17 #include "webrtc/common_video/libyuv/include/webrtc_libyuv.h" | 17 #include "webrtc/common_video/libyuv/include/webrtc_libyuv.h" |
| 18 #include "webrtc/rtc_base/checks.h" | 18 #include "webrtc/rtc_base/checks.h" |
| 19 | 19 |
| 20 namespace webrtc_jni { | 20 namespace webrtc { |
| 21 namespace jni { |
| 21 | 22 |
| 22 extern "C" JNIEXPORT void JNICALL | 23 extern "C" JNIEXPORT void JNICALL |
| 23 Java_org_webrtc_NV21Buffer_nativeCropAndScale(JNIEnv* jni, | 24 Java_org_webrtc_NV21Buffer_nativeCropAndScale(JNIEnv* jni, |
| 24 jclass, | 25 jclass, |
| 25 jint crop_x, | 26 jint crop_x, |
| 26 jint crop_y, | 27 jint crop_y, |
| 27 jint crop_width, | 28 jint crop_width, |
| 28 jint crop_height, | 29 jint crop_height, |
| 29 jint scale_width, | 30 jint scale_width, |
| 30 jint scale_height, | 31 jint scale_height, |
| (...skipping 23 matching lines...) Expand all Loading... |
| 54 uint8_t const* src_uv = src_y + src_height * src_stride_y; | 55 uint8_t const* src_uv = src_y + src_height * src_stride_y; |
| 55 | 56 |
| 56 uint8_t* dst_y = static_cast<uint8_t*>(jni->GetDirectBufferAddress(j_dst_y)); | 57 uint8_t* dst_y = static_cast<uint8_t*>(jni->GetDirectBufferAddress(j_dst_y)); |
| 57 uint8_t* dst_u = static_cast<uint8_t*>(jni->GetDirectBufferAddress(j_dst_u)); | 58 uint8_t* dst_u = static_cast<uint8_t*>(jni->GetDirectBufferAddress(j_dst_u)); |
| 58 uint8_t* dst_v = static_cast<uint8_t*>(jni->GetDirectBufferAddress(j_dst_v)); | 59 uint8_t* dst_v = static_cast<uint8_t*>(jni->GetDirectBufferAddress(j_dst_v)); |
| 59 | 60 |
| 60 // Crop using pointer arithmetic. | 61 // Crop using pointer arithmetic. |
| 61 src_y += crop_x + crop_y * src_stride_y; | 62 src_y += crop_x + crop_y * src_stride_y; |
| 62 src_uv += crop_chroma_x + crop_chroma_y * src_stride_uv; | 63 src_uv += crop_chroma_x + crop_chroma_y * src_stride_uv; |
| 63 | 64 |
| 64 webrtc::NV12ToI420Scaler scaler; | 65 NV12ToI420Scaler scaler; |
| 65 // U- and V-planes are swapped because this is NV21 not NV12. | 66 // U- and V-planes are swapped because this is NV21 not NV12. |
| 66 scaler.NV12ToI420Scale(src_y, src_stride_y, src_uv, src_stride_uv, crop_width, | 67 scaler.NV12ToI420Scale(src_y, src_stride_y, src_uv, src_stride_uv, crop_width, |
| 67 crop_height, dst_y, dst_stride_y, dst_v, dst_stride_v, | 68 crop_height, dst_y, dst_stride_y, dst_v, dst_stride_v, |
| 68 dst_u, dst_stride_u, scale_width, scale_height); | 69 dst_u, dst_stride_u, scale_width, scale_height); |
| 69 | 70 |
| 70 jni->ReleaseByteArrayElements(j_src, src_bytes, JNI_ABORT); | 71 jni->ReleaseByteArrayElements(j_src, src_bytes, JNI_ABORT); |
| 71 } | 72 } |
| 72 | 73 |
| 73 } // namespace webrtc_jni | 74 } // namespace jni |
| 75 } // namespace webrtc |
| OLD | NEW |