51 lines
1.4 KiB
C++
51 lines
1.4 KiB
C++
|
|
/*
|
||
|
|
* 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 "modules/video_processing/main/source/brighten.h"
|
||
|
|
|
||
|
|
#include <cstdlib>
|
||
|
|
|
||
|
|
#include "system_wrappers/interface/trace.h"
|
||
|
|
|
||
|
|
namespace webrtc {
|
||
|
|
|
||
|
|
WebRtc_Word32 Brighten(WebRtc_UWord8* frame,
|
||
|
|
int width, int height, int delta) {
|
||
|
|
if (frame == NULL) {
|
||
|
|
WEBRTC_TRACE(webrtc::kTraceError, webrtc::kTraceVideoPreocessing, -1,
|
||
|
|
"Null frame pointer");
|
||
|
|
return VPM_PARAMETER_ERROR;
|
||
|
|
}
|
||
|
|
|
||
|
|
if (width <= 0 || height <= 0) {
|
||
|
|
WEBRTC_TRACE(webrtc::kTraceError, webrtc::kTraceVideoPreocessing, -1,
|
||
|
|
"Invalid frame size");
|
||
|
|
return VPM_PARAMETER_ERROR;
|
||
|
|
}
|
||
|
|
|
||
|
|
int numPixels = width * height;
|
||
|
|
|
||
|
|
int lookUp[256];
|
||
|
|
for (int i = 0; i < 256; i++) {
|
||
|
|
int val = i + delta;
|
||
|
|
lookUp[i] = ((((val < 0) ? 0 : val) > 255) ? 255 : val);
|
||
|
|
}
|
||
|
|
|
||
|
|
WebRtc_UWord8* tempPtr = frame;
|
||
|
|
|
||
|
|
for (int i = 0; i < numPixels; i++) {
|
||
|
|
*tempPtr = static_cast<WebRtc_UWord8>(lookUp[*tempPtr]);
|
||
|
|
tempPtr++;
|
||
|
|
}
|
||
|
|
return VPM_OK;
|
||
|
|
}
|
||
|
|
|
||
|
|
} // namespace webrtc
|