[SCM] libav/experimental: cosmetic

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 15:48:56 UTC 2013


The following commit has been merged in the experimental branch:
commit 18769c0a7974a1ba7385eb030e4400046df5330d
Author: Michael Niedermayer <michaelni at gmx.at>
Date:   Sun Jul 9 10:56:39 2006 +0000

    cosmetic
    
    Originally committed as revision 5690 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavutil/common.h b/libavutil/common.h
index 5318d3c..bdc3cc3 100644
--- a/libavutil/common.h
+++ b/libavutil/common.h
@@ -410,12 +410,9 @@ static inline int mid_pred(int a, int b, int c)
  */
 static inline int clip(int a, int amin, int amax)
 {
-    if (a < amin)
-        return amin;
-    else if (a > amax)
-        return amax;
-    else
-        return a;
+    if (a < amin)      return amin;
+    else if (a > amax) return amax;
+    else               return a;
 }
 
 /**

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list