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

Side by Side Diff: webrtc/modules/rtp_rtcp/interface/rtp_rtcp_defines.h

Issue 1417683006: modules: more interface -> include renames (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Fix last incorrectly wrapped pragma message Created 5 years, 1 month 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
1 /* 1 /*
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
11 #ifndef WEBRTC_MODULES_RTP_RTCP_INTERFACE_RTP_RTCP_DEFINES_H_ 11 #ifndef WEBRTC_MODULES_RTP_RTCP_INCLUDE_RTP_RTCP_DEFINES_H_
12 #define WEBRTC_MODULES_RTP_RTCP_INTERFACE_RTP_RTCP_DEFINES_H_ 12 #define WEBRTC_MODULES_RTP_RTCP_INCLUDE_RTP_RTCP_DEFINES_H_
13
14 #pragma message("WARNING: rtp_rtcp/interface is DEPRECATED; use include dir.")
13 15
14 #include <stddef.h> 16 #include <stddef.h>
15 #include <list> 17 #include <list>
16 18
17 #include "webrtc/modules/interface/module_common_types.h" 19 #include "webrtc/modules/include/module_common_types.h"
18 #include "webrtc/system_wrappers/include/clock.h" 20 #include "webrtc/system_wrappers/include/clock.h"
19 #include "webrtc/typedefs.h" 21 #include "webrtc/typedefs.h"
20 22
21 #define RTCP_CNAME_SIZE 256 // RFC 3550 page 44, including null termination 23 #define RTCP_CNAME_SIZE 256 // RFC 3550 page 44, including null termination
22 #define IP_PACKET_SIZE 1500 // we assume ethernet 24 #define IP_PACKET_SIZE 1500 // we assume ethernet
23 #define MAX_NUMBER_OF_PARALLEL_TELEPHONE_EVENTS 10 25 #define MAX_NUMBER_OF_PARALLEL_TELEPHONE_EVENTS 10
24 #define TIMEOUT_SEI_MESSAGES_MS 30000 // in milliseconds 26 #define TIMEOUT_SEI_MESSAGES_MS 30000 // in milliseconds
25 27
26 namespace webrtc { 28 namespace webrtc {
27 namespace rtcp { 29 namespace rtcp {
(...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after
430 432
431 class TransportSequenceNumberAllocator { 433 class TransportSequenceNumberAllocator {
432 public: 434 public:
433 TransportSequenceNumberAllocator() {} 435 TransportSequenceNumberAllocator() {}
434 virtual ~TransportSequenceNumberAllocator() {} 436 virtual ~TransportSequenceNumberAllocator() {}
435 437
436 virtual uint16_t AllocateSequenceNumber() = 0; 438 virtual uint16_t AllocateSequenceNumber() = 0;
437 }; 439 };
438 440
439 } // namespace webrtc 441 } // namespace webrtc
440 #endif // WEBRTC_MODULES_RTP_RTCP_INTERFACE_RTP_RTCP_DEFINES_H_ 442 #endif // WEBRTC_MODULES_RTP_RTCP_INCLUDE_RTP_RTCP_DEFINES_H_
OLDNEW
« no previous file with comments | « webrtc/modules/rtp_rtcp/interface/rtp_rtcp.h ('k') | webrtc/modules/rtp_rtcp/mocks/mock_rtp_rtcp.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698