Display SDR/HDR status in performance overlay
This commit is contained in:
parent
439e8fe33f
commit
483a601867
1 changed files with 6 additions and 1 deletions
|
|
@ -523,7 +523,12 @@ void FFmpegVideoDecoder::stringifyVideoStats(VIDEO_STATS& stats, char* output)
|
|||
break;
|
||||
|
||||
case VIDEO_FORMAT_H265_MAIN10:
|
||||
codecString = "HEVC Main 10";
|
||||
if (LiGetCurrentHostDisplayHdrMode()) {
|
||||
codecString = "HEVC Main 10 HDR";
|
||||
}
|
||||
else {
|
||||
codecString = "HEVC Main 10 SDR";
|
||||
}
|
||||
break;
|
||||
|
||||
default:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue