I don't have a Windows machine, but years ago I worked in Windows application development. Below are some suggestions. I cannot test or verify these, so this is just FWIW:
At build-time, the Resolve app must be linked with the NVIDIA ver. 13.x SDK. That cannot be examined, but we can assume that it was done.
Resolve must make the correct NVIDIA SDK calls to enable and use NVDEC decode acceleration for the codecs. We can probably assume that was done in the shipping (non-Beta) Resolve Studio product.
The NVIDIA Blackwell video drivers R570 or later must be present. It should be possible to interrogate the version with this command from CMD.exe: nvidia-smi -q
Use MediaInfo to verify the input clip really is H.264 High 4:2:2 10-bit. Sony XAVC-S 10-bit 4:2:2 H.264 should qualify.
Check Resolve Prefs and GPU selection: Resolve > Preferences > Decode Options (Native / NVIDIA / Quick Sync). Select NVIDIA and Native (leave Quick Sync unchecked to avoid precedence issues).
Watch the GPU in Task Manager during playback to see whether NVDEC engines are engaged. Win-11 Task Manager > GPU > “Video Decode” graph (I'm not sure of the syntax).
See if FFmpeg will use the hardware accelerator for the 10-bit 4:2:2 H.264 file. Run this command while watching the Task Manager video acceleration graph. Instead of test.mp4 use the pathname to the Sony file. Below is an informed guess; I cannot test this.
ffmpeg -vsync 0 -hwaccel cuda -c:v h264_cuvid -i test.mp4 -f null NUL
However, for the above test to have meaning, ffmpeg itself must be a version that works with the latest NVIDIA video hardware. To check this, use this command: ffmpeg -buildconf
The returned data must contain --enable-cuda-nvcc and be dated 2025-04-21 or later. If not, you'd need to update your version of ffmpeg:
https://ffmpeg.org/download.htmlIf ffmpeg is the right version and it shows video acceleration but Resolve does not, generate Resolve diagnostic logs and look for several lines surrounding strings like this: (these are just informed guesses):
NvDecCaps
cuvidCreateDecoder
NVDEC
CUDA_ERROR
This could tell you whether the driver reported the new 4:2:2 10-bit mode as unsupported, or the decoder creation failed for another reason.
If the logs contain messages something like this: CUDA_ERROR_NO_DEVICE / CUDA_ERROR_INVALID_VALUE, that could mean Resolve is not up to date or is not interacting properly with the NVIDIA SDK.