HomeSort by relevance Sort by last modified time
    Searched refs:vpm_ (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/third_party/webrtc/modules/video_processing/main/test/unit_test/
video_processing_unittest.cc 33 : vpm_(NULL),
43 vpm_ = VideoProcessingModule::Create(0);
44 ASSERT_TRUE(vpm_ != NULL);
65 if (vpm_ != NULL) {
66 VideoProcessingModule::Destroy(vpm_);
68 vpm_ = NULL;
79 EXPECT_EQ(-3, vpm_->GetFrameStats(&stats, videoFrame));
81 EXPECT_EQ(-1, vpm_->ColorEnhancement(&videoFrame));
83 EXPECT_EQ(-1, vpm_->Deflickering(&videoFrame, &stats));
85 EXPECT_EQ(-1, vpm_->Denoising(&videoFrame))
    [all...]
brightness_detection_test.cc 31 ASSERT_EQ(0, vpm_->GetFrameStats(&stats, video_frame_));
32 ASSERT_GE(brightnessWarning = vpm_->BrightnessDetection(video_frame_,
72 ASSERT_EQ(0, vpm_->GetFrameStats(&stats, video_frame_));
73 ASSERT_GE(brightnessWarning = vpm_->BrightnessDetection(video_frame_,
108 ASSERT_EQ(0, vpm_->GetFrameStats(&stats, video_frame_));
109 ASSERT_GE(brightnessWarning = vpm_->BrightnessDetection(video_frame_,
video_processing_unittest.h 34 VideoProcessingModule* vpm_; member in class:webrtc::VideoProcessingModuleTest
deflickering_test.cc 66 ASSERT_EQ(0, vpm_->GetFrameStats(&stats, video_frame_));
67 ASSERT_EQ(0, vpm_->Deflickering(&video_frame_, &stats));
denoising_test.cc 106 ASSERT_GE(modifiedPixels = vpm_->Denoising(&video_frame_), 0);
  /external/chromium_org/third_party/webrtc/video_engine/
vie_encoder.cc 96 VideoProcessingModule* vpm_; member in class:webrtc::QMVideoSettingsCallback
143 vpm_(*webrtc::VideoProcessingModule::Create(ViEModuleId(engine_id,
182 vpm_.EnableTemporalDecimation(true);
185 vpm_.EnableContentAnalysis(false);
195 qm_callback_ = new QMVideoSettingsCallback(&vpm_);
245 module_process_thread_.DeRegisterModule(&vpm_);
249 VideoProcessingModule::Destroy(&vpm_);
341 if (vpm_.SetTargetResolution(video_codec.width, video_codec.height,
420 vpm_.SetInputFrameResampleMode(resampling_mode);
535 const int ret = vpm_.PreprocessFrame(*video_frame, &decimated_frame)
    [all...]
vie_encoder.h 199 VideoProcessingModule& vpm_; member in class:webrtc::ViEEncoder

Completed in 387 milliseconds