comparison tree.h @ 853:e067fb9b7d68 libavutil

Revert r22119 and partially revert 22120.
author vitor
date Mon, 01 Mar 2010 18:16:10 +0000
parents ae61fe3a97b9
children ccac021c9a8e
comparison
equal deleted inserted replaced
852:ae61fe3a97b9 853:e067fb9b7d68
76 * Which one it is depends on the tree state and the implementation. You 76 * Which one it is depends on the tree state and the implementation. You
77 * should make no assumptions that it's one or the other in the code. 77 * should make no assumptions that it's one or the other in the code.
78 */ 78 */
79 void *av_tree_insert(struct AVTreeNode **rootp, void *key, int (*cmp)(void *key, const void *b), struct AVTreeNode **next); 79 void *av_tree_insert(struct AVTreeNode **rootp, void *key, int (*cmp)(void *key, const void *b), struct AVTreeNode **next);
80 void av_tree_destroy(struct AVTreeNode *t); 80 void av_tree_destroy(struct AVTreeNode *t);
81 void av_tree_destroy_free_elem(struct AVTreeNode *t);
82 81
83 #endif /* AVUTIL_TREE_H */ 82 #endif /* AVUTIL_TREE_H */