// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "media/cast/common/encoded_frame.h" #include "base/logging.h" namespace media { namespace cast { EncodedFrame::EncodedFrame() = default; EncodedFrame::~EncodedFrame() = default; void EncodedFrame::CopyMetadataTo(EncodedFrame* dest) const { … } } // namespace cast } // namespace media