mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-03-11 15:03:38 +07:00
Revert "amdgpu/dc: drop dml_util_is_420"
This reverts commit e5bcf3d83e
.
Unfortunately these clash with our DML update from the HW guys.
Will attempt to reroll them after.
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
78109d230b
commit
e168df36a8
@ -59,3 +59,36 @@ unsigned int dml_round_to_multiple(
|
||||
else
|
||||
return (num - remainder);
|
||||
}
|
||||
|
||||
bool dml_util_is_420(enum source_format_class sorce_format)
|
||||
{
|
||||
bool val = false;
|
||||
|
||||
switch (sorce_format) {
|
||||
case dm_444_16:
|
||||
val = false;
|
||||
break;
|
||||
case dm_444_32:
|
||||
val = false;
|
||||
break;
|
||||
case dm_444_64:
|
||||
val = false;
|
||||
break;
|
||||
case dm_420_8:
|
||||
val = true;
|
||||
break;
|
||||
case dm_420_10:
|
||||
val = true;
|
||||
break;
|
||||
case dm_422_8:
|
||||
val = false;
|
||||
break;
|
||||
case dm_422_10:
|
||||
val = false;
|
||||
break;
|
||||
default:
|
||||
BREAK_TO_DEBUGGER();
|
||||
}
|
||||
|
||||
return val;
|
||||
}
|
||||
|
@ -32,6 +32,7 @@
|
||||
|
||||
#define DTRACE(str, ...) dm_logger_write(mode_lib->logger, LOG_DML, str, ##__VA_ARGS__);
|
||||
|
||||
bool dml_util_is_420(enum source_format_class sorce_format);
|
||||
double dml_round(double a);
|
||||
unsigned int dml_round_to_multiple(
|
||||
unsigned int num, unsigned int multiple, bool up);
|
||||
|
Loading…
Reference in New Issue
Block a user