Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libremedia
Tethys
FFmpeg
Commits
fc0b0416
Commit
fc0b0416
authored
18 years ago
by
Michael Niedermayer
Browse files
Options
Downloads
Patches
Plain Diff
doxy
Originally committed as revision 7188 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
62b9fc15
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libavutil/tree.h
+25
-2
25 additions, 2 deletions
libavutil/tree.h
with
25 additions
and
2 deletions
libavutil/tree.h
+
25
−
2
View file @
fc0b0416
...
...
@@ -22,8 +22,31 @@
#define TREE_H
struct
AVTreeNode
;
void
*
av_tree_find
(
const
struct
AVTreeNode
*
t
,
void
*
key
,
int
(
*
cmp
)(
void
*
key
,
const
void
*
b
),
void
*
next
[
2
]);
void
*
av_tree_insert
(
struct
AVTreeNode
**
tp
,
void
*
key
,
int
(
*
cmp
)(
void
*
key
,
const
void
*
b
));
/**
* Finds an element.
* @param root a pointer to the root node of the tree
* @param next if next is not NULL then next[0] will contain the previous element and
* next[1] the next element if either doesnt exist then the corresponding
* entry in next is unchanged
* @return an element with cmp(key, elem)==0 or NULL if no such element exists in
* the tree
*/
void
*
av_tree_find
(
const
struct
AVTreeNode
*
root
,
void
*
key
,
int
(
*
cmp
)(
void
*
key
,
const
void
*
b
),
void
*
next
[
2
]);
/**
* Finds a element for which cmp(key, elem)==0, if no such element is found key
* is inserted into the tree.
* @param rootp a pointer to a pointer to the root node of the tree note the
* root node can change during insertions, this is required to
* keep the tree balanced
*
* @return if no insertion happened, the found element
* if a insertion happened, then either key or NULL is returned (which it is
* depends on the tree state and the implemenattion, you should make no
* asumtations that its one or the other in code)
*/
void
*
av_tree_insert
(
struct
AVTreeNode
**
rootp
,
void
*
key
,
int
(
*
cmp
)(
void
*
key
,
const
void
*
b
));
void
av_tree_destroy
(
struct
AVTreeNode
*
t
);
#endif
/* TREE_H */
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment