Lines Matching defs:caps
106 CUVIDDECODECAPS caps = { 0 };
108 caps.eCodecType = params->CodecType;
109 caps.eChromaFormat = params->ChromaFormat;
110 caps.nBitDepthMinus8 = params->bitDepthMinus8;
124 ret = CHECK_CU(decoder->cvdl->cuvidGetDecoderCaps(&caps));
130 caps.bIsSupported ? "yes" : "no", caps.nMaxMBCount);
132 caps.nMinWidth, caps.nMaxWidth);
134 caps.nMinHeight, caps.nMaxHeight);
136 if (!caps.bIsSupported) {
141 if (params->ulWidth > caps.nMaxWidth || params->ulWidth < caps.nMinWidth) {
143 (int)params->ulWidth, caps.nMinWidth, caps.nMaxWidth);
147 if (params->ulHeight > caps.nMaxHeight || params->ulHeight < caps.nMinHeight) {
149 (int)params->ulHeight, caps.nMinHeight, caps.nMaxHeight);
153 if ((params->ulWidth * params->ulHeight) / 256 > caps.nMaxMBCount) {
155 (int)(params->ulWidth * params->ulHeight) / 256, caps.nMaxMBCount);