Home | History | Annotate | Download | only in libstagefright

Lines Matching defs:def

106     MediaExtractor::ExtractorDef def;
112 : def(definition), libHandle(handle), libPath(path) {
114 uuidString.appendFormat("%02x", def.extractor_uuid.b[i]);
119 ALOGV("closing handle for %s %d", libPath.c_str(), def.extractor_version);
151 if ((curCreator = (*it)->def.sniff(source, &newConfidence, &newMeta, &newFreeMeta))) {
176 if (plugin->def.def_version == 0
177 || plugin->def.def_version > MediaExtractor::EXTRACTORDEF_VERSION) {
178 ALOGE("don't understand extractor format %u, ignoring.", plugin->def.def_version);
181 if (memcmp(&plugin->def.extractor_uuid, "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", 16) == 0) {
185 if (plugin->def.extractor_name == NULL || strlen(plugin->def.extractor_name) == 0) {
191 if (memcmp(&((*it)->def.extractor_uuid), &plugin->def.extractor_uuid, 16) == 0) {
193 if ((*it)->def.extractor_version < plugin->def.extractor_version) {
196 plugin->def.extractor_name,
197 (*it)->def.extractor_version,
198 plugin->def.extractor_version);
203 plugin->def.extractor_name,
204 plugin->def.extractor_version,
205 (*it)->def.extractor_version);
210 ALOGV("registering extractor for %s", plugin->def.extractor_name);
333 (*it)->def.extractor_name,
335 (*it)->def.extractor_version,