blob: b14c59725f920ded16e0fcb78fe8ee27ddf6d7f0 [file] [log] [blame]
niklase@google.com470e71d2011-07-07 08:21:25 +00001/*
leozwang@webrtc.org2559cbf2012-02-27 19:18:25 +00002 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
niklase@google.com470e71d2011-07-07 08:21:25 +00003 *
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
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
11#ifndef WEBRTC_MODULES_UTILITY_SOURCE_RTP_DUMP_IMPL_H_
12#define WEBRTC_MODULES_UTILITY_SOURCE_RTP_DUMP_IMPL_H_
13
14#include "rtp_dump.h"
15
16namespace webrtc {
17class CriticalSectionWrapper;
18class FileWrapper;
19class RtpDumpImpl : public RtpDump
20{
21public:
22 RtpDumpImpl();
23 virtual ~RtpDumpImpl();
24
pbos@webrtc.orgc75102e2013-04-09 13:32:55 +000025 virtual int32_t Start(const char* fileNameUTF8);
26 virtual int32_t Stop();
niklase@google.com470e71d2011-07-07 08:21:25 +000027 virtual bool IsActive() const;
pbos@webrtc.orgc75102e2013-04-09 13:32:55 +000028 virtual int32_t DumpPacket(const uint8_t* packet, uint16_t packetLength);
niklase@google.com470e71d2011-07-07 08:21:25 +000029private:
30 // Return the system time in ms.
pbos@webrtc.orgc75102e2013-04-09 13:32:55 +000031 inline uint32_t GetTimeInMS() const;
niklase@google.com470e71d2011-07-07 08:21:25 +000032 // Return x in network byte order (big endian).
pbos@webrtc.orgc75102e2013-04-09 13:32:55 +000033 inline uint32_t RtpDumpHtonl(uint32_t x) const;
niklase@google.com470e71d2011-07-07 08:21:25 +000034 // Return x in network byte order (big endian).
pbos@webrtc.orgc75102e2013-04-09 13:32:55 +000035 inline uint16_t RtpDumpHtons(uint16_t x) const;
niklase@google.com470e71d2011-07-07 08:21:25 +000036
37 // Return true if the packet starts with a valid RTCP header.
38 // Note: See ModuleRTPUtility::RTPHeaderParser::RTCP() for details on how
39 // to determine if the packet is an RTCP packet.
pbos@webrtc.orgc75102e2013-04-09 13:32:55 +000040 bool RTCP(const uint8_t* packet) const;
niklase@google.com470e71d2011-07-07 08:21:25 +000041
42private:
henrike@webrtc.org105e0712011-12-16 19:53:46 +000043 CriticalSectionWrapper* _critSect;
niklase@google.com470e71d2011-07-07 08:21:25 +000044 FileWrapper& _file;
pbos@webrtc.orgc75102e2013-04-09 13:32:55 +000045 uint32_t _startTime;
niklase@google.com470e71d2011-07-07 08:21:25 +000046};
pbos@webrtc.orgd900e8b2013-07-03 15:12:26 +000047} // namespace webrtc
niklase@google.com470e71d2011-07-07 08:21:25 +000048#endif // WEBRTC_MODULES_UTILITY_SOURCE_RTP_DUMP_IMPL_H_