/external/chromium_org/third_party/webrtc/modules/video_processing/main/test/unit_test/ |
video_processing_unittest.cc | 118 I420VideoFrame *out_frame = NULL; local 120 &out_frame)); 190 I420VideoFrame* out_frame = NULL; local 194 EXPECT_EQ(VPM_OK, vpm_->PreprocessFrame(video_frame_, &out_frame)); 195 EXPECT_FALSE(out_frame == NULL); 196 if (out_frame) { 197 EXPECT_EQ(resolution, out_frame->width()); 198 EXPECT_EQ(resolution, out_frame->height()); 202 EXPECT_EQ(VPM_OK, vpm_->PreprocessFrame(video_frame_, &out_frame)); 203 EXPECT_TRUE(out_frame == NULL) 281 I420VideoFrame* out_frame = NULL; local [all...] |
/external/chromium_org/third_party/webrtc/video_engine/ |
vie_renderer.cc | 193 VideoFrame* out_frame = converted_frame_.get(); local 211 int length = ExtractBuffer(video_frame, out_frame->Size(), 212 out_frame->Buffer()); 215 out_frame->SetLength(length); 238 out_frame = NULL; 244 if (out_frame) { 245 external_renderer_->DeliverFrame(out_frame->Buffer(), 246 out_frame->Length(),
|
/external/chromium_org/third_party/webrtc/common_video/libyuv/ |
libyuv_unittest.cc | 356 I420VideoFrame out_frame, test_out_frame; local 357 out_frame.CreateEmptyFrame(width, height, width, 359 CreateImage(&out_frame, plane_offset); 360 test_out_frame.CopyFrame(out_frame); 364 EXPECT_EQ(0, MirrorI420LeftRight(&in_frame, &out_frame)); 365 EXPECT_EQ(0, PrintFrame(&out_frame, "OutputFrame")); 366 EXPECT_EQ(0, MirrorI420LeftRight(&out_frame, &in_frame)); 377 EXPECT_EQ(0, MirrorI420UpDown(&in_frame, &out_frame)); 378 EXPECT_EQ(0, PrintFrame(&out_frame, "OutputFrame")); 379 EXPECT_EQ(0, MirrorI420UpDown(&out_frame, &test_frame)) [all...] |
scaler_unittest.cc | 401 I420VideoFrame in_frame, out_frame; local 413 ConvertFromI420(out_frame, kI420, 0, output_buffer); 414 double psnr = I420PSNR(&in_frame, &out_frame);
|
/external/chromium_org/third_party/libjingle/source/talk/media/base/ |
videoadapter.cc | 152 // out_frame - actual frame output by adapter. Should be a direct scale of 265 VideoFrame** out_frame) { 267 if (!in_frame || !out_frame) { 311 *out_frame = NULL; 333 *out_frame = in_frame; 340 *out_frame = output_frame_.get(); 344 if (in_frame->GetWidth() != (*out_frame)->GetWidth() || 345 in_frame->GetHeight() != (*out_frame)->GetHeight()) { 357 if (previous_width_ && (previous_width_ != (*out_frame)->GetWidth() || 358 previous_height_ != (*out_frame)->GetHeight())) [all...] |
videoadapter_unittest.cc | 104 VideoFrame* out_frame = NULL; local 106 EXPECT_TRUE(video_adapter_->AdaptFrame(&temp_i420, &out_frame)); 107 if (out_frame) { 108 if (out_frame == &temp_i420) { 114 adapted_frame_ = out_frame; 829 VideoFrame* out_frame; local 830 adapter.AdaptFrame(&in_frame, &out_frame); 831 EXPECT_EQ(640u, out_frame->GetWidth()); 832 EXPECT_EQ(360u, out_frame->GetHeight()); 870 VideoFrame* out_frame; local [all...] |
videoadapter.h | 64 // Note that, if no adaptation is required, |out_frame| will refer directly 70 bool AdaptFrame(VideoFrame* in_frame, VideoFrame** out_frame);
|
videocapturer.cc | 527 VideoFrame* out_frame = NULL; local 528 video_adapter_.AdaptFrame(adapted_frame, &out_frame); 529 if (!out_frame) { 534 adapted_frame = out_frame;
|
/external/chromium_org/third_party/webrtc/modules/audio_processing/ns/ |
nsx_core.h | 194 int16_t* out_frame, 230 int16_t* out_frame, 243 int16_t* out_frame,
|
nsx_core_mips.c | 509 int16_t* out_frame, 518 int16_t *out = out_frame; [all...] |
nsx_core_neon.c | 493 int16_t* out_frame, 547 int16_t* ptr_out = &out_frame[0]; 553 // out_frame[i] = inst->synthesisBuffer[i]; // Q0
|
nsx_core_neon.S | 520 @ int16_t* out_frame, 567 vst1.16 {q0, q1}, [r1]! @ out_frame[]
|
nsx_core.c | 492 int16_t* out_frame, 512 out_frame[i] = inst->synthesisBuffer[i]; // Q0 [all...] |
/external/chromium_org/chrome/test/chromedriver/chrome/ |
stub_web_view.h | 48 std::string* out_frame) OVERRIDE;
|
web_view.h | 99 std::string* out_frame) = 0;
|
stub_web_view.cc | 71 std::string* out_frame) {
|
web_view_impl.h | 75 std::string* out_frame) OVERRIDE;
|
web_view_impl.cc | 223 std::string* out_frame) { 237 return dom_tracker_->GetFrameIdForNode(node_id, out_frame);
|
/external/chromium_org/net/websockets/ |
websocket_channel_test.cc | 2863 const WebSocketFrame* out_frame = (*frames)[0]; local [all...] |