Public dictionary API.
More...
Go to the source code of this file.
Data Structures
Macros
Take ownership of a key that's been allocated with
av_malloc() and children.
Take ownership of a value that's been allocated with
av_malloc() and chilren.
Don't overwrite existing entries.
If the entry already exists, append to it.
Functions
Get a dictionary entry with matching key.
Get number of entries in dictionary.
Set the given entry in *pm, overwriting an existing entry.
Free all the memory allocated for an
AVDictionary struct and all keys and values.
Detailed Description
Public dictionary API.
- Deprecated:
- AVDictionary is provided for compatibility with libav. It is both in implementation as well as API inefficient. It does not scale and is extremely slow with large dictionaries. It is recommended that new code uses our tree container from tree.c/h where applicable, which uses AVL trees to achieve O(log n) performance.
Definition in file dict.h.