| Index: talk/app/webrtc/java/jni/native_handle_impl.h
|
| diff --git a/talk/app/webrtc/java/jni/native_handle_impl.h b/talk/app/webrtc/java/jni/native_handle_impl.h
|
| index 911a3c4fb690b81c1f395501c4f74824a695ed09..da279408a7b37b9eaa65958d6a555fff976ca16d 100644
|
| --- a/talk/app/webrtc/java/jni/native_handle_impl.h
|
| +++ b/talk/app/webrtc/java/jni/native_handle_impl.h
|
| @@ -32,6 +32,7 @@
|
| #include <jni.h>
|
|
|
| #include "webrtc/common_video/include/video_frame_buffer.h"
|
| +#include "webrtc/common_video/rotation.h"
|
|
|
| namespace webrtc_jni {
|
|
|
| @@ -54,11 +55,10 @@ class AndroidTextureBuffer : public webrtc::NativeHandleBuffer {
|
| ~AndroidTextureBuffer();
|
| rtc::scoped_refptr<VideoFrameBuffer> NativeToI420Buffer() override;
|
|
|
| - rtc::scoped_refptr<AndroidTextureBuffer> CropAndScale(
|
| - int cropped_input_width,
|
| - int cropped_input_height,
|
| + rtc::scoped_refptr<AndroidTextureBuffer> ScaleAndRotate(
|
| int dst_widht,
|
| - int dst_height);
|
| + int dst_height,
|
| + webrtc::VideoRotation rotation);
|
|
|
| private:
|
| NativeHandleImpl native_handle_;
|
|
|