2017-12-21 07:45:38 +08:00
|
|
|
/*
|
2022-06-15 00:47:02 +08:00
|
|
|
* Copyright (C) 2020-2022 Intel Corporation
|
2017-12-21 07:45:38 +08:00
|
|
|
*
|
2018-09-18 15:11:08 +08:00
|
|
|
* SPDX-License-Identifier: MIT
|
2017-12-21 07:45:38 +08:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2022-11-23 17:14:27 +08:00
|
|
|
#include "aubstream/engine_node.h"
|
2017-12-21 07:45:38 +08:00
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
namespace NEO {
|
2017-12-21 07:45:38 +08:00
|
|
|
|
2022-06-15 00:47:02 +08:00
|
|
|
enum class DrmParam;
|
2017-12-21 07:45:38 +08:00
|
|
|
class DrmEngineMapper {
|
|
|
|
public:
|
2022-06-15 00:47:02 +08:00
|
|
|
static DrmParam engineNodeMap(aub_stream::EngineType engineType);
|
2017-12-21 07:45:38 +08:00
|
|
|
};
|
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
} // namespace NEO
|