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 "webrtc/media/base/videoframefactory.h" | 11 #include "webrtc/media/base/videoframefactory.h" |
12 | 12 |
13 #include <algorithm> | 13 #include <algorithm> |
14 #include "webrtc/media/base/videocapturer.h" | 14 #include "webrtc/media/base/videocapturer.h" |
15 | 15 |
16 namespace cricket { | 16 namespace cricket { |
17 | 17 |
18 std::unique_ptr<VideoFrame> VideoFrameFactory::CreateScaledFrame( | |
19 const CapturedFrame* input_frame, | |
20 int dst_width, | |
21 int dst_height) const { | |
22 // Size of the used portion of the input frame. | |
23 int crop_width = input_frame->width; | |
24 int crop_height = input_frame->height; | |
25 | |
26 // Cropp the input frame, if needed to preserve aspect ratio. | |
27 long aspect_diff = static_cast<long>(crop_width) * dst_height - | |
28 static_cast<long>(crop_height) * dst_width; | |
29 if (aspect_diff > 0) { | |
30 // Horizontal crop. | |
31 | |
32 // TODO(nisse): Old code carried a comment saying that MJPG can | |
perkj_webrtc
2016/05/16 06:48:47
You can add a DCHECK here if you want to check tha
| |
33 // only be cropped vertically, and disabled horizontal cropping in | |
34 // that case. Still needed? | |
35 crop_width -= aspect_diff / dst_height; | |
36 RTC_DCHECK(crop_width > 0); | |
37 } else if (aspect_diff < 0) { | |
38 // Vertical crop. | |
39 crop_height -= (-aspect_diff) / dst_width; | |
40 RTC_DCHECK(crop_height > 0); | |
41 } | |
42 return CreateCroppedAndScaledFrame( | |
43 input_frame, | |
44 (input_frame->width - crop_width) / 2, | |
45 (input_frame->height - crop_height) / 2, | |
46 crop_width, crop_height, | |
47 dst_width, dst_height); | |
48 } | |
49 | |
50 // For backwards compatibility, default implementation in terms of old | |
51 // methods. Ignores the position of the cropping window, and leaves it | |
52 // up to CreateAliasedFrame. | |
53 // TODO(nisse): Delete when Chrome's subclass is updated. | |
54 std::unique_ptr<VideoFrame> VideoFrameFactory::CreateCroppedAndScaledFrame( | |
55 const CapturedFrame* input_frame, | |
56 int crop_x, | |
57 int crop_y, | |
58 int crop_width, | |
59 int crop_height, | |
60 int dst_width, | |
61 int dst_height) const { | |
62 return std::unique_ptr<VideoFrame>(CreateAliasedFrame( | |
63 input_frame, crop_width, crop_height, dst_width, dst_height)); | |
64 } | |
65 | |
18 VideoFrame* VideoFrameFactory::CreateAliasedFrame( | 66 VideoFrame* VideoFrameFactory::CreateAliasedFrame( |
19 const CapturedFrame* input_frame, | 67 const CapturedFrame* input_frame, |
20 int cropped_input_width, | 68 int cropped_input_width, |
21 int cropped_input_height, | 69 int cropped_input_height, |
22 int output_width, | 70 int output_width, |
23 int output_height) const { | 71 int output_height) const { |
24 std::unique_ptr<VideoFrame> cropped_input_frame(CreateAliasedFrame( | 72 std::unique_ptr<VideoFrame> cropped_input_frame(CreateAliasedFrame( |
25 input_frame, cropped_input_width, cropped_input_height)); | 73 input_frame, cropped_input_width, cropped_input_height)); |
26 if (!cropped_input_frame) | 74 if (!cropped_input_frame) |
27 return nullptr; | 75 return nullptr; |
(...skipping 24 matching lines...) Expand all Loading... | |
52 return NULL; | 100 return NULL; |
53 } | 101 } |
54 } else { | 102 } else { |
55 cropped_input_frame->StretchToFrame(output_frame_.get(), true, true); | 103 cropped_input_frame->StretchToFrame(output_frame_.get(), true, true); |
56 output_frame_->SetTimeStamp(cropped_input_frame->GetTimeStamp()); | 104 output_frame_->SetTimeStamp(cropped_input_frame->GetTimeStamp()); |
57 } | 105 } |
58 return output_frame_->Copy(); | 106 return output_frame_->Copy(); |
59 } | 107 } |
60 | 108 |
61 } // namespace cricket | 109 } // namespace cricket |
OLD | NEW |