Пример #1
0
 internal static extern StreamRecorderErrorCode SetNotifiedCallback(StreamRecorderHandle handle,
                                                                    NotifiedCallback callback, IntPtr userData = default(IntPtr));
Пример #2
0
 internal static extern int GetVideoEncoderBitrate(StreamRecorderHandle handle, out int bitrate);
Пример #3
0
 internal static extern int GetAudioChannel(StreamRecorderHandle handle, out int channel);
Пример #4
0
 internal static extern int GetRecordingLimit(StreamRecorderHandle handle, int type, out int format);
Пример #5
0
 internal static extern int GetAudioSampleRate(StreamRecorderHandle handle, out int samplerate);
Пример #6
0
 internal static extern int GetVideoFramerate(StreamRecorderHandle handle, out int framerate);
Пример #7
0
 internal static extern int GetVideoSourceFormat(StreamRecorderHandle handle, out int format);
Пример #8
0
 internal static extern int UnsetErrorCallback(StreamRecorderHandle handle);
Пример #9
0
 internal static extern StreamRecorderErrorCode SetBufferConsumedCallback(StreamRecorderHandle handle,
                                                                          BufferConsumedCallback callback, IntPtr userData = default(IntPtr));
Пример #10
0
 internal static extern StreamRecorderErrorCode SetLimitReachedCallback(StreamRecorderHandle handle,
                                                                        RecordingLimitReachedCallback callback, IntPtr userData = default(IntPtr));
Пример #11
0
 internal static extern int UnsetLimitReachedCallback(StreamRecorderHandle handle);
Пример #12
0
 internal static extern int UnsetStatusChangedCallback(StreamRecorderHandle handle);
Пример #13
0
 internal static extern StreamRecorderErrorCode SetStatusChangedCallback(StreamRecorderHandle handle,
                                                                         RecordingStatusCallback callback, IntPtr userData = default(IntPtr));
Пример #14
0
 internal static extern int UnsetNotifiedCallback(StreamRecorderHandle handle);
Пример #15
0
 internal static extern StreamRecorderErrorCode GetVideoResolution(StreamRecorderHandle handle,
                                                                   out int width, out int height);
Пример #16
0
 internal static extern int UnsetBufferConsumedCallback(StreamRecorderHandle handle);
Пример #17
0
 internal static extern StreamRecorderErrorCode SetVideoFrameRate(StreamRecorderHandle handle, int framerate);
Пример #18
0
 internal static extern int GetFileName(StreamRecorderHandle handle, out IntPtr path);
Пример #19
0
 internal static extern StreamRecorderErrorCode SetVideoSourceFormat(StreamRecorderHandle handle,
                                                                     StreamRecorderVideoFormat format);
Пример #20
0
 internal static extern StreamRecorderErrorCode SetFileFormat(StreamRecorderHandle handle,
                                                              StreamRecorderFileFormat format);
Пример #21
0
 internal static extern StreamRecorderErrorCode SetRecordingLimit(StreamRecorderHandle handle,
                                                                  RecordingLimitType type, int limit);
Пример #22
0
 internal static extern int GetFileFormat(StreamRecorderHandle handle, out int format);
Пример #23
0
 internal static extern StreamRecorderErrorCode SetAudioSampleRate(StreamRecorderHandle handle, int samplerate);
Пример #24
0
 internal static extern StreamRecorderErrorCode SetAudioEncoder(StreamRecorderHandle handle,
                                                                StreamRecorderAudioCodec codec);
Пример #25
0
 internal static extern StreamRecorderErrorCode SetVideoEncoderBitRate(StreamRecorderHandle handle, int bitrate);
Пример #26
0
 internal static extern StreamRecorderErrorCode SetVideoEncoder(StreamRecorderHandle handle,
                                                                StreamRecorderVideoCodec codec);
Пример #27
0
 internal static extern StreamRecorderErrorCode SetAudioChannel(StreamRecorderHandle handle, int channel);
Пример #28
0
 internal static extern int GetVideoEncoder(StreamRecorderHandle handle, out int codec);
Пример #29
0
 internal static extern StreamRecorderErrorCode SetFileName(StreamRecorderHandle handle, string path);
Пример #30
0
 internal static extern StreamRecorderErrorCode VideoResolution(StreamRecorderHandle handle,
                                                                VideoResolutionCallback callback, IntPtr userData = default(IntPtr));