Lines Matching refs:decoderIndex
157 size_t decoderIndex = 0; in android_videoCodec_getProfileLevelCombinationNb() local
158 while (decoderIndex < kNbVideoMimeTypes) { in android_videoCodec_getProfileLevelCombinationNb()
159 if (decoderId == VideoDecoderIds[decoderIndex]) { in android_videoCodec_getProfileLevelCombinationNb()
160 *pNb = VideoDecoderNbProfLevel[decoderIndex]; in android_videoCodec_getProfileLevelCombinationNb()
163 decoderIndex++; in android_videoCodec_getProfileLevelCombinationNb()
176 size_t decoderIndex = 0; in android_videoCodec_getProfileLevelCombination() local
177 while (decoderIndex < kNbVideoMimeTypes) { in android_videoCodec_getProfileLevelCombination()
178 if (decoderId == VideoDecoderIds[decoderIndex]) { in android_videoCodec_getProfileLevelCombination()
181 if (!(plIndex < VideoDecoderCapabilities[decoderIndex].mProfileLevels.size())) in android_videoCodec_getProfileLevelCombination()
188 pDescr->profileSetting = convertOpenMaxIlToAl(VideoDecoderCapabilities[decoderIndex]. in android_videoCodec_getProfileLevelCombination()
190 pDescr->levelSetting = convertOpenMaxIlToAl(VideoDecoderCapabilities[decoderIndex]. in android_videoCodec_getProfileLevelCombination()
200 decoderIndex++; in android_videoCodec_getProfileLevelCombination()
202 return (decoderIndex < kNbVideoMimeTypes) ? XA_RESULT_SUCCESS : XA_RESULT_PARAMETER_INVALID; in android_videoCodec_getProfileLevelCombination()