コード例 #1
0
ファイル: fcAPI.cs プロジェクト: tasogare66/FrameCapturer
 public static extern int fcMP4WriteMemory(fcMP4Context ctx, IntPtr dst, int begin_frame, int end_frame);
コード例 #2
0
 [DllImport("fccore")] public static extern Bool             fcMP4AddAudioFrame(fcMP4Context ctx, float[] samples, int num_samples, double timestamp = -1.0);
コード例 #3
0
ファイル: fcAPI.cs プロジェクト: tasogare66/FrameCapturer
 public static extern int fcMP4GetExpectedDataSize(fcMP4Context ctx, int begin_frame, int end_frame);
コード例 #4
0
ファイル: fcAPI.cs プロジェクト: tasogare66/FrameCapturer
 public static extern void fcMP4GetFrameData(fcMP4Context ctx, IntPtr tex, int frame);
コード例 #5
0
ファイル: fcAPI.cs プロジェクト: ubisoft/vrtist
 [DllImport("fccore")] public static extern Bool fcMP4AddAudioSamples(fcMP4Context ctx, float[] samples, int num_samples);
コード例 #6
0
ファイル: fcAPI.cs プロジェクト: tasogare66/FrameCapturer
 public static extern void fcMP4DestroyContext(fcMP4Context ctx);
コード例 #7
0
 [DllImport("FrameCapturer")] public static extern bool         fcMP4AddVideoFrameTexture(fcMP4Context ctx, IntPtr tex);
コード例 #8
0
 public static int fcMP4AddVideoFrameTexture(fcMP4Context ctx, RenderTexture tex, double time, int id)
 {
     return(fcMP4AddVideoFrameTextureDeferred(ctx, tex.GetNativeTexturePtr(), fcGetPixelFormat(tex.format), time, id));
 }
コード例 #9
0
ファイル: fcAPI.cs プロジェクト: ClintChil/FrameCapturer
 private static extern int fcMP4AddVideoFrameTextureDeferred(fcMP4Context ctx, IntPtr tex, fcPixelFormat fmt, double time, int id);
コード例 #10
0
ファイル: fcAPI.cs プロジェクト: ClintChil/FrameCapturer
 private static extern IntPtr fcMP4GetVideoEncoderInfo(fcMP4Context ctx);
コード例 #11
0
ファイル: fcAPI.cs プロジェクト: ClintChil/FrameCapturer
 public static string fcMP4GetVideoEncoderInfoS(fcMP4Context ctx)
 {
     return Marshal.PtrToStringAnsi(fcMP4GetVideoEncoderInfo(ctx));
 }
コード例 #12
0
ファイル: fcAPI.cs プロジェクト: ClintChil/FrameCapturer
 public static int fcMP4AddVideoFrameTexture(fcMP4Context ctx, RenderTexture tex, double time, int id)
 {
     return fcMP4AddVideoFrameTextureDeferred(ctx, tex.GetNativeTexturePtr(), fcGetPixelFormat(tex.format), time, id);
 }
コード例 #13
0
ファイル: fcAPI.cs プロジェクト: ClintChil/FrameCapturer
 public static extern void fcMP4AddOutputStream(fcMP4Context ctx, fcStream s);
コード例 #14
0
 [DllImport("FrameCapturer")] public static extern void             fcMP4AddOutputStream(fcMP4Context ctx, fcStream s);
コード例 #15
0
 [DllImport("FrameCapturer")] public static extern bool         fcMP4AddVideoFramePixels(fcMP4Context ctx, IntPtr pixels, fcEColorSpace cs = fcEColorSpace.RGBA);
コード例 #16
0
 [DllImport("FrameCapturer")] private static extern int             fcMP4AddVideoFrameTextureDeferred(fcMP4Context ctx, IntPtr tex, fcPixelFormat fmt, double time, int id);
コード例 #17
0
 [DllImport("FrameCapturer")] public static extern bool         fcMP4AddAudioSamples(fcMP4Context ctx, float[] samples, int num_samples);
コード例 #18
0
ファイル: fcAPI.cs プロジェクト: ubisoft/vrtist
 [DllImport("fccore")] private static extern IntPtr fcMP4GetVideoEncoderInfo(fcMP4Context ctx);
コード例 #19
0
 [DllImport("FrameCapturer")] public static extern void         fcMP4ClearFrame(fcMP4Context ctx);
