Home
last modified time | relevance | path

Searched refs:orig_frame_ (Results 1 – 4 of 4) sorted by relevance

/external/webrtc/webrtc/common_video/libyuv/
Dlibyuv_unittest.cc85 VideoFrame orig_frame_; member in webrtc::TestLibYuv
96 orig_frame_(), in TestLibYuv()
114 EXPECT_EQ(0, orig_frame_.CreateFrame(orig_buffer_.get(), in SetUp()
150 EXPECT_EQ(0, ConvertFromI420(orig_frame_, kI420, 0, in TEST_F()
158 psnr = I420PSNR(&orig_frame_, &res_i420_frame); in TEST_F()
170 EXPECT_EQ(0, ConvertFromI420(orig_frame_, kRGB24, 0, res_rgb_buffer2.get())); in TEST_F()
178 psnr = I420PSNR(&orig_frame_, &res_i420_frame); in TEST_F()
186 EXPECT_EQ(0, ConvertFromI420(orig_frame_, kUYVY, 0, out_uyvy_buffer.get())); in TEST_F()
189 psnr = I420PSNR(&orig_frame_, &res_i420_frame); in TEST_F()
200 EXPECT_EQ(0, ConvertFromI420(orig_frame_, kYV12, 0, outYV120Buffer.get())); in TEST_F()
[all …]
/external/webrtc/webrtc/modules/video_processing/
Dcontent_analysis.cc21 : orig_frame_(NULL), in VPMContentAnalysis()
63 orig_frame_ = inputFrame.buffer(kYPlane); in ComputeContentMetrics()
73 memcpy(prev_frame_, orig_frame_, width_ * height_); in ComputeContentMetrics()
173 uint8_t currPixel = orig_frame_[ssn]; in TemporalDiffMetric_C()
234 uint16_t refPixel1 = orig_frame_[ssn1] << 1; in ComputeSpatialMetrics_C()
235 uint16_t refPixel2 = orig_frame_[ssn1] << 2; in ComputeSpatialMetrics_C()
237 uint8_t bottPixel = orig_frame_[ssn2]; in ComputeSpatialMetrics_C()
238 uint8_t topPixel = orig_frame_[ssn3]; in ComputeSpatialMetrics_C()
239 uint8_t rightPixel = orig_frame_[ssn4]; in ComputeSpatialMetrics_C()
240 uint8_t leftPixel = orig_frame_[ssn5]; in ComputeSpatialMetrics_C()
[all …]
Dcontent_analysis.h67 const uint8_t* orig_frame_; variable
Dcontent_analysis_sse2.cc20 const uint8_t* imgBufO = orig_frame_ + border_ * width_ + border_; in TemporalDiffMetric_SSE2()
120 const uint8_t* imgBuf = orig_frame_ + border_ * width_; in ComputeSpatialMetrics_SSE2()