MediaPlayer.CopyFrameToVideoSurface 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
CopyFrameToVideoSurface(IDirect3DSurface) |
将当前视频帧从 MediaPlayer 复制到提供的 IDirect3DSurface。 |
CopyFrameToVideoSurface(IDirect3DSurface, Rect) |
将当前视频帧从 MediaPlayer 复制到提供的 IDirect3DSurface 中的指定目标矩形。 |
CopyFrameToVideoSurface(IDirect3DSurface)
将当前视频帧从 MediaPlayer 复制到提供的 IDirect3DSurface。
public:
virtual void CopyFrameToVideoSurface(IDirect3DSurface ^ destination) = CopyFrameToVideoSurface;
/// [Windows.Foundation.Metadata.Overload("CopyFrameToVideoSurface")]
void CopyFrameToVideoSurface(IDirect3DSurface const& destination);
[Windows.Foundation.Metadata.Overload("CopyFrameToVideoSurface")]
public void CopyFrameToVideoSurface(IDirect3DSurface destination);
function copyFrameToVideoSurface(destination)
Public Sub CopyFrameToVideoSurface (destination As IDirect3DSurface)
参数
- destination
- IDirect3DSurface
将视频帧复制到的 IDirect3DSurface 。
- 属性
Windows 要求
设备系列 |
Windows 10 Creators Update (在 10.0.15063.0 中引入)
|
API contract |
Windows.Foundation.UniversalApiContract (在 v4.0 中引入)
|
注解
有关使用 CopyFrameToVideoSurface 将 GPU 效果应用于视频帧的信息,请参阅使用 MediaPlayer 播放音频和视频的在帧服务器模式下使用 MediaPlayer 部分。
另请参阅
适用于
CopyFrameToVideoSurface(IDirect3DSurface, Rect)
将当前视频帧从 MediaPlayer 复制到提供的 IDirect3DSurface 中的指定目标矩形。
public:
virtual void CopyFrameToVideoSurface(IDirect3DSurface ^ destination, Rect targetRectangle) = CopyFrameToVideoSurface;
/// [Windows.Foundation.Metadata.Overload("CopyFrameToVideoSurfaceWithTargetRectangle")]
void CopyFrameToVideoSurface(IDirect3DSurface const& destination, Rect const& targetRectangle);
[Windows.Foundation.Metadata.Overload("CopyFrameToVideoSurfaceWithTargetRectangle")]
public void CopyFrameToVideoSurface(IDirect3DSurface destination, Rect targetRectangle);
function copyFrameToVideoSurface(destination, targetRectangle)
Public Sub CopyFrameToVideoSurface (destination As IDirect3DSurface, targetRectangle As Rect)
参数
- destination
- IDirect3DSurface
将视频帧复制到的 IDirect3DSurface 。
- targetRectangle
- Rect
将视频帧复制到的 IDirect3DSurface 中的目标矩形。
- 属性
Windows 要求
设备系列 |
Windows 10 Creators Update (在 10.0.15063.0 中引入)
|
API contract |
Windows.Foundation.UniversalApiContract (在 v4.0 中引入)
|
注解
有关使用 CopyFrameToVideoSurface 将 GPU 效果应用于视频帧的信息,请参阅使用 MediaPlayer 播放音频和视频的在帧服务器模式下使用 MediaPlayer 部分。