Merge pull request #8620 from nyanmisaka/fix-dg2-tonemap-tearing
Fix the DG2 HDR TM tearing issue on Windows
This commit is contained in:
commit
3bdc2bff5f
|
@ -1415,8 +1415,12 @@ namespace MediaBrowser.Controller.MediaEncoding
|
|||
param += " -preset 7";
|
||||
}
|
||||
|
||||
// Only h264_qsv has look_ahead option
|
||||
if (string.Equals(videoEncoder, "h264_qsv", StringComparison.OrdinalIgnoreCase))
|
||||
{
|
||||
param += " -look_ahead 0";
|
||||
}
|
||||
}
|
||||
else if (string.Equals(videoEncoder, "h264_nvenc", StringComparison.OrdinalIgnoreCase) // h264 (h264_nvenc)
|
||||
|| string.Equals(videoEncoder, "hevc_nvenc", StringComparison.OrdinalIgnoreCase)) // hevc (hevc_nvenc)
|
||||
{
|
||||
|
@ -1453,7 +1457,7 @@ namespace MediaBrowser.Controller.MediaEncoding
|
|||
break;
|
||||
|
||||
default:
|
||||
param += " -preset p4";
|
||||
param += " -preset p1";
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
@ -3404,6 +3408,12 @@ namespace MediaBrowser.Controller.MediaEncoding
|
|||
// map from d3d11va to qsv.
|
||||
mainFilters.Add("hwmap=derive_device=qsv");
|
||||
}
|
||||
else
|
||||
{
|
||||
// Insert a qsv scaler to sync the decoder surface,
|
||||
// msdk will passthrough this internally.
|
||||
mainFilters.Add("hwmap=derive_device=qsv,scale_qsv");
|
||||
}
|
||||
}
|
||||
|
||||
// hw deint
|
||||
|
|
Loading…
Reference in New Issue
Block a user