Index: webrtc/modules/rtp_rtcp/source/forward_error_correction_internal.h |
diff --git a/webrtc/modules/rtp_rtcp/source/forward_error_correction_internal.h b/webrtc/modules/rtp_rtcp/source/forward_error_correction_internal.h |
index f82e46d572388f158ed51d4ceb4b37d1f65aa806..48117514ecad86691c2b3526a34ab473c3153f59 100644 |
--- a/webrtc/modules/rtp_rtcp/source/forward_error_correction_internal.h |
+++ b/webrtc/modules/rtp_rtcp/source/forward_error_correction_internal.h |
@@ -11,15 +11,15 @@ |
#ifndef WEBRTC_MODULES_RTP_RTCP_SOURCE_FORWARD_ERROR_CORRECTION_INTERNAL_H_ |
#define WEBRTC_MODULES_RTP_RTCP_SOURCE_FORWARD_ERROR_CORRECTION_INTERNAL_H_ |
-#include "webrtc/modules/rtp_rtcp/source/forward_error_correction.h" |
+#include "webrtc/modules/include/module_common_types.h" |
#include "webrtc/typedefs.h" |
namespace webrtc { |
// Packet mask size in bytes (L bit is set). |
-static const int kMaskSizeLBitSet = 6; |
+constexpr size_t kMaskSizeLBitSet = 6; |
// Packet mask size in bytes (L bit is cleared). |
-static const int kMaskSizeLBitClear = 2; |
+constexpr size_t kMaskSizeLBitClear = 2; |
namespace internal { |