Revision: 42399
          
http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=42399
Author:   keir
Date:     2011-12-04 14:08:21 +0000 (Sun, 04 Dec 2011)
Log Message:
-----------
Remove an unused parameter from tracking.c

Modified Paths:
--------------
    branches/soc-2011-tomato/source/blender/blenkernel/intern/tracking.c

Modified: branches/soc-2011-tomato/source/blender/blenkernel/intern/tracking.c
===================================================================
--- branches/soc-2011-tomato/source/blender/blenkernel/intern/tracking.c        
2011-12-04 13:58:40 UTC (rev 42398)
+++ branches/soc-2011-tomato/source/blender/blenkernel/intern/tracking.c        
2011-12-04 14:08:21 UTC (rev 42399)
@@ -1009,7 +1009,7 @@
        return pixels;
 }
 
-static unsigned char *get_ucharbuf(ImBuf *ibuf, int flags)
+static unsigned char *get_ucharbuf(ImBuf *ibuf)
 {
        int x, y;
        unsigned char *pixels, *cp;
@@ -1045,7 +1045,7 @@
        *width_r= tmpibuf->x;
        *height_r= tmpibuf->y;
 
-       pixels= get_ucharbuf(tmpibuf, track->flag);
+       pixels= get_ucharbuf(tmpibuf);
 
        IMB_freeImBuf(tmpibuf);
 
@@ -2054,7 +2054,7 @@
 {
 #ifdef WITH_LIBMV
        struct libmv_Features *features;
-       unsigned char *pixels= get_ucharbuf(ibuf, 0);
+       unsigned char *pixels= get_ucharbuf(ibuf);
 
        features= libmv_detectFeaturesFAST(pixels, ibuf->x, ibuf->y, ibuf->x, 
margin, min_trackness, min_distance);
 

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
http://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to