BUG= R=andrew@webrtc.org Review URL: https://webrtc-codereview.appspot.com/36229004 Cr-Commit-Position: refs/heads/master@{#8517} git-svn-id: http://webrtc.googlecode.com/svn/trunk@8517 4adac7df-926f-26a2-2b94-8c16560cd09d
46 lines
1.4 KiB
C++
46 lines
1.4 KiB
C++
/*
|
|
* Copyright (c) 2014 The WebRTC project authors. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#include "webrtc/modules/desktop_capture/cropped_desktop_frame.h"
|
|
|
|
namespace webrtc {
|
|
|
|
// A DesktopFrame that is a sub-rect of another DesktopFrame.
|
|
class CroppedDesktopFrame : public DesktopFrame {
|
|
public:
|
|
CroppedDesktopFrame(DesktopFrame* frame, const DesktopRect& rect);
|
|
|
|
private:
|
|
rtc::scoped_ptr<DesktopFrame> frame_;
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(CroppedDesktopFrame);
|
|
};
|
|
|
|
DesktopFrame*
|
|
CreateCroppedDesktopFrame(DesktopFrame* frame, const DesktopRect& rect) {
|
|
if (!DesktopRect::MakeSize(frame->size()).ContainsRect(rect)) {
|
|
delete frame;
|
|
return NULL;
|
|
}
|
|
|
|
return new CroppedDesktopFrame(frame, rect);
|
|
}
|
|
|
|
CroppedDesktopFrame::CroppedDesktopFrame(DesktopFrame* frame,
|
|
const DesktopRect& rect)
|
|
: DesktopFrame(rect.size(),
|
|
frame->stride(),
|
|
frame->GetFrameDataAtPos(rect.top_left()),
|
|
frame->shared_memory()),
|
|
frame_(frame) {
|
|
}
|
|
|
|
} // namespace webrtc
|