]> git.sesse.net Git - vlc/commitdiff
Enabled aa in "vout display" wrapper.
authorLaurent Aimar <fenrir@videolan.org>
Mon, 3 Aug 2009 18:28:44 +0000 (20:28 +0200)
committerLaurent Aimar <fenrir@videolan.org>
Tue, 4 Aug 2009 19:03:23 +0000 (21:03 +0200)
modules/video_output/wrapper.c

index 5a51ba52184e6f60e1e884e35e1dbcb213dfd436..b2c41974f91d52a1f18aaf5f5f8ac3c5a9a790c2 100644 (file)
@@ -45,7 +45,7 @@ static void Close(vlc_object_t *);
 #define DECLARE_OPEN(name) \
         static int Open##name(vlc_object_t *object) { return Open(object, #name); }
 
-DECLARE_OPEN(none);
+DECLARE_OPEN(aalib);
 
 #undef DECLARE_OPEN
 
@@ -60,7 +60,7 @@ vlc_module_begin()
     set_category( CAT_VIDEO )
     set_subcategory( SUBCAT_VIDEO_VOUT )
 
-    DECLARE_MODULE(none, 0)
+    DECLARE_MODULE(aalib, 10)
 
 vlc_module_end()