Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
3f161c7e
Commit
3f161c7e
authored
Jan 16, 2008
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
simplify
Originally committed as revision 11533 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
b973f9ad
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
tree.c
libavutil/tree.c
+1
-2
No files found.
libavutil/tree.c
View file @
3f161c7e
...
...
@@ -57,9 +57,8 @@ void *av_tree_insert(AVTreeNode **tp, void *key, int (*cmp)(void *key, const voi
return
t
->
elem
;
else
if
(
t
->
child
[
0
]
||
t
->
child
[
1
]){
int
i
=
!
t
->
child
[
0
];
AVTreeNode
**
child
=
&
t
->
child
[
i
];
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
];
v
=
-
i
;
}
else
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment