]> git.sesse.net Git - vlc/blobdiff - modules/access_filter/bandwidth.c
Add the missing modules in modules/LIST.
[vlc] / modules / access_filter / bandwidth.c
index 7553c0e9d7411940be48e419ca27ac7b15a7e894..ca0dd00af5df46924acbea1ba338ef10641af77a 100644 (file)
@@ -2,7 +2,7 @@
  * bandwidth.c
  *****************************************************************************
  * Copyright © 2007 Rémi Denis-Courmont
- * $Id: dump.c 19948 2007-04-26 19:53:53Z courmisch $
+ * $Id$
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <vlc/vlc.h>
 
 #include <assert.h>
@@ -46,7 +50,7 @@ vlc_module_begin ();
     set_callbacks (Open, Close);
 
     add_integer ("access-bandwidth", 65536, NULL, BANDWIDTH_TEXT,
-                 BANDWIDTH_LONGTEXT, VLC_FALSE);
+                 BANDWIDTH_LONGTEXT, false);
 vlc_module_end();
 
 static ssize_t Read (access_t *access, uint8_t *buffer, size_t len);