// 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_BASE_VIDEO_FRAME_METADATA_H_ #define MEDIA_BASE_VIDEO_FRAME_METADATA_H_ #include <optional> #include "base/time/time.h" #include "base/unguessable_token.h" #include "build/build_config.h" #include "media/base/media_export.h" #include "media/base/video_transformation.h" #include "media/gpu/buildflags.h" #include "ui/gfx/geometry/rect.h" namespace media { // NOTE: When adding new VideoFrameMetadata fields, please ensure you update the // MergeMetadataFrom() method. struct MEDIA_EXPORT VideoFrameMetadata { … }; } // namespace media #endif // MEDIA_BASE_VIDEO_FRAME_METADATA_H_