Searched defs:out_frame (Results 1 - 15 of 15) sorted by relevance

/external/chromium_org/third_party/webrtc/modules/video_processing/main/test/unit_test/
H A Dvideo_processing_unittest.cc118 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
281 I420VideoFrame* out_frame = NULL; local
[all...]
/external/chromium_org/chrome/test/chromedriver/chrome/
H A Dstub_web_view.cc71 std::string* out_frame) {
68 GetFrameByFunction(const std::string& frame, const std::string& function, const base::ListValue& args, std::string* out_frame) argument
H A Dweb_view_impl.cc223 std::string* out_frame) {
237 return dom_tracker_->GetFrameIdForNode(node_id, out_frame);
220 GetFrameByFunction(const std::string& frame, const std::string& function, const base::ListValue& args, std::string* out_frame) argument
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Dvideoadapter_unittest.cc104 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...]
H A Dvideoadapter.cc152 // 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)
264 AdaptFrame(VideoFrame* in_frame, VideoFrame** out_frame) argument
[all...]
H A Dvideocapturer.cc527 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/common_video/libyuv/
H A Dlibyuv_unittest.cc356 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,
[all...]
H A Dscaler_unittest.cc401 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/webrtc/video_engine/
H A Dvie_renderer.cc193 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/modules/audio_processing/ns/
H A Dnsx_core_mips.c509 int16_t* out_frame,
518 int16_t *out = out_frame;
508 WebRtcNsx_SynthesisUpdate_mips(NsxInst_t* inst, int16_t* out_frame, int16_t gain_factor) argument
H A Dnsx_core_neon.c493 int16_t* out_frame,
547 int16_t* ptr_out = &out_frame[0];
553 // out_frame[i] = inst->synthesisBuffer[i]; // Q0
492 WebRtcNsx_SynthesisUpdateNeon(NsxInst_t* inst, int16_t* out_frame, int16_t gain_factor) argument
H A Dnsx_core.c492 int16_t* out_frame,
512 out_frame[i] = inst->synthesisBuffer[i]; // Q0
491 SynthesisUpdateC(NsxInst_t* inst, int16_t* out_frame, int16_t gain_factor) argument
/external/webrtc/src/modules/audio_processing/ns/
H A Dnsx_core_neon.c498 int16_t* out_frame,
552 int16_t* ptr_out = &out_frame[0];
558 // out_frame[i] = inst->synthesisBuffer[i]; // Q0
497 SynthesisUpdateNeon(NsxInst_t* inst, int16_t* out_frame, int16_t gain_factor) argument
H A Dnsx_core.c632 int16_t* out_frame,
652 out_frame[i] = inst->synthesisBuffer[i]; // Q0
631 SynthesisUpdateC(NsxInst_t* inst, int16_t* out_frame, int16_t gain_factor) argument
/external/chromium_org/net/websockets/
H A Dwebsocket_channel_test.cc2863 const WebSocketFrame* out_frame = (*frames)[0]; local
2864 EXPECT_EQ(kBinaryBlobSize, out_frame->header.payload_length);
2865 ASSERT_TRUE(out_frame->data.get());
2866 EXPECT_EQ(0, memcmp(kBinaryBlob, out_frame->data->data(), kBinaryBlobSize));

Completed in 377 milliseconds