Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(300)

Unified Diff: webrtc/modules/video_coding/video_coding_impl.h

Issue 2513383002: Initial rate allocation should not use fps = 0 (Closed)
Patch Set: oops Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/modules/video_coding/video_coding_impl.h
diff --git a/webrtc/modules/video_coding/video_coding_impl.h b/webrtc/modules/video_coding/video_coding_impl.h
index adeb980072e7ec020f161c0429460cb55ed8a1d7..e6739c2919b30bae80ff5c9253013718eb216783 100644
--- a/webrtc/modules/video_coding/video_coding_impl.h
+++ b/webrtc/modules/video_coding/video_coding_impl.h
@@ -40,6 +40,8 @@ namespace vcm {
class VCMProcessTimer {
public:
+ static const int64_t kDefaultProcessIntervalMs = 1000;
+
VCMProcessTimer(int64_t periodMs, Clock* clock)
: _clock(clock),
_periodMs(periodMs),
@@ -103,7 +105,7 @@ class VideoSender : public Module {
EncoderParameters UpdateEncoderParameters(
const EncoderParameters& params,
VideoBitrateAllocator* bitrate_allocator,
- uint32_t target_bitrate_bps);
+ uint32_t target_bitrate_bps) EXCLUSIVE_LOCKS_REQUIRED(params_crit_);
void SetEncoderParameters(EncoderParameters params, bool has_internal_source)
EXCLUSIVE_LOCKS_REQUIRED(encoder_crit_);
@@ -124,6 +126,7 @@ class VideoSender : public Module {
rtc::CriticalSection params_crit_;
EncoderParameters encoder_params_ GUARDED_BY(params_crit_);
+ bool has_received_frame_ GUARDED_BY(params_crit_);
bool encoder_has_internal_source_ GUARDED_BY(params_crit_);
std::vector<FrameType> next_frame_types_ GUARDED_BY(params_crit_);
};
« no previous file with comments | « no previous file | webrtc/modules/video_coding/video_sender.cc » ('j') | webrtc/modules/video_coding/video_sender.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698