// Copyright 2015 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef MEDIA_CAST_COMMON_SENDER_ENCODED_FRAME_H_ #define MEDIA_CAST_COMMON_SENDER_ENCODED_FRAME_H_ #include <optional> #include "base/time/time.h" #include "media/cast/common/encoded_frame.h" namespace media { namespace cast { // Extends EncodedFrame with additional fields used within the sender-side of // the library. struct SenderEncodedFrame final : public EncodedFrame { … }; } // namespace cast } // namespace media #endif // MEDIA_CAST_COMMON_SENDER_ENCODED_FRAME_H_