Searched refs:frame_out (Results 1 – 5 of 5) 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 | 501 DelegatedFrameData frame_out; in TEST_F() local 504 &iter, &frame_out)); in TEST_F() 507 scoped_ptr<RenderPass> pass_out = frame_out.render_pass_list.take( in TEST_F() 508 frame_out.render_pass_list.begin()); in TEST_F() 623 DelegatedFrameData frame_out; in TEST_F() local 626 IPC::ParamTraits<DelegatedFrameData>::Read(&msg, &iter, &frame_out)); in TEST_F() 629 frame_out.render_pass_list.take(frame_out.render_pass_list.begin()); in TEST_F() 689 DelegatedFrameData frame_out; in TEST_F() local 692 &iter, &frame_out)); in TEST_F() 694 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 | 346 void show_progress(int frame_in, int frame_out, uint64_t dx_time) { in show_progress() argument 349 frame_in, frame_out, dx_time, in show_progress() 350 (double)frame_out * 1000000.0 / (double)dx_time); in show_progress() 708 int frame_in = 0, frame_out = 0, flipuv = 0, noblit = 0; in main_loop() local 1066 ++frame_out; in main_loop() 1080 show_progress(frame_in, frame_out, dx_time); in main_loop() 1088 if (frame_out == 1) { in main_loop() 1158 if (frame_out == 1) { in main_loop() 1180 if (frame_out == 1) { in main_loop() 1226 show_progress(frame_in, frame_out, dx_time); in main_loop()
|
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/ |
D | webrtcvideoengine.cc | 3203 const VideoFrame* frame_out = frame; in SendFrame() local 3207 send_channel->ProcessFrame(*frame_out, mute, processed_frame.use()); in SendFrame() 3209 frame_out = processed_frame.get(); in SendFrame() 3215 frame_i420.y_plane = const_cast<unsigned char*>(frame_out->GetYPlane()); in SendFrame() 3216 frame_i420.u_plane = const_cast<unsigned char*>(frame_out->GetUPlane()); in SendFrame() 3217 frame_i420.v_plane = const_cast<unsigned char*>(frame_out->GetVPlane()); in SendFrame() 3218 frame_i420.y_pitch = frame_out->GetYPitch(); in SendFrame() 3219 frame_i420.u_pitch = frame_out->GetUPitch(); in SendFrame() 3220 frame_i420.v_pitch = frame_out->GetVPitch(); in SendFrame() 3221 frame_i420.width = static_cast<uint16>(frame_out->GetWidth()); in SendFrame() [all …]
|