blob: ed9ae8567f124b7743568c5b265b32b82c36c1e7 [file] [log] [blame]
// 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.
#ifndef MEDIA_RENDERERS_WIN_MEDIA_FOUNDATION_RENDERING_MODE_H_
#define MEDIA_RENDERERS_WIN_MEDIA_FOUNDATION_RENDERING_MODE_H_
#include <ostream>
namespace media {
// This C++ enum is the equivalent to mojom::MediaFoundationRenderingMode
enum class MediaFoundationRenderingMode : int32_t {
DirectComposition = 0,
FrameServer = 1,
kMaxValue = 1,
};
std::ostream& operator<<(std::ostream& os,
const MediaFoundationRenderingMode& render_mode);
} // namespace media
#endif // MEDIA_RENDERERS_WIN_MEDIA_FOUNDATION_RENDERING_MODE_H_