h264packetizationhandler.cpp 529 B

1234567891011121314151617181920
  1. /**
  2. * Copyright (c) 2020 Filip Klembara (in2core)
  3. *
  4. * This Source Code Form is subject to the terms of the Mozilla Public
  5. * License, v. 2.0. If a copy of the MPL was not distributed with this
  6. * file, You can obtain one at https://mozilla.org/MPL/2.0/.
  7. */
  8. #if RTC_ENABLE_MEDIA
  9. #include "h264packetizationhandler.hpp"
  10. namespace rtc {
  11. H264PacketizationHandler::H264PacketizationHandler(shared_ptr<H264RtpPacketizer> packetizer)
  12. : MediaChainableHandler(packetizer) {}
  13. } // namespace rtc
  14. #endif /* RTC_ENABLE_MEDIA */