Home
last modified time | relevance | path

Searched refs:frame_counts (Results 1 – 13 of 13) sorted by relevance

/external/webrtc/webrtc/video/
Dsend_statistics_proxy_unittest.cc63 EXPECT_EQ(a.frame_counts.key_frames, b.frame_counts.key_frames); in ExpectEqual()
64 EXPECT_EQ(a.frame_counts.delta_frames, b.frame_counts.delta_frames); in ExpectEqual()
166 FrameCounts frame_counts; in TEST_F() local
167 frame_counts.key_frames = offset; in TEST_F()
168 frame_counts.delta_frames = offset + 1; in TEST_F()
169 stats.frame_counts = frame_counts; in TEST_F()
170 observer->FrameCountUpdated(frame_counts, ssrc); in TEST_F()
179 FrameCounts frame_counts; in TEST_F() local
180 frame_counts.key_frames = offset; in TEST_F()
181 frame_counts.delta_frames = offset + 1; in TEST_F()
[all …]
Dreceive_statistics_proxy.cc185 const FrameCounts& frame_counts) { in OnFrameCountsUpdated() argument
187 stats_.frame_counts = frame_counts; in OnFrameCountsUpdated()
Dvie_channel.h238 void OnFrameCountsUpdated(const FrameCounts& frame_counts) override;
359 virtual void FrameCountUpdated(const FrameCounts& frame_counts, in FrameCountUpdated() argument
363 callback_->FrameCountUpdated(frame_counts, ssrc); in FrameCountUpdated()
Dsend_statistics_proxy.cc378 void SendStatisticsProxy::FrameCountUpdated(const FrameCounts& frame_counts, in FrameCountUpdated() argument
385 stats->frame_counts = frame_counts; in FrameCountUpdated()
Dreceive_statistics_proxy.h64 void OnFrameCountsUpdated(const FrameCounts& frame_counts) override;
Dsend_statistics_proxy.h91 void FrameCountUpdated(const FrameCounts& frame_counts,
Dvie_channel.cc1013 void ViEChannel::OnFrameCountsUpdated(const FrameCounts& frame_counts) { in OnFrameCountsUpdated() argument
1015 receive_frame_counts_ = frame_counts; in OnFrameCountsUpdated()
1017 receive_stats_callback_->OnFrameCountsUpdated(frame_counts); in OnFrameCountsUpdated()
Dend_to_end_tests.cc2469 stats.frame_counts.key_frames != 0 || in TEST_F()
2470 stats.frame_counts.delta_frames != 0; in TEST_F()
2531 stream_stats.frame_counts.delta_frames != 0 || in TEST_F()
2532 stream_stats.frame_counts.key_frames != 0; in TEST_F()
/external/webrtc/webrtc/
Dvideo_receive_stream.h55 FrameCounts frame_counts; member
Dvideo_send_stream.h51 FrameCounts frame_counts; member
Dcommon_types.h271 virtual void FrameCountUpdated(const FrameCounts& frame_counts,
/external/webrtc/webrtc/modules/video_coding/include/
Dvideo_coding_defines.h105 virtual void OnFrameCountsUpdated(const FrameCounts& frame_counts) = 0;
/external/webrtc/webrtc/modules/rtp_rtcp/source/
Drtp_sender_unittest.cc982 void FrameCountUpdated(const FrameCounts& frame_counts, in TEST_F() argument
986 frame_counts_ = frame_counts; in TEST_F()