Searched refs:mapSrc (Results 1 – 1 of 1) sorted by relevance
/frameworks/av/media/libstagefright/ |
D | MediaCodec.cpp | 2675 const char *mapSrc = details->getEntryNameAt(ix, &entryType); in loadCodecProperties() local 2685 if (mapSrc == NULL) { in loadCodecProperties() 2687 } else if (!strncmp(mapSrc, featurePrefix, featurePrefixLen)) { in loadCodecProperties() 2689 if (details->findInt32(mapSrc, &intValue)) { in loadCodecProperties() 2690 ALOGV("-- feature '%s' -> %d", mapSrc, intValue); in loadCodecProperties() 2691 (void)(sShaperOps->setFeature)(shaperHandle, &mapSrc[featurePrefixLen], in loadCodecProperties() 2695 } else if (!strncmp(mapSrc, tuningPrefix, tuningPrefixLen)) { in loadCodecProperties() 2697 if (details->findString(mapSrc, &value)) { in loadCodecProperties() 2698 ALOGV("-- tuning '%s' -> '%s'", mapSrc, value.c_str()); in loadCodecProperties() 2699 (void)(sShaperOps->setTuning)(shaperHandle, &mapSrc[tuningPrefixLen], in loadCodecProperties() [all …]
|