Home
last modified time | relevance | path

Searched refs:out_frame (Results 1 – 12 of 12) sorted by relevance

/external/chromium_org/third_party/libjingle/source/talk/media/base/
Dvideoadapter.cc243 VideoFrame** out_frame) { in AdaptFrame() argument
244 if (!in_frame || !out_frame) { in AdaptFrame()
276 *out_frame = NULL; in AdaptFrame()
295 *out_frame = output_frame_.get(); in AdaptFrame()
301 if (in_frame->GetWidth() != (*out_frame)->GetWidth() || in AdaptFrame()
302 in_frame->GetHeight() != (*out_frame)->GetHeight()) { in AdaptFrame()
309 if (previous_width_ && (previous_width_ != (*out_frame)->GetWidth() || in AdaptFrame()
310 previous_height_ != (*out_frame)->GetHeight())) { in AdaptFrame()
324 << " Output: " << (*out_frame)->GetWidth() in AdaptFrame()
325 << "x" << (*out_frame)->GetHeight() in AdaptFrame()
[all …]
Dvideocapturer.cc481 VideoFrame* out_frame = NULL; in OnFrameCaptured() local
482 SignalAdaptFrame(this, adapted_frame, &out_frame); in OnFrameCaptured()
483 if (!out_frame) { in OnFrameCaptured()
486 adapted_frame = out_frame; in OnFrameCaptured()
Dvideoadapter.h65 bool AdaptFrame(const VideoFrame* in_frame, VideoFrame** out_frame);
/external/webrtc/src/modules/audio_processing/ns/
Dnsx_core.h186 int16_t* out_frame,
Dnsx_core_neon.c498 int16_t* out_frame, in SynthesisUpdateNeon() argument
552 int16_t* ptr_out = &out_frame[0]; in SynthesisUpdateNeon()
Dnsx_core.c632 int16_t* out_frame, in SynthesisUpdateC() argument
652 out_frame[i] = inst->synthesisBuffer[i]; // Q0 in SynthesisUpdateC()
/external/chromium_org/chrome/test/chromedriver/chrome/
Dweb_view.h99 std::string* out_frame) = 0;
Dstub_web_view.cc71 std::string* out_frame) { in GetFrameByFunction() argument
Dstub_web_view.h48 std::string* out_frame) OVERRIDE;
Dweb_view_impl.h68 std::string* out_frame) OVERRIDE;
Dweb_view_impl.cc216 std::string* out_frame) { in GetFrameByFunction() argument
230 return dom_tracker_->GetFrameIdForNode(node_id, out_frame); in GetFrameByFunction()
/external/chromium_org/net/websockets/
Dwebsocket_channel_test.cc2188 const WebSocketFrame* out_frame = (*frames)[0]; in TEST_F() local
2189 EXPECT_EQ(kBinaryBlobSize, out_frame->header.payload_length); in TEST_F()
2190 ASSERT_TRUE(out_frame->data); in TEST_F()
2191 EXPECT_EQ(0, memcmp(kBinaryBlob, out_frame->data->data(), kBinaryBlobSize)); in TEST_F()