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

Side by Side Diff: media/cast/net/rtp/rtp_defines.h

Issue 493823002: Implement adaptive target delay extension (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 namespace media {
6 namespace cast {
7
8 static const uint16 kRtpHeaderLength = 12;
9 static const uint16 kCastHeaderLength = 7;
10 static const uint8 kRtpExtensionBitMask = 0x10;
11 static const uint8 kCastKeyFrameBitMask = 0x80;
12 static const uint8 kCastReferenceFrameIdBitMask = 0x40;
13 static const uint8 kRtpMarkerBitMask = 0x80;
14 static const uint8 kCastExtensionCountmask = 0x3f;
15
16 // Cast RTP extensions.
17 static const uint8 kCastRTPExtensionAdaptiveLatency = 1;
Alpha Left Google 2014/08/20 20:17:05 nit: kCastRtpExtensionAdaptiveLatency to be consis
hubbe 2014/08/20 21:42:01 Done.
18
19 } // namespace cast
20 } // namespace media
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698