Commit c029ea39 authored by Michael Niedermayer's avatar Michael Niedermayer

AVDictionary: warn about its shortcommings and mention available replacements.

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 7b7c47c8
......@@ -19,6 +19,13 @@
/**
* @file Public dictionary API.
* @deprecated
* AVDictionary is provided for compatibility with libav. It is both in
* implementation as well as API inefficient. It doesnt scale and is
* be extreemly slow with large dictionaries.
* It is recommanded that new code uses our tree container from tree.c/h
* where applicable.
* Which uses AVL trees to achive O(log n) performance
*/
#ifndef AVUTIL_DICT_H
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment