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

/frameworks/base/media/libstagefright/
H A DStagefrightMetadataRetriever.cpp406 static const Map kMap[] = { local
423 static const size_t kNumMapEntries = sizeof(kMap) / sizeof(kMap[0]);
427 if (meta->findCString(kMap[i].from, &value)) {
428 mMetaData.add(kMap[i].to, String8(value));
H A DMP3Extractor.cpp548 static const Map kMap[] = { local
561 static const size_t kNumMapEntries = sizeof(kMap) / sizeof(kMap[0]);
564 ID3::Iterator *it = new ID3::Iterator(id3, kMap[i].tag1);
567 it = new ID3::Iterator(id3, kMap[i].tag2);
579 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 189 milliseconds