Home
last modified time | relevance | path

Searched refs:frame_out (Results 1 – 7 of 7) sorted by relevance

/external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
Djitter_buffer_unittest.cc73 void CheckOutFrame(VCMEncodedFrame* frame_out, in CheckOutFrame() argument
76 ASSERT_TRUE(frame_out); in CheckOutFrame()
78 const uint8_t* outData = frame_out->Buffer(); in CheckOutFrame()
89 EXPECT_EQ(size, frame_out->Length()); in CheckOutFrame()
272 VCMEncodedFrame* frame_out = DecodeCompleteFrame(); in TEST_F() local
273 CheckOutFrame(frame_out, size_, false); in TEST_F()
274 EXPECT_EQ(kVideoFrameKey, frame_out->FrameType()); in TEST_F()
285 VCMEncodedFrame* frame_out = DecodeCompleteFrame(); in TEST_F() local
287 EXPECT_TRUE(frame_out == NULL); in TEST_F()
297 frame_out = DecodeCompleteFrame(); in TEST_F()
[all …]
/external/chromium_org/content/common/
Dcc_messages_unittest.cc517 DelegatedFrameData frame_out; in TEST_F() local
520 &iter, &frame_out)); in TEST_F()
523 scoped_ptr<RenderPass> pass_out = frame_out.render_pass_list.take( in TEST_F()
524 frame_out.render_pass_list.begin()); in TEST_F()
637 DelegatedFrameData frame_out; in TEST_F() local
640 IPC::ParamTraits<DelegatedFrameData>::Read(&msg, &iter, &frame_out)); in TEST_F()
643 frame_out.render_pass_list.take(frame_out.render_pass_list.begin()); in TEST_F()
701 DelegatedFrameData frame_out; in TEST_F() local
704 &iter, &frame_out)); in TEST_F()
706 ASSERT_EQ(2u, frame_out.resource_list.size()); in TEST_F()
[all …]
/external/libvpx/libvpx/
Dvpxdec.c304 void show_progress(int frame_in, int frame_out, uint64_t dx_time) { in show_progress() argument
307 frame_in, frame_out, dx_time, in show_progress()
308 (double)frame_out * 1000000.0 / (double)dx_time); in show_progress()
493 int frame_in = 0, frame_out = 0, flipuv = 0, noblit = 0; in main_loop() local
825 ++frame_out; in main_loop()
839 show_progress(frame_in, frame_out, dx_time); in main_loop()
847 if (frame_out == 1) { in main_loop()
881 if (frame_out == 1) { in main_loop()
929 show_progress(frame_in, frame_out, dx_time); in main_loop()
/external/chromium_org/third_party/libvpx/source/libvpx/
Dvpxdec.c306 void show_progress(int frame_in, int frame_out, uint64_t dx_time) { in show_progress() argument
309 frame_in, frame_out, dx_time, in show_progress()
310 (double)frame_out * 1000000.0 / (double)dx_time); in show_progress()
495 int frame_in = 0, frame_out = 0, flipuv = 0, noblit = 0; in main_loop() local
829 ++frame_out; in main_loop()
843 show_progress(frame_in, frame_out, dx_time); in main_loop()
851 if (frame_out == 1) { in main_loop()
885 if (frame_out == 1) { in main_loop()
933 show_progress(frame_in, frame_out, dx_time); in main_loop()
/external/chromium_org/extensions/renderer/
Dscript_injection.cc190 blink::WebFrame** frame_out) { in NotifyScriptPermitted() argument
212 if (frame_out) in NotifyScriptPermitted()
213 *frame_out = pending_injection->web_frame; in NotifyScriptPermitted()
Dscript_injection.h84 blink::WebFrame** frame_out);
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
Dwebrtcvideoengine.cc3261 const VideoFrame* frame_out = frame; in SendFrame() local
3265 send_channel->ProcessFrame(*frame_out, mute, processed_frame.use()); in SendFrame()
3267 frame_out = processed_frame.get(); in SendFrame()
3273 frame_i420.y_plane = const_cast<unsigned char*>(frame_out->GetYPlane()); in SendFrame()
3274 frame_i420.u_plane = const_cast<unsigned char*>(frame_out->GetUPlane()); in SendFrame()
3275 frame_i420.v_plane = const_cast<unsigned char*>(frame_out->GetVPlane()); in SendFrame()
3276 frame_i420.y_pitch = frame_out->GetYPitch(); in SendFrame()
3277 frame_i420.u_pitch = frame_out->GetUPitch(); in SendFrame()
3278 frame_i420.v_pitch = frame_out->GetVPitch(); in SendFrame()
3279 frame_i420.width = static_cast<uint16>(frame_out->GetWidth()); in SendFrame()
[all …]