update:更新LeviathanVideo

This commit is contained in:
Liubing\LB
2026-07-01 14:30:24 +08:00
parent 7a7c1e9f50
commit 0fbb47c864
75 changed files with 22923 additions and 1 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);
}
}