Home
last modified time | relevance | path

Searched refs:content_metrics_ (Results 1 – 7 of 7) sorted by relevance

/external/webrtc/webrtc/modules/video_processing/
Dcontent_analysis.cc33 content_metrics_(NULL) { in VPMContentAnalysis()
82 if (content_metrics_ != NULL) { in Release()
83 delete content_metrics_; in Release()
84 content_metrics_ = NULL; in Release()
117 if (content_metrics_ != NULL) { in Initialize()
118 delete content_metrics_; in Initialize()
132 content_metrics_ = new VideoContentMetrics(); in Initialize()
133 if (content_metrics_ == NULL) { in Initialize()
272 content_metrics_->spatial_pred_err = spatial_pred_err_; in ContentMetrics()
273 content_metrics_->spatial_pred_err_h = spatial_pred_err_h_; in ContentMetrics()
[all …]
Dframe_preprocessor.cc18 : content_metrics_(nullptr), in VPMFramePreprocessor()
37 content_metrics_ = nullptr; in Reset()
131 content_metrics_ = ca_->ComputeContentMetrics(*current_frame); in PreprocessFrame()
138 return content_metrics_; in GetContentMetrics()
Dcontent_analysis.h82 VideoContentMetrics* content_metrics_; variable
Dframe_preprocessor.h71 VideoContentMetrics* content_metrics_; variable
/external/webrtc/webrtc/modules/video_coding/
Dqm_select.cc26 : content_metrics_(NULL), in VCMQmMethod()
55 content_metrics_ = contentMetrics; in UpdateContent()
59 if (content_metrics_) { in ComputeMotionNFD()
60 motion_.value = content_metrics_->motion_magnitude; in ComputeMotionNFD()
76 if (content_metrics_) { in ComputeSpatial()
77 spatial_err = content_metrics_->spatial_pred_err; in ComputeSpatial()
78 spatial_err_h = content_metrics_->spatial_pred_err_h; in ComputeSpatial()
79 spatial_err_v = content_metrics_->spatial_pred_err_v; in ComputeSpatial()
312 if (content_metrics_ == NULL) { in SelectResolution()
873 if (content_metrics_) { in SelectSpatialDirectionMode()
[all …]
Dqm_select_unittest.cc36 content_metrics_(new VideoContentMetrics()), in QmSelectTest()
39 VideoContentMetrics* content_metrics_; member in webrtc::QmSelectTest
71 delete content_metrics_; in TearDown()
1255 content_metrics_->motion_magnitude = motion_metric; in UpdateQmContentData()
1256 content_metrics_->spatial_pred_err = spatial_metric; in UpdateQmContentData()
1257 content_metrics_->spatial_pred_err_h = spatial_metric_horiz; in UpdateQmContentData()
1258 content_metrics_->spatial_pred_err_v = spatial_metric_vert; in UpdateQmContentData()
1259 qm_resolution_->UpdateContent(content_metrics_); in UpdateQmContentData()
Dqm_select.h151 const VideoContentMetrics* content_metrics_;