mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-12-14 18:15:44 +00:00
Fix typo
This commit is contained in:
parent
94174a28db
commit
c0b5e8e52f
2 changed files with 2 additions and 2 deletions
|
|
@ -11,7 +11,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()
|
public static string GetUniquePipeName()
|
||||||
{
|
{
|
||||||
return $"FFMpegCore_{Guid.NewGuid().ToString("N").Substring(0, 16)}";
|
return $"FFMpegCore_{Guid.NewGuid().ToString("N").Substring(0, 16)}";
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue