diff --git a/trunk/LipSync/LipSync/Editor/Form1.cs b/trunk/LipSync/LipSync/Editor/Form1.cs index d07c687..6ddf2ff 100644 --- a/trunk/LipSync/LipSync/Editor/Form1.cs +++ b/trunk/LipSync/LipSync/Editor/Form1.cs @@ -1774,19 +1774,17 @@ namespace LipSync { if ( args.UseVfwEncoder ) { bmp = new Bitmap( size.Width, size.Height, System.Drawing.Imaging.PixelFormat.Format24bppRgb ); if ( is_raw_mode ) { - AviWriterVcm awvcm = new AviWriterVcm(); - bool ret = awvcm.Open( args.AviFile, + RawAvi2Writer awraw = new RawAvi2Writer(); + bool ret = awraw.Open( args.AviFile, AppManager.SaveData.DwScale, AppManager.SaveData.DwRate, size.Width, size.Height, - !is_raw_mode, - args.IsTransparent, Process.GetCurrentProcess().MainWindowHandle ); if ( !ret ) { return; } - writer = awvcm; + writer = awraw; } else { AviWriterVfw awvfw = new AviWriterVfw(); bool ret = awvfw.Open( args.AviFile,