12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- /**
- * Copyright (c) 2020-2021 Paul-Louis Ageneau
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- */
- #include "track.hpp"
- #include "impl/internals.hpp"
- #include "impl/track.hpp"
- namespace rtc {
- Track::Track(impl_ptr<impl::Track> impl)
- : CheshireCat<impl::Track>(impl), Channel(std::dynamic_pointer_cast<impl::Channel>(impl)) {}
- string Track::mid() const { return impl()->mid(); }
- Description::Direction Track::direction() const { return impl()->direction(); }
- Description::Media Track::description() const { return impl()->description(); }
- void Track::setDescription(Description::Media description) {
- impl()->setDescription(std::move(description));
- }
- void Track::close() { impl()->close(); }
- bool Track::send(message_variant data) { return impl()->outgoing(make_message(std::move(data))); }
- bool Track::send(const byte *data, size_t size) { return send(binary(data, data + size)); }
- bool Track::isOpen(void) const { return impl()->isOpen(); }
- bool Track::isClosed(void) const { return impl()->isClosed(); }
- size_t Track::maxMessageSize() const { return impl()->maxMessageSize(); }
- void Track::setMediaHandler(shared_ptr<MediaHandler> handler) {
- impl()->setMediaHandler(std::move(handler));
- }
- bool Track::requestKeyframe() {
- if (auto handler = impl()->getMediaHandler())
- return handler->requestKeyframe();
- return false;
- }
- shared_ptr<MediaHandler> Track::getMediaHandler() { return impl()->getMediaHandler(); }
- } // namespace rtc
|