Fix a perf issue where we didn't pass the device id correctly to rocDecCreateDecoder API (#91)

This commit is contained in:
Aryan Salmanpour
2023-11-28 11:26:34 -05:00
committed by GitHub
parent 7ed754dc72
commit 72bfa50c21
+1
View File
@@ -309,6 +309,7 @@ int RocVideoDecoder::HandleVideoSequence(RocdecVideoFormat *p_video_format) {
video_format_ = *p_video_format;
RocDecoderCreateInfo videoDecodeCreateInfo = { 0 };
videoDecodeCreateInfo.deviceid = device_id_;
videoDecodeCreateInfo.CodecType = p_video_format->codec;
videoDecodeCreateInfo.ChromaFormat = p_video_format->chroma_format;
videoDecodeCreateInfo.OutputFormat = video_surface_format_;