123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- using System;
- namespace Agora.Rtc
- {
-
-
-
-
-
- public abstract class IMediaPlayerCustomDataProvider
- {
-
-
-
-
-
-
-
-
-
-
-
-
-
- public virtual Int64 OnSeek(Int64 offset, int whence)
- {
- return 0;
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
- public virtual int OnReadData(IntPtr bufferPtr, int bufferSize)
- {
- return 0;
- }
- }
- }
|