]> git.sesse.net Git - vlc/blobdiff - modules/misc/lua/libs/objects.c
Remove VLC_OBJECT_OPENGL
[vlc] / modules / misc / lua / libs / objects.c
index f5c2f2f3e48bfa2f1ccf886b08add930575be3fd..593bd1fe1941d8f77d3c9edbf8e8943d27575c6f 100644 (file)
@@ -90,7 +90,6 @@ static int vlc_object_type_from_string( const char *psz_name )
         const char *psz_name;
     } pp_objects[] =
         { { VLC_OBJECT_LIBVLC, "libvlc" },
-          { VLC_OBJECT_MODULE, "module" },
           { VLC_OBJECT_INTF, "intf" },
           { VLC_OBJECT_INPUT, "input" },
           { VLC_OBJECT_DECODER, "decoder" },
@@ -98,16 +97,7 @@ static int vlc_object_type_from_string( const char *psz_name )
           { VLC_OBJECT_AOUT, "aout" },
           { VLC_OBJECT_PACKETIZER, "packetizer" },
           { VLC_OBJECT_ENCODER, "encoder" },
-          { VLC_OBJECT_DIALOGS, "dialogs" },
-          { VLC_OBJECT_ANNOUNCE, "announce" },
-          { VLC_OBJECT_DEMUX, "demux" },
-          { VLC_OBJECT_ACCESS, "access" },
-          { VLC_OBJECT_STREAM, "stream" },
-          { VLC_OBJECT_OPENGL, "opengl" },
-          { VLC_OBJECT_FILTER, "filter" },
           { VLC_OBJECT_OSDMENU, "osdmenu" },
-          { VLC_OBJECT_HTTPD_HOST, "httpd_host" },
-          { VLC_OBJECT_INTERACTION, "interaction" },
           { VLC_OBJECT_GENERIC, "generic" },
           { 0, "" } };
     int i;
@@ -214,6 +204,7 @@ static int vlclua_get_playlist( lua_State *L )
         vlclua_push_vlc_object( L, p_playlist, vlclua_gc_release );
     }
     else lua_pushnil( L );
+    //vlclua_release_playlist_internal( p_playlist );
     return 1;
 }