Пример #1
0
 internal static extern RecorderErrorCode GetFileName(RecorderHandle handle, out IntPtr path);
Пример #2
0
 internal static extern RecorderErrorCode SetMuxedStreamCallback(RecorderHandle handle,
                                                                 MuxedStreamCallback callback, IntPtr userData);
Пример #3
0
 internal static extern RecorderErrorCode SetInterruptedCallback(RecorderHandle handle,
                                                                 InterruptedCallback callback, IntPtr userData);
Пример #4
0
 internal static extern RecorderErrorCode SetRecordingProgressCallback(RecorderHandle handle,
                                                                       RecordingProgressCallback callback, IntPtr userData);
Пример #5
0
 internal static extern RecorderErrorCode SetLimitReachedCallback(RecorderHandle handle,
                                                                  RecordingLimitReachedCallback callback, IntPtr userData);
 public static extern RecorderErrorCode GetVideoResolutions(RecorderHandle handle,
                                                            VideoResolutionCallback callback, IntPtr userData = default(IntPtr));
Пример #7
0
 internal static extern RecorderErrorCode SetStateChangedCallback(RecorderHandle handle,
                                                                  StatechangedCallback callback, IntPtr userData);
Пример #8
0
 internal static extern RecorderErrorCode Create(out RecorderHandle handle);
Пример #9
0
 internal static extern RecorderErrorCode CreateVideo(IntPtr cameraHandle, out RecorderHandle handle);
Пример #10
0
 internal static extern bool GetMute(RecorderHandle handle);
Пример #11
0
 internal static extern RecorderErrorCode SetMute(RecorderHandle handle, bool enable);
Пример #12
0
 internal static extern RecorderErrorCode SetTimeLimit(RecorderHandle handle, int second);
Пример #13
0
 internal static extern RecorderErrorCode SetSizeLimit(RecorderHandle handle, int kbyte);
Пример #14
0
 internal static extern RecorderErrorCode SetFileName(RecorderHandle handle, string path);
 internal static extern RecorderErrorCode GetFileFormats(RecorderHandle handle,
                                                         FileFormatCallback callback, IntPtr userData = default(IntPtr));
Пример #16
0
 internal static extern RecorderErrorCode Unprepare(RecorderHandle handle);
 internal static extern RecorderErrorCode GetVideoEncoders(RecorderHandle handle,
                                                           VideoEncoderCallback callback, IntPtr userData = default(IntPtr));
Пример #18
0
 internal static extern RecorderErrorCode Start(RecorderHandle handle);
Пример #19
0
 internal static extern RecorderErrorCode SetInterruptStartedCallback(RecorderHandle handle,
                                                                      InterruptStartedCallback callback, IntPtr userData = default(IntPtr));
Пример #20
0
 internal static extern RecorderErrorCode Pause(RecorderHandle handle);
Пример #21
0
 internal static extern RecorderErrorCode UnsetStateChangedCallback(RecorderHandle handle);
Пример #22
0
 internal static extern RecorderErrorCode Commit(RecorderHandle handle);
Пример #23
0
 internal static extern RecorderErrorCode UnsetRecordingProgressCallback(RecorderHandle handle);
Пример #24
0
 internal static extern RecorderErrorCode Cancel(RecorderHandle handle);
Пример #25
0
 internal static extern RecorderErrorCode UnsetLimitReachedCallback(RecorderHandle handle);
Пример #26
0
 internal static extern RecorderErrorCode GetState(RecorderHandle handle, out RecorderState state);
Пример #27
0
 internal static extern RecorderErrorCode UnsetMuxedStreamCallback(RecorderHandle handle);
Пример #28
0
 internal static extern RecorderErrorCode SetAudioStreamPolicy(RecorderHandle handle, AudioStreamPolicyHandle streamInfoHandle);
Пример #29
0
 internal static extern RecorderErrorCode UnsetInterruptedCallback(RecorderHandle handle);
Пример #30
0
 internal static extern RecorderErrorCode SetFileFormat(RecorderHandle handle, RecorderFileFormat format);