mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2024-11-10 08:34:12 +01:00
Fix typo
This commit is contained in:
parent
ef2b4be7c4
commit
c9e0cde17a
2 changed files with 2 additions and 2 deletions
|
@ -14,7 +14,7 @@ public abstract class PipeArgument
|
||||||
|
|
||||||
protected PipeArgument(PipeDirection direction)
|
protected PipeArgument(PipeDirection direction)
|
||||||
{
|
{
|
||||||
PipeName = PipeHelpers.GetUnqiuePipeName();
|
PipeName = PipeHelpers.GetUniquePipeName();
|
||||||
_direction = direction;
|
_direction = direction;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@ namespace FFMpegCore.Pipes
|
||||||
{
|
{
|
||||||
internal static class PipeHelpers
|
internal static class PipeHelpers
|
||||||
{
|
{
|
||||||
public static string GetUnqiuePipeName() => $"FFMpegCore_{Guid.NewGuid().ToString("N").Substring(16, 16)}";
|
public static string GetUniquePipeName() => $"FFMpegCore_{Guid.NewGuid().ToString("N").Substring(16, 16)}";
|
||||||
|
|
||||||
public static string GetPipePath(string pipeName)
|
public static string GetPipePath(string pipeName)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue