Home
last modified time | relevance | path

Searched refs:captured_frames (Results 1 – 6 of 6) sorted by relevance

/external/webrtc/test/scenario/
Dvideo_frame_matcher.cc56 layer.second.captured_frames.push_back(std::move(copy)); in OnCapturedFrame()
76 for (auto& captured : layer.captured_frames) { in OnDecodedFrame()
92 while (!layer.captured_frames.empty() && in OnDecodedFrame()
93 layer.captured_frames.front().matched) { in OnDecodedFrame()
94 HandleMatch(std::move(layer.captured_frames.front()), layer_id); in OnDecodedFrame()
95 layer.captured_frames.pop_front(); in OnDecodedFrame()
126 while (!layer.second.captured_frames.empty()) { in Finalize()
127 HandleMatch(std::move(layer.second.captured_frames.front()), layer.first); in Finalize()
128 layer.second.captured_frames.pop_front(); in Finalize()
Dvideo_frame_matcher.h67 std::deque<CapturedFrame> captured_frames; member
/external/webrtc/test/pc/e2e/analyzer/video/
Ddefault_video_quality_analyzer_test.cc110 std::map<uint16_t, VideoFrame> captured_frames; in TEST() local
117 captured_frames.insert({frame.id(), frame}); in TEST()
124 VideoFrame received_frame = DeepCopy(captured_frames.at(frame_id)); in TEST()
161 std::map<uint16_t, VideoFrame> captured_frames; in TEST() local
169 captured_frames.insert({frame.id(), frame}); in TEST()
177 VideoFrame received_frame = DeepCopy(captured_frames.at(frame_id)); in TEST()
197 captured_frames.insert({frame.id(), frame}); in TEST()
205 VideoFrame received_frame = DeepCopy(captured_frames.at(frame_id)); in TEST()
242 std::map<uint16_t, VideoFrame> captured_frames; in TEST() local
249 captured_frames.insert({frame.id(), frame}); in TEST()
[all …]
/external/webrtc/media/base/
Dvideo_adapter_unittest.cc67 int captured_frames = 0; member
101 ++stats_.captured_frames; in AdaptFrame()
173 EXPECT_GE(stats.captured_frames, 10); in TEST_P()
186 EXPECT_GE(stats.captured_frames, 40); in TEST_P()
199 EXPECT_GE(adapter_wrapper_->GetStats().captured_frames, 1); in TEST_P()
203 EXPECT_GE(adapter_wrapper_->GetStats().captured_frames, 2); in TEST_P()
207 EXPECT_GE(adapter_wrapper_->GetStats().captured_frames, 3); in TEST_P()
211 EXPECT_GE(adapter_wrapper_->GetStats().captured_frames, 4); in TEST_P()
215 EXPECT_GE(adapter_wrapper_->GetStats().captured_frames, 5); in TEST_P()
219 EXPECT_GE(adapter_wrapper_->GetStats().captured_frames, 6); in TEST_P()
[all …]
/external/adhd/cras/src/libcras/
Dcras_client.c1114 uint8_t **captured_frames, in config_capture_buf() argument
1119 *captured_frames = cras_shm_get_read_buffer_base(stream->shm); in config_capture_buf()
1176 uint8_t *captured_frames; in handle_capture_data_ready() local
1188 num_frames = config_capture_buf(stream, &captured_frames, num_frames); in handle_capture_data_ready()
1196 stream->id, stream->direction, captured_frames, in handle_capture_data_ready()
1205 captured_frames, NULL, num_frames, in handle_capture_data_ready()
1209 captured_frames, num_frames, &ts, in handle_capture_data_ready()
/external/webrtc/media/engine/
Dwebrtc_video_engine_unittest.cc2092 int captured_frames = 1; in TEST_F() local
2098 ++captured_frames; in TEST_F()
2100 EXPECT_TRUE_WAIT(renderer_.num_rendered_frames() >= captured_frames && in TEST_F()
2104 EXPECT_GE(renderer_.num_rendered_frames(), captured_frames); in TEST_F()
2107 captured_frames = renderer_.num_rendered_frames() + 1; in TEST_F()
2113 EXPECT_TRUE_WAIT(renderer_.num_rendered_frames() >= captured_frames && in TEST_F()
2117 EXPECT_GE(renderer_.num_rendered_frames(), captured_frames); in TEST_F()