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

  /external/webrtc/webrtc/modules/video_processing/test/
video_processing_unittest.cc 59 : vp_(NULL),
69 vp_ = VideoProcessing::Create();
70 ASSERT_TRUE(vp_ != NULL);
90 delete vp_;
91 vp_ = NULL;
104 vp_->GetFrameStats(videoFrame, &stats);
107 EXPECT_EQ(-1, vp_->Deflickering(&videoFrame, &stats));
109 EXPECT_EQ(-3, vp_->BrightnessDetection(videoFrame, stats));
118 vp_->ClearFrameStats(&stats);
125 EXPECT_EQ(-1, vp_->Deflickering(&video_frame_, &stats))
    [all...]
brightness_detection_test.cc 33 vp_->GetFrameStats(video_frame_, &stats);
35 ASSERT_GE(brightnessWarning = vp_->BrightnessDetection(video_frame_, stats),
70 vp_->GetFrameStats(video_frame_, &stats);
72 ASSERT_GE(brightnessWarning = vp_->BrightnessDetection(video_frame_, stats),
104 vp_->GetFrameStats(video_frame_, &stats);
106 ASSERT_GE(brightnessWarning = vp_->BrightnessDetection(video_frame_, stats),
video_processing_unittest.h 34 VideoProcessing* vp_; member in class:webrtc::VideoProcessingTest
deflickering_test.cc 66 vp_->GetFrameStats(video_frame_, &stats);
68 ASSERT_EQ(0, vp_->Deflickering(&video_frame_, &stats));
  /external/webrtc/webrtc/video/
vie_encoder.cc 88 VideoProcessing* vp_; member in class:webrtc::QMVideoSettingsCallback
114 vp_(VideoProcessing::Create()),
115 qm_callback_(new QMVideoSettingsCallback(vp_.get())),
143 vp_->EnableTemporalDecimation(true);
146 vp_->EnableContentAnalysis(false);
213 if (vp_->SetTargetResolution(video_codec.width, video_codec.height,
364 frame_to_send = vp_->PreprocessFrame(video_frame);
397 vcm_->AddVideoFrame(*frame_to_send, vp_->GetContentMetrics(),
439 vp_->EnableTemporalDecimation(false);
442 vp_->EnableTemporalDecimation(true)
    [all...]
vie_encoder.h 156 const rtc::scoped_ptr<VideoProcessing> vp_; member in class:webrtc::ViEEncoder

Completed in 233 milliseconds