mirror of
https://github.com/rosenbjerg/FFMpegCore.git
synced 2025-01-18 20:46:43 +00:00
Update PipeArgument.cs
This commit is contained in:
parent
d923dace6c
commit
a355f7416f
1 changed files with 2 additions and 2 deletions
|
@ -35,9 +35,9 @@ public void ClosePipe()
|
|||
Pipe?.Dispose();
|
||||
Pipe = null;
|
||||
}
|
||||
public Task ProcessDataAsync()
|
||||
public async Task ProcessDataAsync()
|
||||
{
|
||||
return ProcessDataAsync(CancellationToken.None);
|
||||
await ProcessDataAsync(CancellationToken.None).ConfigureAwait(false);
|
||||
}
|
||||
|
||||
public abstract Task ProcessDataAsync(CancellationToken token);
|
||||
|
|
Loading…
Reference in a new issue