When targeting 32-bit Linux, we need to pass -msse2 to gcc to compile SSE2 intrinsics. However, -msse2 also gives gcc license to automatically generate SSE2 instructions wherever it pleases. This will crash our code on processors without SSE2 support. This change breaks the files with SSE2 intrinsics into separate targets, such that we can limit the scope of -msse2 to where it's needed. We no longer need to employ the WEBRTC_USE_SSE2 define; the build system decides when SSE2 is supported and compiles the appropriate files. TBR=bjornv@webrtc.org TEST=audioproc (performance testing), audioproc_unittest, video_processing_unittests, build on Linux (targeting ia32/x64, with disable_sse2==0/1), Mac, Windows Review URL: http://webrtc-codereview.appspot.com/352008 git-svn-id: http://webrtc.googlecode.com/svn/trunk@1425 4adac7df-926f-26a2-2b94-8c16560cd09d
96 lines
3.3 KiB
C++
96 lines
3.3 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.
|
|
*/
|
|
|
|
#ifndef VPM_CONTENT_ANALYSIS_H
|
|
#define VPM_CONTENT_ANALYSIS_H
|
|
|
|
#include "typedefs.h"
|
|
#include "module_common_types.h"
|
|
#include "video_processing_defines.h"
|
|
|
|
namespace webrtc {
|
|
|
|
class VPMContentAnalysis
|
|
{
|
|
public:
|
|
// When |runtime_cpu_detection| is true, runtime selection of an optimized
|
|
// code path is allowed.
|
|
VPMContentAnalysis(bool runtime_cpu_detection);
|
|
~VPMContentAnalysis();
|
|
|
|
// Initialize ContentAnalysis - should be called prior to
|
|
// extractContentFeature
|
|
// Inputs: width, height
|
|
// Return value: 0 if OK, negative value upon error
|
|
WebRtc_Word32 Initialize(WebRtc_UWord16 width, WebRtc_UWord16 height);
|
|
|
|
// Extract content Feature - main function of ContentAnalysis
|
|
// Input: new frame
|
|
// Return value: pointer to structure containing content Analysis
|
|
// metrics or NULL value upon error
|
|
VideoContentMetrics* ComputeContentMetrics(const VideoFrame* inputFrame);
|
|
|
|
// Release all allocated memory
|
|
// Output: 0 if OK, negative value upon error
|
|
WebRtc_Word32 Release();
|
|
|
|
private:
|
|
|
|
// return motion metrics
|
|
VideoContentMetrics* ContentMetrics();
|
|
|
|
// Normalized temporal difference metric: for motion magnitude
|
|
typedef WebRtc_Word32 (VPMContentAnalysis::*TemporalDiffMetricFunc)();
|
|
TemporalDiffMetricFunc TemporalDiffMetric;
|
|
WebRtc_Word32 TemporalDiffMetric_C();
|
|
|
|
// Motion metric method: call 2 metrics (magnitude and size)
|
|
WebRtc_Word32 ComputeMotionMetrics();
|
|
|
|
// Spatial metric method: computes the 3 frame-average spatial
|
|
// prediction errors (1x2,2x1,2x2)
|
|
typedef WebRtc_Word32 (VPMContentAnalysis::*ComputeSpatialMetricsFunc)();
|
|
ComputeSpatialMetricsFunc ComputeSpatialMetrics;
|
|
WebRtc_Word32 ComputeSpatialMetrics_C();
|
|
|
|
#if defined(WEBRTC_ARCH_X86_FAMILY)
|
|
WebRtc_Word32 ComputeSpatialMetrics_SSE2();
|
|
WebRtc_Word32 TemporalDiffMetric_SSE2();
|
|
#endif
|
|
|
|
const WebRtc_UWord8* _origFrame;
|
|
WebRtc_UWord8* _prevFrame;
|
|
WebRtc_UWord16 _width;
|
|
WebRtc_UWord16 _height;
|
|
WebRtc_UWord32 _skipNum;
|
|
WebRtc_Word32 _border;
|
|
|
|
// Content Metrics:
|
|
// stores the local average of the metrics
|
|
float _motionMagnitudeNZ; // motion class
|
|
float _spatialPredErr; // spatial class
|
|
float _spatialPredErrH; // spatial class
|
|
float _spatialPredErrV; // spatial class
|
|
float _sizeZeroMotion; // motion class
|
|
float _motionPredErr; // complexity class:
|
|
float _motionHorizontalness; // coherence class
|
|
float _motionClusterDistortion; // coherence class
|
|
|
|
bool _firstFrame;
|
|
bool _CAInit;
|
|
|
|
VideoContentMetrics* _cMetrics;
|
|
|
|
}; // end of VPMContentAnalysis class definition
|
|
|
|
} // namespace
|
|
|
|
#endif
|