henrik.lundin@webrtc.org | d94659d | 2013-01-29 12:09:21 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
| 3 | * |
| 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 NETEQTEST_DUMMYRTPPACKET_H |
| 12 | #define NETEQTEST_DUMMYRTPPACKET_H |
| 13 | |
| 14 | #include "NETEQTEST_RTPpacket.h" |
| 15 | |
pbos@webrtc.org | 2d1a55c | 2013-07-31 15:54:00 +0000 | [diff] [blame] | 16 | class NETEQTEST_DummyRTPpacket : public NETEQTEST_RTPpacket { |
| 17 | public: |
kjellander@webrtc.org | 14665ff | 2015-03-04 12:58:35 +0000 | [diff] [blame] | 18 | int readFromFile(FILE* fp) override; |
| 19 | int writeToFile(FILE* fp) override; |
| 20 | void parseHeader() override; |
henrik.lundin@webrtc.org | d94659d | 2013-01-29 12:09:21 +0000 | [diff] [blame] | 21 | }; |
| 22 | |
pbos@webrtc.org | 2d1a55c | 2013-07-31 15:54:00 +0000 | [diff] [blame] | 23 | #endif // NETEQTEST_DUMMYRTPPACKET_H |