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

Unified Diff: webrtc/config.h

Issue 2307533004: Moving/renaming webrtc/common.h. (Closed)
Patch Set: rebase Created 4 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
« no previous file with comments | « webrtc/common_types.h ('k') | webrtc/media/engine/fakewebrtcvoiceengine.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/config.h
diff --git a/webrtc/config.h b/webrtc/config.h
index d932eda1df8eee81a3d004518fcc9396a495d2c2..9303f548e7299d857447970f0208d2e476665a76 100644
--- a/webrtc/config.h
+++ b/webrtc/config.h
@@ -17,7 +17,6 @@
#include <vector>
#include "webrtc/base/optional.h"
-#include "webrtc/common.h"
#include "webrtc/common_types.h"
#include "webrtc/typedefs.h"
@@ -170,35 +169,6 @@ class DecoderSpecificSettings {
rtc::Optional<VideoDecoderH264Settings> h264_extra_settings;
};
-// Controls the capacity of the packet buffer in NetEq. The capacity is the
-// maximum number of packets that the buffer can contain. If the limit is
-// exceeded, the buffer will be flushed. The capacity does not affect the actual
-// audio delay in the general case, since this is governed by the target buffer
-// level (calculated from the jitter profile). It is only in the rare case of
-// severe network freezes that a higher capacity will lead to a (transient)
-// increase in audio delay.
-struct NetEqCapacityConfig {
- NetEqCapacityConfig() : enabled(false), capacity(0) {}
- explicit NetEqCapacityConfig(int value) : enabled(true), capacity(value) {}
- static const ConfigOptionID identifier = ConfigOptionID::kNetEqCapacityConfig;
- bool enabled;
- int capacity;
-};
-
-struct NetEqFastAccelerate {
- NetEqFastAccelerate() : enabled(false) {}
- explicit NetEqFastAccelerate(bool value) : enabled(value) {}
- static const ConfigOptionID identifier = ConfigOptionID::kNetEqFastAccelerate;
- bool enabled;
-};
-
-struct VoicePacing {
- VoicePacing() : enabled(false) {}
- explicit VoicePacing(bool value) : enabled(value) {}
- static const ConfigOptionID identifier = ConfigOptionID::kVoicePacing;
- bool enabled;
-};
-
} // namespace webrtc
#endif // WEBRTC_CONFIG_H_
« no previous file with comments | « webrtc/common_types.h ('k') | webrtc/media/engine/fakewebrtcvoiceengine.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698