Searched refs:frame_out (Results 1 – 7 of 7) sorted by relevance
/external/chromium_org/third_party/webrtc/modules/video_coding/main/source/ |
D | jitter_buffer_unittest.cc | 73 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/ |
D | cc_messages_unittest.cc | 517 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/ |
D | vpxdec.c | 304 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/ |
D | vpxdec.c | 306 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/ |
D | script_injection.cc | 190 blink::WebFrame** frame_out) { in NotifyScriptPermitted() argument 212 if (frame_out) in NotifyScriptPermitted() 213 *frame_out = pending_injection->web_frame; in NotifyScriptPermitted()
|
D | script_injection.h | 84 blink::WebFrame** frame_out);
|
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/ |
D | webrtcvideoengine.cc | 3261 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 …]
|