Is There NVDecode support H264 BS?

I am studying “NVDecode” to write a video player using D3D11.
And one branch is input raw H264 bs to decode.
According to “NVDEC_VideoDecoder_API_ProgGuide.pdf”, chapter 3.1,
Use cuvidCreateVideoSource(), it return error value"300",
Does cuvidCreateVideoSource() doesn’t support raw H264 BS?

Shouwld I call cuvidCreateDecoder directly when raw bs input?

Thanks

H.264 decoding is supported. What is the meaning of raw bitstream? Have you tried decoding the same bitstream using other decoders? Can you share your code and the bitstream?

Thanks for reply and apology for my late answer.
I user NvDecodeD3D11 of Video_Codec_SDK_8.0.14 to test decode.
Use parameter:-i “Framerp264.264” -o “out.yuv”.to decode Framerp264.264, which is 264 raw bitstream.
But NvDecodeD3D11 cannot work. It quit.
Do you have run similiar test unit?