/* * Copyright (c) 2012 Yoann Blein * Licensed under the simplified BSD license. * See Documentation/Licenses/BSD-simplified.txt for more information. */ #include namespace Swift { RTPSession::RTPSession(const HostAddressPort &remotePeer, PayloadType payloadType, int frequency) : remotePeer(remotePeer), payloadType(payloadType), frequency(frequency) { } RTPSession::~RTPSession() { } }