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

Side by Side Diff: remoting/protocol/rtp_utils.cc

Issue 9600066: Roll libjingle to r124 and roll webrtc to 1888. (Closed) Base URL: https://src.chromium.org/svn/trunk/src/
Patch Set: Created 8 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 unified diff | Download patch
« no previous file with comments | « remoting/protocol/message_decoder.cc ('k') | remoting/protocol/util.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "remoting/protocol/rtp_utils.h" 5 #include "remoting/protocol/rtp_utils.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "third_party/libjingle/overrides/talk/base/byteorder.h" 8 #include "third_party/libjingle/source/talk/base/byteorder.h"
9 9
10 using talk_base::GetBE16; 10 using talk_base::GetBE16;
11 using talk_base::GetBE32; 11 using talk_base::GetBE32;
12 using talk_base::SetBE16; 12 using talk_base::SetBE16;
13 using talk_base::SetBE32; 13 using talk_base::SetBE32;
14 14
15 namespace remoting { 15 namespace remoting {
16 namespace protocol { 16 namespace protocol {
17 17
18 namespace { 18 namespace {
(...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after
349 349
350 descriptor->picture_id |= buffer[pos] & 0x7F; 350 descriptor->picture_id |= buffer[pos] & 0x7F;
351 extension = (buffer[pos] & 0x80) != 0; 351 extension = (buffer[pos] & 0x80) != 0;
352 pos += 1; 352 pos += 1;
353 } 353 }
354 return pos; 354 return pos;
355 } 355 }
356 356
357 } // namespace protocol 357 } // namespace protocol
358 } // namespace remoting 358 } // namespace remoting
OLDNEW
« no previous file with comments | « remoting/protocol/message_decoder.cc ('k') | remoting/protocol/util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698