chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 13:13:17 +08:00
commit 58ab8315aa
8961 changed files with 5602567 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
using System.Runtime.CompilerServices;
namespace T3.VideoServices.Tests;
internal static class TestModuleInit
{
// The CI/dev machine may only have a GPL FFmpeg build installed. The license gate is a distribution
// concern, not a decode concern, so allow it for tests (runs once before any test).
[ModuleInitializer]
internal static void Init() => FfmpegLibrary.AllowRestrictedBuildForTesting = true;
}