// Copyright 2024 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_CONVERTER_H_ #define MEDIA_BASE_VIDEO_FRAME_CONVERTER_H_ #include "media/base/encoder_status.h" #include "media/base/frame_buffer_pool.h" #include "media/base/media_export.h" #include "media/base/video_frame.h" namespace media { // A class for converting and scaling between two VideoFrame formats. Maintains // a scratch space, so if callers have multiples frames to convert they should // hold onto an instance of this class for all conversions. Thread safe. class MEDIA_EXPORT VideoFrameConverter { … }; } // namespace media #endif // MEDIA_BASE_VIDEO_FRAME_CONVERTER_H_