]> git.sesse.net Git - vlc/blobdiff - modules/access/jack.c
input/input.c: Define DEMUX_CAN_SEEK and correctly set "seekable" accordingly. (This...
[vlc] / modules / access / jack.c
index cf31d5f101eed927a6989e1b829ff2a3ae35c2e5..47eeae376b3e1db316e2e15694d0160591988821 100644 (file)
@@ -343,6 +343,11 @@ static int Control( demux_t *p_demux, int i_query, va_list args )
     {
     /* Special for access_demux */
     case DEMUX_CAN_PAUSE:
+    case DEMUX_CAN_SEEK:
+        pb = (vlc_bool_t *)va_arg( args, vlc_bool_t * );
+        *pb = VLC_TRUE;
+        return VLC_SUCCESS;
+
     case DEMUX_SET_PAUSE_STATE:
         return VLC_SUCCESS;
     case DEMUX_CAN_CONTROL_PACE: