[SCM] libav/experimental: Fix indention after last commit.

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 16:54:32 UTC 2013


The following commit has been merged in the experimental branch:
commit b154ed5abe137a54715ddd15dcc658bf04b16557
Author: Michael Niedermayer <michaelni at gmx.at>
Date:   Sat Nov 14 19:15:09 2009 +0000

    Fix indention after last commit.
    
    Originally committed as revision 20538 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavutil/tree.c b/libavutil/tree.c
index 85ef629..4b78764 100644
--- a/libavutil/tree.c
+++ b/libavutil/tree.c
@@ -138,10 +138,10 @@ void av_tree_destroy(AVTreeNode *t){
 #if 0
 void av_tree_enumerate(AVTreeNode *t, void *opaque, int (*cmp)(void *opaque, void *elem), int (*enu)(void *opaque, void *elem)){
     if(t){
-    int v= cmp ? cmp(opaque, t->elem) : 0;
-    if(v>=0) av_tree_enumerate(t->child[0], opaque, cmp, enu);
-    if(v==0) enu(opaque, t->elem);
-    if(v<=0) av_tree_enumerate(t->child[1], opaque, cmp, enu);
+        int v= cmp ? cmp(opaque, t->elem) : 0;
+        if(v>=0) av_tree_enumerate(t->child[0], opaque, cmp, enu);
+        if(v==0) enu(opaque, t->elem);
+        if(v<=0) av_tree_enumerate(t->child[1], opaque, cmp, enu);
     }
 }
 #endif

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list