MythTV master
rtpfecpacket.h
Go to the documentation of this file.
1/* -*- Mode: c++ -*-
2 * Copyright (c) 2012 Digital Nirvana, Inc.
3 * Distributed as part of MythTV under GPL v2 and later.
4 */
5
6#include "udppacket.h"
7
8#ifndef RTP_FEC_PACKET_H
9#define RTP_FEC_PACKET_H
10
13class RTPFECPacket : public UDPPacket
14{
15 public:
16 explicit RTPFECPacket(const UDPPacket &o) : UDPPacket(o) { }
17 explicit RTPFECPacket(uint64_t key) : UDPPacket(key) { }
18 RTPFECPacket(void) : UDPPacket(0ULL) { }
19
20 // TODO
21};
22
23#endif // RTP_FEC_PACKET_H
RTP FEC Packet.
Definition: rtpfecpacket.h:14
RTPFECPacket(const UDPPacket &o)
Definition: rtpfecpacket.h:16
RTPFECPacket(uint64_t key)
Definition: rtpfecpacket.h:17
RTPFECPacket(void)
Definition: rtpfecpacket.h:18
UDP Packet.
Definition: udppacket.h:21