mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-05-13 21:26:33 +02:00
Revert previous commit that contained an unrelated hunk.
Originally committed as revision 8137 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
a93575fa3d
commit
7122f7c771
@ -24,7 +24,9 @@ HEADERS = avutil.h common.h mathematics.h integer.h rational.h \
|
|||||||
random.h
|
random.h
|
||||||
|
|
||||||
NAME=avutil
|
NAME=avutil
|
||||||
|
ifeq ($(BUILD_SHARED),yes)
|
||||||
LIBVERSION=$(LAVUVERSION)
|
LIBVERSION=$(LAVUVERSION)
|
||||||
LIBMAJOR=$(LAVUMAJOR)
|
LIBMAJOR=$(LAVUMAJOR)
|
||||||
|
endif
|
||||||
|
|
||||||
include ../common.mak
|
include ../common.mak
|
||||||
|
@ -41,10 +41,10 @@ void *av_tree_find(const struct AVTreeNode *root, void *key, int (*cmp)(void *ke
|
|||||||
* root node can change during insertions, this is required to
|
* root node can change during insertions, this is required to
|
||||||
* keep the tree balanced
|
* keep the tree balanced
|
||||||
*
|
*
|
||||||
* @return If no insertion happened, the found element.
|
* @return if no insertion happened, the found element
|
||||||
* If an insertion happened, then either key or NULL is returned (which one
|
* if a insertion happened, then either key or NULL is returned (which it is
|
||||||
* it is depends on the tree state and the implementation, you should make
|
* depends on the tree state and the implemenattion, you should make no
|
||||||
* no assumptions that it's one or the other in the code).
|
* 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_insert(struct AVTreeNode **rootp, void *key, int (*cmp)(void *key, const void *b));
|
||||||
void av_tree_destroy(struct AVTreeNode *t);
|
void av_tree_destroy(struct AVTreeNode *t);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user