Description: This patch disables video creation feature.
Author: Gabriele Giacone <1o5g4r8o@gmail.com>

--- a/src/com/eteks/sweethome3d/viewcontroller/ViewFactory.java
+++ b/src/com/eteks/sweethome3d/viewcontroller/ViewFactory.java
@@ -196,8 +196,8 @@ public interface ViewFactory {
   /**
    * Returns a new view able to compute a 3D video of a home. 
    */
-  public abstract DialogView createVideoView(Home home, UserPreferences preferences, 
-                                             VideoController videoController);
+/*  public abstract DialogView createVideoView(Home home, UserPreferences preferences, 
+                                             VideoController videoController);	*/
 
   /**
    * Returns a new view that displays Sweet Home 3D help.
--- a/src/com/eteks/sweethome3d/viewcontroller/VideoController.java
+++ b/src/com/eteks/sweethome3d/viewcontroller/VideoController.java
@@ -99,7 +99,7 @@ public class VideoController implements
   public DialogView getView() {
     // Create view lazily only once it's needed
     if (this.videoView == null) {
-      this.videoView = this.viewFactory.createVideoView(this.home, this.preferences, this);
+//      this.videoView = this.viewFactory.createVideoView(this.home, this.preferences, this);
     }
     return this.videoView;
   }
--- a/src/com/eteks/sweethome3d/swing/SwingViewFactory.java
+++ b/src/com/eteks/sweethome3d/swing/SwingViewFactory.java
@@ -58,7 +58,6 @@ import com.eteks.sweethome3d.viewcontrol
 import com.eteks.sweethome3d.viewcontroller.ThreadedTaskController;
 import com.eteks.sweethome3d.viewcontroller.ThreadedTaskView;
 import com.eteks.sweethome3d.viewcontroller.UserPreferencesController;
-import com.eteks.sweethome3d.viewcontroller.VideoController;
 import com.eteks.sweethome3d.viewcontroller.View;
 import com.eteks.sweethome3d.viewcontroller.ViewFactory;
 import com.eteks.sweethome3d.viewcontroller.WallController;
@@ -298,11 +297,11 @@ public class SwingViewFactory implements
   /**
    * Returns a new view able to create 3D videos of the given home. 
    */
-  public DialogView createVideoView(Home home, 
+/*  public DialogView createVideoView(Home home, 
                                     UserPreferences preferences, 
                                     VideoController videoController) {
     return new VideoPanel(home, preferences, videoController);
-  }
+  }	*/
   
   /**
    * Returns a new view that displays Sweet Home 3D help.
--- a/build.xml
+++ b/build.xml
@@ -54,6 +54,8 @@
         <pathelement location="libtest/jnlp.jar"/>
       </classpath>
 	<exclude name="com/eteks/sweethome3d/MacOSXConfiguration.java"/>
+	<exclude name="com/eteks/sweethome3d/swing/VideoPanel.java"/>
+	<exclude name="com/eteks/sweethome3d/viewcontroller/VideoController.java"/>
     </javac>
     
     <!-- Copy resources excepted furniture, textures and help files -->
--- a/src/com/eteks/sweethome3d/swing/package.properties
+++ b/src/com/eteks/sweethome3d/swing/package.properties
@@ -1048,8 +1048,8 @@ HomePane.CREATE_PHOTOS_AT_POINTS_OF_VIEW
 HomePane.CREATE_PHOTOS_AT_POINTS_OF_VIEW.ShortDescription=Create photos at stored points of view
 HomePane.CREATE_PHOTOS_AT_POINTS_OF_VIEW.MnemonicKey=C
 
-HomePane.CREATE_VIDEO.Name=Create video...
-HomePane.CREATE_VIDEO.ShortDescription=Create a 3D video
+HomePane.CREATE_VIDEO.Name=Create video... (See README.Debian file)
+HomePane.CREATE_VIDEO.ShortDescription=Create a 3D video (See README.Debian file)
 HomePane.CREATE_VIDEO.MnemonicKey=O
 # Note to translators: do not copy the following key in localized file
 HomePane.CREATE_VIDEO.SmallIcon=resources/icons/tango/camera-video.png
--- a/src/com/eteks/sweethome3d/viewcontroller/HomeController.java
+++ b/src/com/eteks/sweethome3d/viewcontroller/HomeController.java
@@ -315,7 +315,7 @@ public class HomeController implements C
     homeView.setEnabled(HomeView.ActionType.VIEW_FROM_OBSERVER, true);
     homeView.setEnabled(HomeView.ActionType.MODIFY_3D_ATTRIBUTES, true);
     homeView.setEnabled(HomeView.ActionType.CREATE_PHOTO, true);
-    homeView.setEnabled(HomeView.ActionType.CREATE_VIDEO, true);
+    homeView.setEnabled(HomeView.ActionType.CREATE_VIDEO, false);
     homeView.setEnabled(HomeView.ActionType.EXPORT_TO_OBJ, true);
     homeView.setEnabled(HomeView.ActionType.HELP, true);
     homeView.setEnabled(HomeView.ActionType.ABOUT, true);
