mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-24 16:22:37 +00:00
simplify
Originally committed as revision 11533 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
b973f9ad7e
commit
3f161c7eab
@ -57,9 +57,8 @@ void *av_tree_insert(AVTreeNode **tp, void *key, int (*cmp)(void *key, const voi
|
|||||||
return t->elem;
|
return t->elem;
|
||||||
else if(t->child[0]||t->child[1]){
|
else if(t->child[0]||t->child[1]){
|
||||||
int i= !t->child[0];
|
int i= !t->child[0];
|
||||||
AVTreeNode **child= &t->child[i];
|
|
||||||
void *next_elem[2];
|
void *next_elem[2];
|
||||||
av_tree_find(*child, key, cmp, next_elem);
|
av_tree_find(t->child[i], key, cmp, next_elem);
|
||||||
key= t->elem= next_elem[i];
|
key= t->elem= next_elem[i];
|
||||||
v= -i;
|
v= -i;
|
||||||
}else{
|
}else{
|
||||||
|
Loading…
Reference in New Issue
Block a user