VFile: fix c0bits etc. after setformat; Vrec.py: use setformat; rm Makefile.
diff --git a/Demo/sgi/video/Vrec.py b/Demo/sgi/video/Vrec.py
index 7b95aee..a78490f 100755
--- a/Demo/sgi/video/Vrec.py
+++ b/Demo/sgi/video/Vrec.py
@@ -255,17 +255,17 @@
 	if filename:
 		vout = VFile.VoutFile().init(filename)
 		if mono:
-			vout.format = 'mono'
+			format = 'mono'
 		elif grey and greybits == 8:
-			vout.format = 'grey'
+			format = 'grey'
 		elif grey:
-			vout.format = 'grey'+`abs(greybits)`
+			format = 'grey'+`abs(greybits)`
 		else:
-			vout.format = 'rgb8'
-		vout.width = x
-		vout.height = y
+			format = 'rgb8'
+		vout.setformat(format)
+		vout.setsize(x, y)
 		if fields:
-			vout.packfactor = (1,-2)
+			vout.setpf(1, -2))
 		vout.writeheader()
 		if preallocspace:
 			print 'Preallocating space...'