OSDN Git Service

インタフェース名変更: Ffmpeg -> FfmpegProfile
authoryukihane <yukihane.feather@gmail.com>
Fri, 19 Aug 2011 22:20:12 +0000 (07:20 +0900)
committeryukihane <yukihane.feather@gmail.com>
Fri, 19 Aug 2011 22:20:12 +0000 (07:20 +0900)
frontend/src/saccubus/converter/FfmpegCommand.java
frontend/src/saccubus/converter/classic/profile/Ffmpeg.java
frontend/src/yukihane/saccubus/converter/profile/FfmpegProfile.java [moved from frontend/src/yukihane/saccubus/converter/profile/Ffmpeg.java with 93% similarity]
frontend/src/yukihane/saccubus/converter/profile/Profile.java

index ec5166b..4dc18de 100644 (file)
@@ -15,7 +15,7 @@ import org.apache.commons.lang.StringUtils;
 import saccubus.ConvertStopFlag;
 import saccubus.conv.ConvertToVideoHook;
 import yukihane.saccubus.converter.profile.NgSetting;
 import saccubus.ConvertStopFlag;
 import saccubus.conv.ConvertToVideoHook;
 import yukihane.saccubus.converter.profile.NgSetting;
-import yukihane.saccubus.converter.profile.Ffmpeg;
+import yukihane.saccubus.converter.profile.FfmpegProfile;
 import yukihane.saccubus.converter.profile.FfmpegOption;
 import yukihane.saccubus.converter.profile.GeneralSetting;
 import saccubus.net.TextProgressListener;
 import yukihane.saccubus.converter.profile.FfmpegOption;
 import yukihane.saccubus.converter.profile.GeneralSetting;
 import saccubus.net.TextProgressListener;
@@ -37,10 +37,10 @@ public class FfmpegCommand extends AbstractCommand {
     private final File tcommFile;
     private final File videoFile;
     private final File convertedVideoFile;
     private final File tcommFile;
     private final File videoFile;
     private final File convertedVideoFile;
-    private final Ffmpeg ffmpeg;
+    private final FfmpegProfile ffmpeg;
 
     FfmpegCommand(TextProgressListener listener, ConvertStopFlag flag, File commentFile, File tcommFile,
 
     FfmpegCommand(TextProgressListener listener, ConvertStopFlag flag, File commentFile, File tcommFile,
-            File videoFile, File convertedVideoFile, Ffmpeg ffmpeg, GeneralSetting general) throws IOException {
+            File videoFile, File convertedVideoFile, FfmpegProfile ffmpeg, GeneralSetting general) throws IOException {
         super(listener, flag);
         this.commentFile = commentFile;
         this.tcommFile = tcommFile;
         super(listener, flag);
         this.commentFile = commentFile;
         this.tcommFile = tcommFile;
@@ -257,7 +257,7 @@ public class FfmpegCommand extends AbstractCommand {
         return sb.toString();
     }
 
         return sb.toString();
     }
 
-    private Ffmpeg getFfmpeg() {
+    private FfmpegProfile getFfmpeg() {
         return ffmpeg;
     }
 }
         return ffmpeg;
     }
 }
index 8d6d7c6..47318e5 100644 (file)
@@ -7,7 +7,7 @@ import java.io.File;
  *
  * @author yuki
  */
  *
  * @author yuki
  */
-public class Ffmpeg implements yukihane.saccubus.converter.profile.Ffmpeg {
+public class Ffmpeg implements yukihane.saccubus.converter.profile.FfmpegProfile {
 
     private final File ffmpeg;
     private final File vhook;
 
     private final File ffmpeg;
     private final File vhook;
@@ -6,7 +6,7 @@ import java.io.File;
  *
  * @author yuki
  */
  *
  * @author yuki
  */
-public interface Ffmpeg {
+public interface FfmpegProfile {
 
     FfmpegOption getFfmpegOption();
 
 
     FfmpegOption getFfmpegOption();
 
index 1324e0b..d528776 100644 (file)
@@ -18,7 +18,7 @@ public interface Profile {
 
     boolean needsConvert();
 
 
     boolean needsConvert();
 
-    Ffmpeg getFfmpeg();
+    FfmpegProfile getFfmpeg();
 
     GeneralSetting getGeneralSetting();
 }
 
     GeneralSetting getGeneralSetting();
 }