OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2014 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 <memory> | 11 #include <memory> |
12 | 12 |
| 13 #include "libyuv/convert.h" |
| 14 #include "libyuv/scale.h" |
| 15 |
13 #include "webrtc/base/logging.h" | 16 #include "webrtc/base/logging.h" |
14 #include "webrtc/media/engine/webrtcvideoframe.h" | 17 #include "webrtc/media/engine/webrtcvideoframe.h" |
15 #include "webrtc/media/engine/webrtcvideoframefactory.h" | 18 #include "webrtc/media/engine/webrtcvideoframefactory.h" |
16 | 19 |
| 20 // TODO(nisse): Needed for the struct CapturedFrame. Move declaration |
| 21 // to videoframefactory.h instead? |
| 22 #include "webrtc/media/base/videocapturer.h" |
| 23 |
17 namespace cricket { | 24 namespace cricket { |
18 | 25 |
| 26 std::unique_ptr<VideoFrame> |
| 27 WebRtcVideoFrameFactory::CreateCroppedAndScaledFrame( |
| 28 const CapturedFrame* input_frame, |
| 29 int crop_x, |
| 30 int crop_y, |
| 31 int crop_width, |
| 32 int crop_height, |
| 33 int dst_width, |
| 34 int dst_height) const { |
| 35 webrtc::VideoRotation rotation = input_frame->rotation; |
| 36 // The size of the input frame, after cropping and rotation. |
| 37 int src_width = crop_width; |
| 38 int src_height = crop_height; |
| 39 if (apply_rotation_ && (rotation == webrtc::kVideoRotation_90 || |
| 40 rotation == webrtc::kVideoRotation_270)) { |
| 41 std::swap(dst_width, dst_height); |
| 42 std::swap(src_width, src_height); |
| 43 } |
| 44 |
| 45 rtc::scoped_refptr<webrtc::I420Buffer> buffer( |
| 46 new rtc::RefCountedObject<webrtc::I420Buffer>(src_width, src_height)); |
| 47 |
| 48 // Color space conversion, cropping, and rotation. |
| 49 uint32_t format = CanonicalFourCC(input_frame->fourcc); |
| 50 int r = libyuv::ConvertToI420( |
| 51 static_cast<const uint8_t*>(input_frame->data), input_frame->data_size, |
| 52 buffer->MutableDataY(), buffer->StrideY(), |
| 53 buffer->MutableDataU(), buffer->StrideU(), |
| 54 buffer->MutableDataV(), buffer->StrideV(), |
| 55 // Cropping coordinates, width and height, are all pre-rotation values. |
| 56 crop_x, crop_y, |
| 57 input_frame->width, input_frame->height, |
| 58 crop_width, crop_height, |
| 59 static_cast<libyuv::RotationMode>( |
| 60 apply_rotation_ ? rotation : webrtc::kVideoRotation_0), |
| 61 format); |
| 62 if (r) { |
| 63 LOG(LS_ERROR) << "Error parsing format: " << GetFourccName(format) |
| 64 << " return code : " << r; |
| 65 return nullptr; |
| 66 } |
| 67 |
| 68 // Scaling, if needed. |
| 69 if (src_width != dst_width || src_height != dst_height) { |
| 70 buffer = webrtc::I420Buffer::Scale(buffer, dst_width, dst_height); |
| 71 if (!buffer) { |
| 72 LOG(LS_ERROR) << "I420Scale failed: src size " |
| 73 << src_width << " x " << src_height |
| 74 << ", dst size: " |
| 75 << dst_width << " x " << dst_height; |
| 76 return nullptr; |
| 77 } |
| 78 } |
| 79 return std::unique_ptr<VideoFrame>(new WebRtcVideoFrame( |
| 80 buffer, apply_rotation_ ? webrtc::kVideoRotation_0 : rotation, |
| 81 input_frame->time_stamp / rtc::kNumNanosecsPerMicrosec)); |
| 82 } |
| 83 |
19 VideoFrame* WebRtcVideoFrameFactory::CreateAliasedFrame( | 84 VideoFrame* WebRtcVideoFrameFactory::CreateAliasedFrame( |
20 const CapturedFrame* aliased_frame, int width, int height) const { | 85 const CapturedFrame* aliased_frame, int width, int height) const { |
21 std::unique_ptr<WebRtcVideoFrame> frame(new WebRtcVideoFrame()); | 86 std::unique_ptr<WebRtcVideoFrame> frame(new WebRtcVideoFrame()); |
22 if (!frame->Init(aliased_frame, width, height, apply_rotation_)) { | 87 if (!frame->Init(aliased_frame, width, height, apply_rotation_)) { |
23 LOG(LS_ERROR) << | 88 LOG(LS_ERROR) << |
24 "Failed to create WebRtcVideoFrame in CreateAliasedFrame."; | 89 "Failed to create WebRtcVideoFrame in CreateAliasedFrame."; |
25 return NULL; | 90 return NULL; |
26 } | 91 } |
27 return frame.release(); | 92 return frame.release(); |
28 } | 93 } |
29 | 94 |
30 } // namespace cricket | 95 } // namespace cricket |
OLD | NEW |