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

Unified Diff: webrtc/modules/audio_coding/include/audio_coding_module.h

Issue 2772773002: Adding cbr support for Opus (Closed)
Patch Set: Created 3 years, 9 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/include/audio_coding_module.h
diff --git a/webrtc/modules/audio_coding/include/audio_coding_module.h b/webrtc/modules/audio_coding/include/audio_coding_module.h
index 1893b626de86dcbeb2809fef169ccb423b3fb4a4..83c5d93c3cc857a27e2e77511c3c9a639ced750b 100644
--- a/webrtc/modules/audio_coding/include/audio_coding_module.h
+++ b/webrtc/modules/audio_coding/include/audio_coding_module.h
@@ -771,6 +771,27 @@ class AudioCodingModule {
virtual int DisableOpusDtx() = 0;
///////////////////////////////////////////////////////////////////////////
+ // EnableOpusCbr()
minyue-webrtc 2017/03/29 20:45:26 int
+ // Enable the CBR, if current send codec is Opus.
+ //
+ // Return value:
+ // -1 if current send codec is not Opus or error occurred in enabling the
+ // Opus CBR mode.
+ // 0 if Opus CBR is enabled successfully.
+ //
+ virtual int EnableOpusCbr() = 0;
+
+ ///////////////////////////////////////////////////////////////////////////
+ // int DisableOpusCbr()
+ // If current send codec is Opus, disables its internal CBR.
+ //
+ // Return value:
+ // -1 if current send codec is not Opus or error occurred in disabling CBR.
+ // 0 if Opus CBR is disabled successfully.
+ //
+ virtual int DisableOpusCbr() = 0;
+
+ ///////////////////////////////////////////////////////////////////////////
// statistics
//

Powered by Google App Engine
This is Rietveld 408576698