blob: 1ac6c9a14f7957d6ecb69ee3f5aef1c4ea94eca8 [file] [log] [blame]
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +00001/*
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.org2d1a55c2013-07-31 15:54:00 +000016class NETEQTEST_DummyRTPpacket : public NETEQTEST_RTPpacket {
17 public:
kjellander@webrtc.org14665ff2015-03-04 12:58:35 +000018 int readFromFile(FILE* fp) override;
19 int writeToFile(FILE* fp) override;
20 void parseHeader() override;
henrik.lundin@webrtc.orgd94659d2013-01-29 12:09:21 +000021};
22
pbos@webrtc.org2d1a55c2013-07-31 15:54:00 +000023#endif // NETEQTEST_DUMMYRTPPACKET_H