From 01d44745958e9224d0d18d7374712234ec1edb68 Mon Sep 17 00:00:00 2001 From: Malte Rosenbjerg Date: Thu, 18 Jun 2020 21:37:12 +0200 Subject: [PATCH] Move to separate files --- FFMpegCore/FFMpeg/Arguments/InputArgument.cs | 24 -------------------- 1 file changed, 24 deletions(-) diff --git a/FFMpegCore/FFMpeg/Arguments/InputArgument.cs b/FFMpegCore/FFMpeg/Arguments/InputArgument.cs index c201c1f..57d8ffe 100644 --- a/FFMpegCore/FFMpeg/Arguments/InputArgument.cs +++ b/FFMpegCore/FFMpeg/Arguments/InputArgument.cs @@ -1,8 +1,6 @@ using System; using System.IO; using System.Linq; -using System.Threading; -using System.Threading.Tasks; namespace FFMpegCore.Arguments { @@ -38,26 +36,4 @@ public void Pre() public string Text => string.Join(" ", FilePaths.Select(v => $"-i \"{v}\"")); } - - public interface IArgument - { - /// - /// The textual representation of the argument - /// - string Text { get; } - } - - public interface IInputOutputArgument : IArgument - { - void Pre() {} - Task During(CancellationToken? cancellationToken = null) => Task.CompletedTask; - void Post() {} - } - - public interface IInputArgument : IInputOutputArgument - { - } - public interface IOutputArgument : IInputOutputArgument - { - } }