FFMpegCore/FFMpegCore.Test/TasksExtensions.cs
Максим Багрянцев 5c437211b2 Added ffprobe stream input
Former-commit-id: cfda0fc9ae
2020-04-28 15:21:48 +03:00

16 lines
313 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
namespace FFMpegCore.Test
{
static class TasksExtensions
{
public static T WaitForResult<T>(this Task<T> task)
{
task.Wait();
return task.Result;
}
}
}