You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
850 B
27 lines
850 B
// Copyright 2014 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include "cast/streaming/encoded_frame.h"
|
|
|
|
namespace openscreen {
|
|
namespace cast {
|
|
|
|
EncodedFrame::EncodedFrame() = default;
|
|
EncodedFrame::~EncodedFrame() = default;
|
|
|
|
EncodedFrame::EncodedFrame(EncodedFrame&&) noexcept = default;
|
|
EncodedFrame& EncodedFrame::operator=(EncodedFrame&&) = default;
|
|
|
|
void EncodedFrame::CopyMetadataTo(EncodedFrame* dest) const {
|
|
dest->dependency = this->dependency;
|
|
dest->frame_id = this->frame_id;
|
|
dest->referenced_frame_id = this->referenced_frame_id;
|
|
dest->rtp_timestamp = this->rtp_timestamp;
|
|
dest->reference_time = this->reference_time;
|
|
dest->new_playout_delay = this->new_playout_delay;
|
|
}
|
|
|
|
} // namespace cast
|
|
} // namespace openscreen
|