video plugins

This commit is contained in:
JSD\13999
2026-03-24 11:43:22 +08:00
parent 3f78e8464a
commit 1db5db6a77
117 changed files with 28171 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
/*----------------------------------------------------------------
// Copyright (C) 2025 Beijing All rights reserved.
//
// Author: huachangmiao
// Create Date: 2025/04/11
// Module Describe:
//----------------------------------------------------------------*/
namespace LeviathanVideo.Abstractions
{
public interface IFixedArray
{
int Length { get; }
}
internal interface IFixedArray<T> : IFixedArray
{
T this[uint index] { get; set; }
T[] ToArray();
void UpdateFrom(T[] array);
}
}