Hi i like AI and ill reply with more comments about this elsewhere but as i looked at the code, i had to reply here
[...] > +/* Get a dictionary entry */ > +AVDictionaryEntry2 *av_dict2_get(const AVDictionary2 *m, const char *key, > + const AVDictionaryEntry2 *prev, int flags) { > + unsigned int hash; > + int table_idx; > + DictEntry *entry; > + > + static AVDictionaryEntry2 de; // Return value - holds pointers to > internal data > + > + if (!m || !key) > + return NULL; > + > + if (prev) > + return NULL; // 'prev' functionality not implemented not implemented ? > + > + // Get hash index > + hash = dict_hash(key, m->flags & AV_DICT2_MATCH_CASE); case sensitivity is supported by having the set funtiom insert with the case sensitivity that the get function later will use ? > + table_idx = hash % m->table_size; > + > + // Search in chain > + for (entry = m->entries[table_idx]; entry; entry = entry->next) { > + if ((m->flags & AV_DICT2_MATCH_CASE ? > + !strcmp(entry->key, key) : > + !av_strcasecmp(entry->key, key))) { > + > + // Found match > + de.key = entry->key; > + de.value = entry->value; > + return &de; tasty globals for thread saftey thx [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB Take away the freedom of one citizen and you will be jailed, take away the freedom of all citizens and you will be congratulated by your peers in Parliament.
signature.asc
Description: PGP signature
_______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".