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

Unified Diff: webrtc/modules/audio_coding/audio_network_adaptor/bitrate_controller.h

Issue 3013613002: Added configurable offsets to the per-packet overhead in ANA. (Closed)
Patch Set: Set prev_direction_increase in the Frame length controller. Created 3 years, 3 months 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/audio_coding/audio_network_adaptor/bitrate_controller.h
diff --git a/webrtc/modules/audio_coding/audio_network_adaptor/bitrate_controller.h b/webrtc/modules/audio_coding/audio_network_adaptor/bitrate_controller.h
index 740edbd4e039fec9dae8bcb78be441eeaab23f71..e8e69fc9ba88ac0ab5e9c5564cfe13f7969d6d71 100644
--- a/webrtc/modules/audio_coding/audio_network_adaptor/bitrate_controller.h
+++ b/webrtc/modules/audio_coding/audio_network_adaptor/bitrate_controller.h
@@ -20,10 +20,15 @@ namespace audio_network_adaptor {
class BitrateController final : public Controller {
public:
struct Config {
- Config(int initial_bitrate_bps, int initial_frame_length_ms);
+ Config(int initial_bitrate_bps,
+ int initial_frame_length_ms,
+ int fl_increase_overhead_offset,
ossu 2017/09/14 12:16:14 What does this mean?
ivoc 2017/09/14 13:03:38 It is the offset that should be added to the packe
alexnarest 2017/09/14 13:26:11 This is quite precise explanation. There is no eas
+ int fl_decrease_overhead_offset);
~Config();
int initial_bitrate_bps;
int initial_frame_length_ms;
+ int fl_increase_overhead_offset;
+ int fl_decrease_overhead_offset;
};
explicit BitrateController(const Config& config);

Powered by Google App Engine
This is Rietveld 408576698