Interface libvlc_media_seek_cb

  • All Superinterfaces:
    com.sun.jna.Callback

    public interface libvlc_media_seek_cb
    extends com.sun.jna.Callback
    Native seek media 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

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      int seek​(com.sun.jna.Pointer opaque, long offset)
      Callback prototype to seek a custom bitstream input media.
    • Method Detail

      • seek

        int seek​(com.sun.jna.Pointer opaque,
                 long offset)
        Callback prototype to seek a custom bitstream input media.
        Parameters:
        opaque - private pointer as set by the @ref libvlc_media_open_cb callback
        offset - absolute byte offset to seek to
        Returns:
        0 on success, -1 on error.