chromium/third_party/openscreen/src/cast/streaming/impl/rtp_packet_parser.cc

// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "cast/streaming/impl/rtp_packet_parser.h"

#include <algorithm>
#include <utility>

#include "cast/streaming/impl/packet_util.h"
#include "util/osp_logging.h"

namespace openscreen::cast {

RtpPacketParser::RtpPacketParser(Ssrc sender_ssrc)
    :{}

RtpPacketParser::~RtpPacketParser() = default;

std::optional<RtpPacketParser::ParseResult> RtpPacketParser::Parse(
    ByteView buffer) {}

RtpPacketParser::ParseResult::ParseResult() = default;
RtpPacketParser::ParseResult::~ParseResult() = default;

}  // namespace openscreen::cast