chromium/third_party/openscreen/src/cast/streaming/impl/sender_report_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/sender_report_parser.h"

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

namespace openscreen::cast {

SenderReportParser::SenderReportWithId::SenderReportWithId() = default;
SenderReportParser::SenderReportWithId::~SenderReportWithId() = default;

SenderReportParser::SenderReportParser(RtcpSession& session)
    :{}

SenderReportParser::~SenderReportParser() = default;

std::optional<SenderReportParser::SenderReportWithId> SenderReportParser::Parse(
    ByteView buffer) {}

}  // namespace openscreen::cast