// Copyright 2017 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/base/format_utils.h" #include "base/logging.h" #include "ui/gfx/buffer_format_util.h" namespace media { std::optional<VideoPixelFormat> GfxBufferFormatToVideoPixelFormat( gfx::BufferFormat format) { … } std::optional<gfx::BufferFormat> VideoPixelFormatToGfxBufferFormat( VideoPixelFormat pixel_format) { … } } // namespace media