Searched refs:vp_ (Results 1 – 6 of 6) sorted by relevance
/external/webrtc/webrtc/modules/video_processing/test/ |
D | video_processing_unittest.cc | 59 : vp_(NULL), in VideoProcessingTest() 69 vp_ = VideoProcessing::Create(); in SetUp() 70 ASSERT_TRUE(vp_ != NULL); in SetUp() 90 delete vp_; in TearDown() 91 vp_ = NULL; in TearDown() 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 …]
|
D | brightness_detection_test.cc | 33 vp_->GetFrameStats(video_frame_, &stats); in TEST_F() 35 ASSERT_GE(brightnessWarning = vp_->BrightnessDetection(video_frame_, stats), in TEST_F() 70 vp_->GetFrameStats(video_frame_, &stats); in TEST_F() 72 ASSERT_GE(brightnessWarning = vp_->BrightnessDetection(video_frame_, stats), in TEST_F() 104 vp_->GetFrameStats(video_frame_, &stats); in TEST_F() 106 ASSERT_GE(brightnessWarning = vp_->BrightnessDetection(video_frame_, stats), in TEST_F()
|
D | deflickering_test.cc | 66 vp_->GetFrameStats(video_frame_, &stats); in TEST_F() 68 ASSERT_EQ(0, vp_->Deflickering(&video_frame_, &stats)); in TEST_F()
|
D | video_processing_unittest.h | 34 VideoProcessing* vp_; variable
|
/external/webrtc/webrtc/video/ |
D | vie_encoder.cc | 88 VideoProcessing* vp_; member in webrtc::QMVideoSettingsCallback 114 vp_(VideoProcessing::Create()), in ViEEncoder() 115 qm_callback_(new QMVideoSettingsCallback(vp_.get())), in ViEEncoder() 143 vp_->EnableTemporalDecimation(true); in Init() 146 vp_->EnableContentAnalysis(false); in Init() 213 if (vp_->SetTargetResolution(video_codec.width, video_codec.height, in SetEncoder() 364 frame_to_send = vp_->PreprocessFrame(video_frame); in DeliverFrame() 397 vcm_->AddVideoFrame(*frame_to_send, vp_->GetContentMetrics(), in DeliverFrame() 439 vp_->EnableTemporalDecimation(false); in SetSenderBufferingMode() 442 vp_->EnableTemporalDecimation(true); in SetSenderBufferingMode() [all …]
|
D | vie_encoder.h | 156 const rtc::scoped_ptr<VideoProcessing> vp_; variable
|