]> git.sesse.net Git - vlc/blobdiff - modules/access/vcd/vcd.c
Improvements to preferences
[vlc] / modules / access / vcd / vcd.c
index 68e997de5dd014cfb3672d792178f5915ec71c50..c6bdbab11e556cc9489564e468ce90f43e9d6e0d 100644 (file)
@@ -46,6 +46,8 @@ vlc_module_begin();
     set_description( _("VCD input") );
     set_capability( "access2", 60 );
     set_callbacks( Open, Close );
+    set_category( CAT_INPUT );
+    set_subcategory( SUBCAT_INPUT_ACCESS );
 
     add_usage_hint( N_("[vcd:][device][@[title][,[chapter]]]") );
     add_integer( "vcd-caching", DEFAULT_PTS_DELAY / 1000, NULL, CACHING_TEXT,
@@ -306,8 +308,11 @@ static int Control( access_t *p_access, int i_query, va_list args )
             return VLC_SUCCESS;
         }
 
+        case ACCESS_SET_PRIVATE_ID_STATE:
+            return VLC_EGENERIC;
+
         default:
-            msg_Err( p_access, "unimplemented query in control" );
+            msg_Warn( p_access, "unimplemented query in control" );
             return VLC_EGENERIC;
 
     }