12345678910111213141516171819202122232425262728293031323334353637383940 |
-
- namespace NRKernal.Record
- {
- using System;
- using UnityEngine;
- public interface IEncoderBase
- {
-
- }
-
- public interface IEncoder : IEncoderBase
- {
-
-
- void Config(CameraParameters param);
-
-
-
- void Commit(RenderTexture rt, UInt64 timestamp);
-
- void Start();
-
- void Stop();
-
- void Release();
- }
- }
|