From c2722a0e68682bca30f1b61f909bd2d313d69eed Mon Sep 17 00:00:00 2001 From: "pwestin@webrtc.org" Date: Fri, 1 Jun 2012 08:56:42 +0000 Subject: [PATCH] Fixed compiler warning Review URL: https://webrtc-codereview.appspot.com/624005 git-svn-id: http://webrtc.googlecode.com/svn/trunk@2339 4adac7df-926f-26a2-2b94-8c16560cd09d --- src/modules/rtp_rtcp/source/rtp_header_extension.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/rtp_rtcp/source/rtp_header_extension.h b/src/modules/rtp_rtcp/source/rtp_header_extension.h index b1612cc9b..d5740a68b 100644 --- a/src/modules/rtp_rtcp/source/rtp_header_extension.h +++ b/src/modules/rtp_rtcp/source/rtp_header_extension.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. + * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. * * Use of this source code is governed by a BSD-style license * that can be found in the LICENSE file in the root of the source @@ -20,7 +20,7 @@ namespace webrtc { enum {RTP_ONE_BYTE_HEADER_EXTENSION = 0xbede}; -enum ExtensionLength { +enum { RTP_ONE_BYTE_HEADER_LENGTH_IN_BYTES = 4, TRANSMISSION_TIME_OFFSET_LENGTH_IN_BYTES = 4 };