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

  /external/webrtc/webrtc/common_video/libyuv/
webrtc_libyuv.cc 295 double I420PSNR(const VideoFrame* ref_frame, const VideoFrame* test_frame) {
296 if (!ref_frame || !test_frame)
298 else if ((ref_frame->width() != test_frame->width()) ||
299 (ref_frame->height() != test_frame->height()))
310 test_frame->buffer(kYPlane),
311 test_frame->stride(kYPlane),
312 test_frame->buffer(kUPlane),
313 test_frame->stride(kUPlane),
314 test_frame->buffer(kVPlane),
315 test_frame->stride(kVPlane)
    [all...]
  /external/webrtc/webrtc/tools/psnr_ssim_analyzer/
psnr_ssim_analyzer.cc 37 uint8_t* test_frame = new uint8_t[size]; local
48 height, frame_counter, test_frame);
55 webrtc::test::kPSNR, ref_frame, test_frame, width, height);
57 webrtc::test::kSSIM, ref_frame, test_frame, width, height);
61 delete[] test_frame;
  /external/webrtc/webrtc/voice_engine/
utility_unittest.cc 82 void VerifyParams(const AudioFrame& ref_frame, const AudioFrame& test_frame) {
83 EXPECT_EQ(ref_frame.num_channels_, test_frame.num_channels_);
84 EXPECT_EQ(ref_frame.samples_per_channel_, test_frame.samples_per_channel_);
85 EXPECT_EQ(ref_frame.sample_rate_hz_, test_frame.sample_rate_hz_);
89 // |test_frame|. It allows for up to a |max_delay| in samples between the
91 float ComputeSNR(const AudioFrame& ref_frame, const AudioFrame& test_frame,
93 VerifyParams(ref_frame, test_frame);
101 int error = ref_frame.data_[i] - test_frame.data_[i + delay];
118 const AudioFrame& test_frame) {
119 VerifyParams(ref_frame, test_frame);
    [all...]
  /external/webrtc/webrtc/common_video/libyuv/include/
webrtc_libyuv.h 152 double I420PSNR(const VideoFrame* ref_frame, const VideoFrame* test_frame);
154 double I420SSIM(const VideoFrame* ref_frame, const VideoFrame* test_frame);
  /external/webrtc/webrtc/test/testsupport/metrics/
video_metrics.cc 113 VideoFrame test_frame; local
120 test_frame.CreateEmptyFrame(width, height, width, half_width, half_width);
129 kVideoRotation_0, &test_frame);
132 CalculateFrame(kPSNR, &ref_frame, &test_frame, frame_number,
136 CalculateFrame(kSSIM, &ref_frame, &test_frame, frame_number,
140 CalculateFrame(kPSNR, &ref_frame, &test_frame, frame_number,
142 CalculateFrame(kSSIM, &ref_frame, &test_frame, frame_number,
  /external/webrtc/talk/app/webrtc/
remotevideocapturer_unittest.cc 127 cricket::WebRtcVideoFrame test_frame; local
128 capturer_.SignalVideoFrame(&capturer_, &test_frame);
130 capturer_.SignalVideoFrame(&capturer_, &test_frame);
videosource_unittest.cc 226 cricket::WebRtcVideoFrame test_frame; local
228 frameinput->RenderFrame(&test_frame);
  /external/webrtc/webrtc/tools/frame_analyzer/
video_quality_analysis.cc 180 const uint8_t* test_frame,
183 if (!ref_frame || !test_frame)
192 const uint8_t* src_y_b = test_frame;
241 uint8_t* test_frame = new uint8_t[size]; local
261 test_frame);
271 double result_psnr = CalculateMetrics(kPSNR, reference_frame, test_frame,
273 double result_ssim = CalculateMetrics(kSSIM, reference_frame, test_frame,
289 delete[] test_frame;
video_quality_analysis.h 66 const uint8_t* test_frame,
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_gc.py 184 def test_frame(self): member in class:GCTests
test_inspect.py 179 def test_frame(self): member in class:TestInterpreterStack
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_gc.py 184 def test_frame(self): member in class:GCTests
test_inspect.py 179 def test_frame(self): member in class:TestInterpreterStack
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_gc.py 184 def test_frame(self): member in class:GCTests
test_inspect.py 179 def test_frame(self): member in class:TestInterpreterStack
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_gc.py 184 def test_frame(self): member in class:GCTests
test_inspect.py 179 def test_frame(self): member in class:TestInterpreterStack
    [all...]

Completed in 174 milliseconds