2011-07-07 08:21:25 +00:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2011 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 "spatial_resampler.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace webrtc {
|
|
|
|
|
|
|
|
|
|
VPMSimpleSpatialResampler::VPMSimpleSpatialResampler()
|
|
|
|
|
:
|
|
|
|
|
_resamplingMode(kFastRescaling),
|
|
|
|
|
_targetWidth(0),
|
|
|
|
|
_targetHeight(0),
|
2011-12-09 02:46:22 +00:00
|
|
|
_scaler()
|
2011-07-07 08:21:25 +00:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
VPMSimpleSpatialResampler::~VPMSimpleSpatialResampler()
|
|
|
|
|
{
|
2011-12-09 02:46:22 +00:00
|
|
|
//
|
2011-07-07 08:21:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
WebRtc_Word32
|
2011-12-09 02:46:22 +00:00
|
|
|
VPMSimpleSpatialResampler::SetTargetFrameSize(WebRtc_Word32 width,
|
|
|
|
|
WebRtc_Word32 height)
|
2011-07-07 08:21:25 +00:00
|
|
|
{
|
2011-12-09 02:46:22 +00:00
|
|
|
if (_resamplingMode == kNoRescaling) {
|
|
|
|
|
return VPM_OK;
|
|
|
|
|
}
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2011-12-09 02:46:22 +00:00
|
|
|
if (width < 1 || height < 1) {
|
|
|
|
|
return VPM_PARAMETER_ERROR;
|
|
|
|
|
}
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2011-12-09 02:46:22 +00:00
|
|
|
_targetWidth = width;
|
|
|
|
|
_targetHeight = height;
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2011-12-09 02:46:22 +00:00
|
|
|
return VPM_OK;
|
2011-07-07 08:21:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
VPMSimpleSpatialResampler::SetInputFrameResampleMode(VideoFrameResampling
|
|
|
|
|
resamplingMode)
|
|
|
|
|
{
|
2011-12-09 02:46:22 +00:00
|
|
|
_resamplingMode = resamplingMode;
|
2011-07-07 08:21:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
VPMSimpleSpatialResampler::Reset()
|
|
|
|
|
{
|
2011-12-09 02:46:22 +00:00
|
|
|
_resamplingMode = kFastRescaling;
|
|
|
|
|
_targetWidth = 0;
|
|
|
|
|
_targetHeight = 0;
|
2011-07-07 08:21:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
WebRtc_Word32
|
|
|
|
|
VPMSimpleSpatialResampler::ResampleFrame(const VideoFrame& inFrame,
|
|
|
|
|
VideoFrame& outFrame)
|
|
|
|
|
{
|
2011-12-09 02:46:22 +00:00
|
|
|
if (_resamplingMode == kNoRescaling)
|
|
|
|
|
return outFrame.CopyFrame(inFrame);
|
|
|
|
|
// Check if re-sampling is needed
|
|
|
|
|
if ((inFrame.Width() == (WebRtc_UWord32)_targetWidth) &&
|
|
|
|
|
(inFrame.Height() == (WebRtc_UWord32)_targetHeight)) {
|
|
|
|
|
return outFrame.CopyFrame(inFrame);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Setting scaler
|
|
|
|
|
//TODO: Modify scaler types
|
|
|
|
|
int retVal = 0;
|
|
|
|
|
retVal = _scaler.Set(inFrame.Width(), inFrame.Height(),
|
|
|
|
|
_targetWidth, _targetHeight, kI420, kI420, kScaleBox);
|
|
|
|
|
if (retVal < 0)
|
|
|
|
|
return retVal;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Disabling cut/pad for now - only scaling.
|
|
|
|
|
int requiredSize = (WebRtc_UWord32)(_targetWidth * _targetHeight * 3 >> 1);
|
|
|
|
|
outFrame.VerifyAndAllocate(requiredSize);
|
|
|
|
|
outFrame.SetTimeStamp(inFrame.TimeStamp());
|
|
|
|
|
outFrame.SetWidth(_targetWidth);
|
|
|
|
|
outFrame.SetHeight(_targetHeight);
|
|
|
|
|
|
|
|
|
|
retVal = _scaler.Scale(inFrame.Buffer(), outFrame.Buffer(), requiredSize);
|
|
|
|
|
outFrame.SetLength(requiredSize);
|
|
|
|
|
if (retVal == 0)
|
2011-07-07 08:21:25 +00:00
|
|
|
return VPM_OK;
|
2011-12-09 02:46:22 +00:00
|
|
|
else
|
|
|
|
|
return VPM_SCALE_ERROR;
|
2011-07-07 08:21:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
WebRtc_Word32
|
|
|
|
|
VPMSimpleSpatialResampler::TargetHeight()
|
|
|
|
|
{
|
2011-12-09 02:46:22 +00:00
|
|
|
return _targetHeight;
|
2011-07-07 08:21:25 +00:00
|
|
|
}
|
|
|
|
|
|
2011-12-09 02:46:22 +00:00
|
|
|
WebRtc_Word32
|
2011-07-07 08:21:25 +00:00
|
|
|
VPMSimpleSpatialResampler::TargetWidth()
|
|
|
|
|
{
|
2011-12-09 02:46:22 +00:00
|
|
|
return _targetWidth;
|
2011-07-07 08:21:25 +00:00
|
|
|
}
|
|
|
|
|
|
2011-11-01 16:44:24 +00:00
|
|
|
bool
|
2011-12-09 02:46:22 +00:00
|
|
|
VPMSimpleSpatialResampler::ApplyResample(WebRtc_Word32 width,
|
|
|
|
|
WebRtc_Word32 height)
|
2011-11-01 16:44:24 +00:00
|
|
|
{
|
2011-12-09 02:46:22 +00:00
|
|
|
if ((width == _targetWidth && height == _targetHeight) ||
|
|
|
|
|
_resamplingMode == kNoRescaling)
|
|
|
|
|
return false;
|
|
|
|
|
else
|
|
|
|
|
return true;
|
2011-11-01 16:44:24 +00:00
|
|
|
}
|
|
|
|
|
|
2011-07-07 08:21:25 +00:00
|
|
|
} //namespace
|