Lines Matching refs:decoderIndex
152 size_t decoderIndex = 0; in android_videoCodec_getProfileLevelCombinationNb() local
153 while (decoderIndex < kNbVideoMimeTypes) { in android_videoCodec_getProfileLevelCombinationNb()
154 if (decoderId == VideoDecoderIds[decoderIndex]) { in android_videoCodec_getProfileLevelCombinationNb()
155 *pNb = VideoDecoderNbProfLevel[decoderIndex]; in android_videoCodec_getProfileLevelCombinationNb()
158 decoderIndex++; in android_videoCodec_getProfileLevelCombinationNb()
171 size_t decoderIndex = 0; in android_videoCodec_getProfileLevelCombination() local
172 while (decoderIndex < kNbVideoMimeTypes) { in android_videoCodec_getProfileLevelCombination()
173 if (decoderId == VideoDecoderIds[decoderIndex]) { in android_videoCodec_getProfileLevelCombination()
176 if (!(plIndex < VideoDecoderCapabilities[decoderIndex].itemAt(0).mProfileLevels.size())) in android_videoCodec_getProfileLevelCombination()
183 pDescr->profileSetting = convertOpenMaxIlToAl(VideoDecoderCapabilities[decoderIndex]. in android_videoCodec_getProfileLevelCombination()
185 pDescr->levelSetting = convertOpenMaxIlToAl(VideoDecoderCapabilities[decoderIndex]. in android_videoCodec_getProfileLevelCombination()
195 decoderIndex++; in android_videoCodec_getProfileLevelCombination()
197 return (decoderIndex < kNbVideoMimeTypes) ? XA_RESULT_SUCCESS : XA_RESULT_PARAMETER_INVALID; in android_videoCodec_getProfileLevelCombination()