Searched refs:mapSrc (Results 1 – 1 of 1) sorted by relevance
/frameworks/av/media/libstagefright/ |
D | MediaCodec.cpp | 1866 const char *mapSrc = details->getEntryNameAt(ix, &entryType); in loadCodecProperties() local 1876 if (mapSrc == NULL) { in loadCodecProperties() 1878 } else if (!strncmp(mapSrc, featurePrefix, featurePrefixLen)) { in loadCodecProperties() 1880 if (details->findInt32(mapSrc, &intValue)) { in loadCodecProperties() 1881 ALOGV("-- feature '%s' -> %d", mapSrc, intValue); in loadCodecProperties() 1882 (void)(sShaperOps->setFeature)(shaperHandle, &mapSrc[featurePrefixLen], in loadCodecProperties() 1886 } else if (!strncmp(mapSrc, tuningPrefix, tuningPrefixLen)) { in loadCodecProperties() 1888 if (details->findString(mapSrc, &value)) { in loadCodecProperties() 1889 ALOGV("-- tuning '%s' -> '%s'", mapSrc, value.c_str()); in loadCodecProperties() 1890 (void)(sShaperOps->setTuning)(shaperHandle, &mapSrc[tuningPrefixLen], in loadCodecProperties() [all …]
|