HomeSort by relevance Sort by last modified time
    Searched refs:mMetadataValueList (Results 1 - 2 of 2) sorted by null

  /external/opencore/android/
metadatadriver.cpp 221 for (uint32 i = 0, n = mMetadataValueList.size(); i < n; ++i) {
222 if (0 == strncasecmp(mMetadataValueList[i].key, key, strlen(key))) {
224 switch(GetValTypeFromKeyString(mMetadataValueList[i].key)) {
226 uint32 length = oscl_strlen(mMetadataValueList[i].value.pChar_value) + 1;
230 oscl_snprintf(value, length, "%s", mMetadataValueList[i].value.pChar_value);
235 uint32 length = oscl_strlen(mMetadataValueList[i].value.pWChar_value) + 1;
239 length = oscl_UnicodeToUTF8(mMetadataValueList[i].value.pWChar_value, length, value, valueLength);
256 if ((p = strcasestr(mMetadataValueList[i].key, timeScaleStr)) != NULL) {
260 int duration = (mMetadataValueList[i].value.uint32_value * 1000LL) / timescale;
265 oscl_snprintf(value, valueLength, "%d", mMetadataValueList[i].value.int32_value)
    [all...]
metadatadriver.h 182 Oscl_Vector<PvmiKvp,OsclMemAllocator> mMetadataValueList;
188 // get these out of mMetadataValueList

Completed in 56 milliseconds