]> git.sesse.net Git - vlc/blobdiff - modules/misc/lua/objects.c
We know where VLM is, no need to find it.
[vlc] / modules / misc / lua / objects.c
index f75911077cd73bd82afec5ad285693a3166bcfb2..badf23c6be4f5041dd080315af93b0f25f155b28 100644 (file)
@@ -107,8 +107,7 @@ static int vlc_object_type_from_string( const char *psz_name )
         int i_type;
         const char *psz_name;
     } pp_objects[] =
-        { { VLC_OBJECT_GLOBAL, "global" },
-          { VLC_OBJECT_LIBVLC, "libvlc" },
+        { { VLC_OBJECT_LIBVLC, "libvlc" },
           { VLC_OBJECT_MODULE, "module" },
           { VLC_OBJECT_INTF, "intf" },
           { VLC_OBJECT_PLAYLIST, "playlist" },
@@ -117,11 +116,9 @@ static int vlc_object_type_from_string( const char *psz_name )
           { VLC_OBJECT_VOUT, "vout" },
           { VLC_OBJECT_AOUT, "aout" },
           { VLC_OBJECT_SOUT, "sout" },
-          { VLC_OBJECT_HTTPD, "httpd" },
           { VLC_OBJECT_PACKETIZER, "packetizer" },
           { VLC_OBJECT_ENCODER, "encoder" },
           { VLC_OBJECT_DIALOGS, "dialogs" },
-          { VLC_OBJECT_VLM, "vlm" },
           { VLC_OBJECT_ANNOUNCE, "announce" },
           { VLC_OBJECT_DEMUX, "demux" },
           { VLC_OBJECT_ACCESS, "access" },
@@ -130,7 +127,6 @@ static int vlc_object_type_from_string( const char *psz_name )
           { VLC_OBJECT_FILTER, "filter" },
           { VLC_OBJECT_OSDMENU, "osdmenu" },
           { VLC_OBJECT_HTTPD_HOST, "httpd_host" },
-          { VLC_OBJECT_META_ENGINE, "meta_engine" },
           { VLC_OBJECT_GENERIC, "generic" },
           { 0, "" } };
     int i;