]> git.sesse.net Git - vlc/blobdiff - modules/access/v4l.c
new growl plugin: local only, supports album art (you'll need the Growl Framework)
[vlc] / modules / access / v4l.c
index f9e534cf70c3391c966d9d1f152b407db1a25969..2a600b94376a3f58678aac5e7b52bd635c39755c 100644 (file)
  * Preamble
  *****************************************************************************/
 
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <vlc/vlc.h>
 #include <vlc_input.h>
 #include <vlc_demux.h>
@@ -581,6 +585,7 @@ 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:
         case DEMUX_SET_PAUSE_STATE:
         case DEMUX_CAN_CONTROL_PACE:
             pb = (vlc_bool_t*)va_arg( args, vlc_bool_t * );
@@ -1359,7 +1364,7 @@ static int OpenAudioDev( demux_t *p_demux, char *psz_device )
         goto adev_fail;
     }
 
-    msg_Dbg( p_demux, "openened adev=`%s' %s %dHz",
+    msg_Dbg( p_demux, "opened adev=`%s' %s %dHz",
              psz_device, p_sys->b_stereo ? "stereo" : "mono",
              p_sys->i_sample_rate );