annotate tree.h @ 259:2498a8c0c832 libavutil

spelling/grammar fixes for the Doxygen comments
author diego
date Tue, 27 Feb 2007 00:16:39 +0000
parents e5290a4c4ef4
children 2ed59b450840
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
136
4ae092965c27 AVL tree
michael
parents:
diff changeset
1 /*
4ae092965c27 AVL tree
michael
parents:
diff changeset
2 * copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at>
4ae092965c27 AVL tree
michael
parents:
diff changeset
3 *
4ae092965c27 AVL tree
michael
parents:
diff changeset
4 * This file is part of FFmpeg.
4ae092965c27 AVL tree
michael
parents:
diff changeset
5 *
4ae092965c27 AVL tree
michael
parents:
diff changeset
6 * FFmpeg is free software; you can redistribute it and/or
4ae092965c27 AVL tree
michael
parents:
diff changeset
7 * modify it under the terms of the GNU Lesser General Public
4ae092965c27 AVL tree
michael
parents:
diff changeset
8 * License as published by the Free Software Foundation; either
4ae092965c27 AVL tree
michael
parents:
diff changeset
9 * version 2.1 of the License, or (at your option) any later version.
4ae092965c27 AVL tree
michael
parents:
diff changeset
10 *
4ae092965c27 AVL tree
michael
parents:
diff changeset
11 * FFmpeg is distributed in the hope that it will be useful,
4ae092965c27 AVL tree
michael
parents:
diff changeset
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
4ae092965c27 AVL tree
michael
parents:
diff changeset
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
4ae092965c27 AVL tree
michael
parents:
diff changeset
14 * Lesser General Public License for more details.
4ae092965c27 AVL tree
michael
parents:
diff changeset
15 *
4ae092965c27 AVL tree
michael
parents:
diff changeset
16 * You should have received a copy of the GNU Lesser General Public
4ae092965c27 AVL tree
michael
parents:
diff changeset
17 * License along with FFmpeg; if not, write to the Free Software
4ae092965c27 AVL tree
michael
parents:
diff changeset
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
4ae092965c27 AVL tree
michael
parents:
diff changeset
19 */
4ae092965c27 AVL tree
michael
parents:
diff changeset
20
4ae092965c27 AVL tree
michael
parents:
diff changeset
21 #ifndef TREE_H
4ae092965c27 AVL tree
michael
parents:
diff changeset
22 #define TREE_H
4ae092965c27 AVL tree
michael
parents:
diff changeset
23
4ae092965c27 AVL tree
michael
parents:
diff changeset
24 struct AVTreeNode;
150
michael
parents: 136
diff changeset
25
michael
parents: 136
diff changeset
26 /**
michael
parents: 136
diff changeset
27 * Finds an element.
michael
parents: 136
diff changeset
28 * @param root a pointer to the root node of the tree
259
2498a8c0c832 spelling/grammar fixes for the Doxygen comments
diego
parents: 258
diff changeset
29 * @param next If next is not NULL then next[0] will contain the previous
2498a8c0c832 spelling/grammar fixes for the Doxygen comments
diego
parents: 258
diff changeset
30 * element and next[1] the next element if either does not exist
2498a8c0c832 spelling/grammar fixes for the Doxygen comments
diego
parents: 258
diff changeset
31 * then the corresponding entry in next is unchanged.
2498a8c0c832 spelling/grammar fixes for the Doxygen comments
diego
parents: 258
diff changeset
32 * @return An element with cmp(key, elem)==0 or NULL if no such element exists in
2498a8c0c832 spelling/grammar fixes for the Doxygen comments
diego
parents: 258
diff changeset
33 * the tree.
150
michael
parents: 136
diff changeset
34 */
michael
parents: 136
diff changeset
35 void *av_tree_find(const struct AVTreeNode *root, void *key, int (*cmp)(void *key, const void *b), void *next[2]);
michael
parents: 136
diff changeset
36
michael
parents: 136
diff changeset
37 /**
michael
parents: 136
diff changeset
38 * Finds a element for which cmp(key, elem)==0, if no such element is found key
michael
parents: 136
diff changeset
39 * is inserted into the tree.
259
2498a8c0c832 spelling/grammar fixes for the Doxygen comments
diego
parents: 258
diff changeset
40 * @param rootp A pointer to a pointer to the root node of the tree. Note that
2498a8c0c832 spelling/grammar fixes for the Doxygen comments
diego
parents: 258
diff changeset
41 * the root node can change during insertions, this is required
2498a8c0c832 spelling/grammar fixes for the Doxygen comments
diego
parents: 258
diff changeset
42 * to keep the tree balanced.
150
michael
parents: 136
diff changeset
43 *
259
2498a8c0c832 spelling/grammar fixes for the Doxygen comments
diego
parents: 258
diff changeset
44 * @return If no insertion happened, the found element.
2498a8c0c832 spelling/grammar fixes for the Doxygen comments
diego
parents: 258
diff changeset
45 * If an insertion happened, then either key or NULL is returned (which
2498a8c0c832 spelling/grammar fixes for the Doxygen comments
diego
parents: 258
diff changeset
46 * one it is depends on the tree state and the implementation, you
2498a8c0c832 spelling/grammar fixes for the Doxygen comments
diego
parents: 258
diff changeset
47 * should make no assumptions that it's one or the other in the code).
150
michael
parents: 136
diff changeset
48 */
michael
parents: 136
diff changeset
49 void *av_tree_insert(struct AVTreeNode **rootp, void *key, int (*cmp)(void *key, const void *b));
136
4ae092965c27 AVL tree
michael
parents:
diff changeset
50 void av_tree_destroy(struct AVTreeNode *t);
4ae092965c27 AVL tree
michael
parents:
diff changeset
51
4ae092965c27 AVL tree
michael
parents:
diff changeset
52 #endif /* TREE_H */