2 * copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at>
4 * This file is part of FFmpeg.
6 * FFmpeg is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * FFmpeg is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with FFmpeg; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
26 typedef struct AVTreeNode {
27 struct AVTreeNode *child[2];
32 const int av_tree_node_size = sizeof(AVTreeNode);
34 struct AVTreeNode *av_tree_node_alloc(void)
36 return av_mallocz(sizeof(struct AVTreeNode));
39 void *av_tree_find(const AVTreeNode *t, void *key,
40 int (*cmp)(const void *key, const void *b), void *next[2])
43 unsigned int v = cmp(key, t->elem);
46 next[v >> 31] = t->elem;
47 return av_tree_find(t->child[(v >> 31) ^ 1], key, cmp, next);
50 av_tree_find(t->child[0], key, cmp, next);
51 av_tree_find(t->child[1], key, cmp, next);
59 void *av_tree_insert(AVTreeNode **tp, void *key,
60 int (*cmp)(const void *key, const void *b), AVTreeNode **next)
64 unsigned int v = cmp(t->elem, key);
69 else if (t->child[0] || t->child[1]) {
72 av_tree_find(t->child[i], key, cmp, next_elem);
73 key = t->elem = next_elem[i];
81 ret = av_tree_insert(&t->child[v >> 31], key, cmp, next);
83 int i = (v >> 31) ^ !!*next;
84 AVTreeNode **child = &t->child[i];
85 t->state += 2 * i - 1;
87 if (!(t->state & 1)) {
89 /* The following code is equivalent to
90 * if ((*child)->state * 2 == -t->state)
91 * rotate(child, i ^ 1);
95 * static void rotate(AVTreeNode **tp, int i)
100 * t->child[i] = t->child[i]->child[i ^ 1];
101 * (*tp)->child[i ^ 1] = t;
102 * i = 4 * t->state + 2 * (*tp)->state + 12;
103 * t->state = ((0x614586 >> i) & 3) - 1;
104 * (*tp)->state = ((0x400EEA >> i) & 3) - 1 +
105 * ((*tp)->state >> 1);
107 * but such a rotate function is both bigger and slower
109 if ((*child)->state * 2 == -t->state) {
110 *tp = (*child)->child[i ^ 1];
111 (*child)->child[i ^ 1] = (*tp)->child[i];
112 (*tp)->child[i] = *child;
113 *child = (*tp)->child[i ^ 1];
114 (*tp)->child[i ^ 1] = t;
116 (*tp)->child[0]->state = -((*tp)->state > 0);
117 (*tp)->child[1]->state = (*tp)->state < 0;
121 *child = (*child)->child[i ^ 1];
122 (*tp)->child[i ^ 1] = t;
127 (*tp)->state = -t->state;
131 if (!(*tp)->state ^ !!*next)
146 void av_tree_destroy(AVTreeNode *t)
149 av_tree_destroy(t->child[0]);
150 av_tree_destroy(t->child[1]);
155 void av_tree_enumerate(AVTreeNode *t, void *opaque,
156 int (*cmp)(void *opaque, void *elem),
157 int (*enu)(void *opaque, void *elem))
160 int v = cmp ? cmp(opaque, t->elem) : 0;
162 av_tree_enumerate(t->child[0], opaque, cmp, enu);
164 enu(opaque, t->elem);
166 av_tree_enumerate(t->child[1], opaque, cmp, enu);