コード例 #20
0
ファイル: fcAPI.cs プロジェクト: ClintChil/FrameCapturer
 public static extern Bool fcMP4AddAudioFrame(fcMP4Context ctx, float[] samples, int num_samples, double time = -1.0);
コード例 #21
0
 [DllImport("FrameCapturer")] public static extern bool         fcMP4WriteFile(fcMP4Context ctx, string path, int begin_frame, int end_frame);
コード例 #22
0
ファイル: fcAPI.cs プロジェクト: tasogare66/FrameCapturer
 public static extern void fcMP4EraseFrame(fcMP4Context ctx, int begin_frame, int end_frame);
コード例 #23
0
 [DllImport("FrameCapturer")] public static extern int          fcMP4WriteMemory(fcMP4Context ctx, IntPtr dst, int begin_frame, int end_frame);
コード例 #24
0
ファイル: fcAPI.cs プロジェクト: tasogare66/FrameCapturer
 public static extern int fcMP4GetFrameCount(fcMP4Context ctx);
コード例 #25
0
 [DllImport("FrameCapturer")] public static extern int          fcMP4GetFrameCount(fcMP4Context ctx);
コード例 #26
0
ファイル: fcAPI.cs プロジェクト: tasogare66/FrameCapturer
 public static extern bool fcMP4WriteFile(fcMP4Context ctx, string path, int begin_frame, int end_frame);
コード例 #27
0
 [DllImport("FrameCapturer")] public static extern void         fcMP4GetFrameData(fcMP4Context ctx, IntPtr tex, int frame);
コード例 #28
0
 [DllImport("fccore")] private static extern void            fcMP4DestroyContext(fcMP4Context ctx);
コード例 #29
0
 [DllImport("FrameCapturer")] public static extern int          fcMP4GetExpectedDataSize(fcMP4Context ctx, int begin_frame, int end_frame);
コード例 #30
0
 [DllImport("FrameCapturer")] public static extern void             fcMP4DestroyContext(fcMP4Context ctx);
コード例 #31
0
 [DllImport("FrameCapturer")] public static extern void         fcMP4EraseFrame(fcMP4Context ctx, int begin_frame, int end_frame);
コード例 #32
0
 [DllImport("FrameCapturer")] private static extern IntPtr          fcMP4GetVideoEncoderInfo(fcMP4Context ctx);
コード例 #33
0
ファイル: fcAPI.cs プロジェクト: tasogare66/FrameCapturer
 public static extern bool fcMP4AddAudioSamples(fcMP4Context ctx, float[] samples, int num_samples);
コード例 #34
0
 [DllImport("FrameCapturer")] public static extern Bool             fcMP4AddAudioFrame(fcMP4Context ctx, float[] samples, int num_samples, double time = -1.0);
コード例 #35
0
ファイル: fcAPI.cs プロジェクト: tasogare66/FrameCapturer
 public static extern bool fcMP4AddVideoFramePixels(fcMP4Context ctx, IntPtr pixels, fcEColorSpace cs=fcEColorSpace.RGBA);
コード例 #36
0
ファイル: fcAPI.cs プロジェクト: ubisoft/vrtist
 [DllImport("fccore")] public static extern void fcMP4AddOutputStream(fcMP4Context ctx, fcStream s);
コード例 #37
0
ファイル: fcAPI.cs プロジェクト: tasogare66/FrameCapturer
 public static extern bool fcMP4AddVideoFrameTexture(fcMP4Context ctx, IntPtr tex);
コード例 #38
0
ファイル: fcAPI.cs プロジェクト: ubisoft/vrtist
 [DllImport("fccore")] public static extern Bool fcMP4AddVideoFramePixels(fcMP4Context ctx, byte[] pixels, fcPixelFormat fmt, double timestamp = -1.0);
コード例 #39
0
ファイル: fcAPI.cs プロジェクト: tasogare66/FrameCapturer
 public static extern void fcMP4ClearFrame(fcMP4Context ctx);
コード例 #40
0
ファイル: fcAPI.cs プロジェクト: ubisoft/vrtist
 public static string fcMP4GetVideoEncoderInfoS(fcMP4Context ctx)
 {
     return(Marshal.PtrToStringAnsi(fcMP4GetVideoEncoderInfo(ctx)));
 }
コード例 #41
0
 [DllImport("fccore")] private static extern fcDeferredCall fcMP4AddVideoFrameTextureDeferred(fcMP4Context ctx, IntPtr tex, fcPixelFormat fmt, double time, fcDeferredCall id);