[Ffmpeg-cvslog] r8137 - in trunk/libavutil: Makefile tree.h

diego subversion
Tue Feb 27 01:11:15 CET 2007


Author: diego
Date: Tue Feb 27 01:11:14 2007
New Revision: 8137

Modified:
   trunk/libavutil/Makefile
   trunk/libavutil/tree.h

Log:
Revert previous commit that contained an unrelated hunk.


Modified: trunk/libavutil/Makefile
==============================================================================
--- trunk/libavutil/Makefile	(original)
+++ trunk/libavutil/Makefile	Tue Feb 27 01:11:14 2007
@@ -24,7 +24,9 @@ HEADERS = avutil.h common.h mathematics.
           random.h
 
 NAME=avutil
+ifeq ($(BUILD_SHARED),yes)
 LIBVERSION=$(LAVUVERSION)
 LIBMAJOR=$(LAVUMAJOR)
+endif
 
 include ../common.mak

Modified: trunk/libavutil/tree.h
==============================================================================
--- trunk/libavutil/tree.h	(original)
+++ trunk/libavutil/tree.h	Tue Feb 27 01:11:14 2007
@@ -41,10 +41,10 @@ void *av_tree_find(const struct AVTreeNo
  *              root node can change during insertions, this is required to
  *              keep the tree balanced
  *
- * @return If no insertion happened, the found element.
- *         If an insertion happened, then either key or NULL is returned (which one
- *         it is depends on the tree state and the implementation, you should make
- *         no assumptions that it's one or the other in the code).
+ * @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);




More information about the ffmpeg-cvslog mailing list