12345678910111213141516171819202122232425262728293031323334 |
- using System;
- namespace Agora.Rtc
- {
-
-
-
-
-
- public abstract class IVideoEncodedFrameObserver
- {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- public virtual bool OnEncodedVideoFrameReceived(uint uid, IntPtr imageBufferPtr, UInt64 length, EncodedVideoFrameInfo videoEncodedFrameInfo)
- {
- return true;
- }
- }
- }
|