📄 ivideoframestep.cs
字号:
namespace dshow.Core
{
using System;
using System.Runtime.InteropServices;
// IVideoFrameStep interface
//
[ComImport,
Guid("E46A9787-2B71-444D-A4B5-1FAB7B708D6A"),
InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
public interface IVideoFrameStep
{
// Causes the filter graph to step forward by the
// specified number of frames
[PreserveSig]
int Step(
int dwFrames,
[In, MarshalAs(UnmanagedType.IUnknown)] object pStepObject);
// Determines the stepping capabilities of the specified filter
[PreserveSig]
int CanStep(
int bMultiple,
[In, MarshalAs(UnmanagedType.IUnknown)] object pStepObject);
// Cancels the previous step operation
[PreserveSig]
int CancelStep();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -