Home
last modified time | relevance | path

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

/external/webrtc/modules/video_coding/utility/
Dframerate_controller_unittest.cc31 if (framerate_controller.DropFrame(timestamp_ms)) { in TEST()
55 if (framerate_controller.DropFrame(timestamp_ms)) { in TEST()
67 ASSERT_FALSE(framerate_controller.DropFrame(66)); in TEST()
69 EXPECT_FALSE(framerate_controller.DropFrame(33)); in TEST()
74 ASSERT_FALSE(framerate_controller.DropFrame(33)); in TEST()
76 EXPECT_TRUE(framerate_controller.DropFrame(34)); in TEST()
85 ASSERT_FALSE(framerate_controller.DropFrame(1 * input_frame_duration_ms)); in TEST()
87 EXPECT_TRUE(framerate_controller.DropFrame(2 * input_frame_duration_ms)); in TEST()
Dframe_dropper_unittest.cc57 EXPECT_FALSE(frame_dropper_.DropFrame()); in ValidateNoDropsAtTargetBitrate()
63 EXPECT_FALSE(frame_dropper_.DropFrame()); in ValidateNoDropsAtTargetBitrate()
83 if (!frame_dropper_.DropFrame()) { in ValidateThroughputMatchesTargetBitrate()
91 if (!frame_dropper_.DropFrame()) { in ValidateThroughputMatchesTargetBitrate()
115 EXPECT_FALSE(frame_dropper_.DropFrame()); in TEST_F()
120 EXPECT_TRUE(frame_dropper_.DropFrame()); in TEST_F()
127 EXPECT_FALSE(frame_dropper_.DropFrame()); in TEST_F()
Dframerate_controller.h29 bool DropFrame(uint32_t timestamp_ms) const;
Dframe_dropper.h38 bool DropFrame();
Dframerate_controller.cc46 bool FramerateController::DropFrame(uint32_t timestamp_ms) const { in DropFrame() function in webrtc::FramerateController
Dframe_dropper.cc174 bool FrameDropper::DropFrame() { in DropFrame() function in webrtc::FrameDropper
/external/webrtc/modules/video_coding/codecs/vp9/
Dvp9_impl.h89 bool DropFrame(uint8_t spatial_idx, uint32_t rtp_timestamp);
Dvp9_impl.cc919 if (variable_framerate_controller_.DropFrame(frame_timestamp_ms)) { in Encode()
926 if (framerate_controller_[sl_idx].DropFrame(frame_timestamp_ms)) { in Encode()
/external/webrtc/modules/video_coding/
Djitter_buffer_unittest.cc195 void DropFrame(int num_packets) { in DropFrame() function in webrtc::TestRunningJitterBuffer
1449 DropFrame(1); in TEST_F()
1550 DropFrame(1); in TEST_F()
1602 DropFrame(max_nack_list_size_ + 1); in TEST_F()
1629 DropFrame(10); in TEST_F()
/external/webrtc/media/engine/
Dsimulcast_encoder_adapter.cc403 if (streaminfos_[stream_idx].framerate_controller->DropFrame( in Encode()
/external/webrtc/video/
Dvideo_stream_encoder.cc1281 if (frame_dropping_enabled && frame_dropper_.DropFrame()) { in MaybeEncodeVideoFrame()
1865 if (frame_dropper_.DropFrame()) { in RunPostEncode()
/external/webrtc/modules/video_coding/codecs/vp8/
Dlibvpx_vp8_encoder.cc968 framerate_controller_.DropFrame(frame.timestamp() / kRtpTicksPerMs)) { in Encode()