点击或拖拽改变大小

MediaPlayerLibVLCVideoUnlockCb 委托

Callback prototype to unlock a picture buffer.

命名空间:  LibVLCSharp.Shared
程序集:  CPF.Vlc (在 CPF.Vlc.dll 中) 版本:0.8.8.5
语法
C#
public delegate void LibVLCVideoUnlockCb(
	IntPtr opaque,
	IntPtr picture,
	IntPtr planes
)

参数

opaque
类型:SystemIntPtr
private pointer as passed to libvlc_video_set_callbacks() [IN]
picture
类型:SystemIntPtr
private pointer returned from the
planes
类型:SystemIntPtr
pixel planes as defined by the
备注

When the video frame decoding is complete, the unlock callback is invoked.

This callback might not be needed at all. It is only an indication that the

application can now read the pixel values if it needs to.

A picture buffer is unlocked after the picture is decoded,

but before the picture is displayed.

callback [IN]

callback (this parameter is only for convenience) [IN]

参见