Module uk.co.caprica.vlcj.natives
Interface libvlc_audio_resume_cb
- All Superinterfaces:
com.sun.jna.Callback
public interface libvlc_audio_resume_cb
extends com.sun.jna.Callback
-
Nested Class Summary
Nested classes/interfaces inherited from interface com.sun.jna.Callback
com.sun.jna.Callback.UncaughtExceptionHandler -
Field Summary
Fields inherited from interface com.sun.jna.Callback
FORBIDDEN_NAMES, METHOD_NAME -
Method Summary
Modifier and TypeMethodDescriptionvoidresume(com.sun.jna.Pointer data, long pts) Callback prototype for audio resumption (i.e.
-
Method Details
-
resume
void resume(com.sun.jna.Pointer data, long pts) Callback prototype for audio resumption (i.e. restart from pause).Note: The resume callback is never called if the audio is not paused.
- Parameters:
data- data pointer as passed to libvlc_audio_set_callbacks()pts- time stamp of the resumption request (should be elapsed already)
-