Searched defs:kMap (Results 1 - 3 of 3) sorted by relevance

/frameworks/av/media/libstagefright/
H A DStagefrightMetadataRetriever.cpp416 static const Map kMap[] = { local
433 static const size_t kNumMapEntries = sizeof(kMap) / sizeof(kMap[0]);
437 if (meta->findCString(kMap[i].from, &value)) {
438 mMetaData.add(kMap[i].to, String8(value));
H A DMP3Extractor.cpp594 static const Map kMap[] = { local
607 static const size_t kNumMapEntries = sizeof(kMap) / sizeof(kMap[0]);
610 ID3::Iterator *it = new ID3::Iterator(id3, kMap[i].tag1);
613 it = new ID3::Iterator(id3, kMap[i].tag2);
625 meta->setCString(kMap[i].key, s);
H A DOggExtractor.cpp790 } kMap[] = { local
808 for (size_t j = 0; j < sizeof(kMap) / sizeof(kMap[0]); ++j) {
809 size_t tagLen = strlen(kMap[j].mTag);
810 if (!strncasecmp(kMap[j].mTag, comment, tagLen)
812 if (kMap[j].mKey == kKeyAlbumArt) {
817 } else if (kMap[j].mKey == kKeyAutoLoop) {
822 fileMeta->setCString(kMap[j].mKey, &comment[tagLen + 1]);

Completed in 97 milliseconds