]> git.sesse.net Git - vlc/blobdiff - modules/misc/lua/libs/objects.c
Remove VLC_OBJECT_OSDMENU
[vlc] / modules / misc / lua / libs / objects.c
index 8621ffe36953da5fb006cef9ea09b880e4b8e0f5..cbf5c374067ab8eadf6c9103e50ff7584f29b4e1 100644 (file)
@@ -89,14 +89,12 @@ static int vlc_object_type_from_string( const char *psz_name )
         int i_type;
         const char *psz_name;
     } pp_objects[] =
-        { { VLC_OBJECT_INTF, "intf" },
-          { VLC_OBJECT_INPUT, "input" },
+        { { VLC_OBJECT_INPUT, "input" },
           { VLC_OBJECT_DECODER, "decoder" },
           { VLC_OBJECT_VOUT, "vout" },
           { VLC_OBJECT_AOUT, "aout" },
           { VLC_OBJECT_PACKETIZER, "packetizer" },
           { VLC_OBJECT_ENCODER, "encoder" },
-          { VLC_OBJECT_OSDMENU, "osdmenu" },
           { VLC_OBJECT_GENERIC, "generic" },
           { 0, "" } };
     int i;