]> git.sesse.net Git - vlc/blobdiff - modules/misc/lua/objects.c
Remove SPU type
[vlc] / modules / misc / lua / objects.c
index 2e4dc40be46a13e6997870a03e2a8f000cd7b1c4..bf53676ff4999a37e09987e7618d3f4c3b664194 100644 (file)
 #   define  _GNU_SOURCE
 #endif
 
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <vlc/vlc.h>
 
 #include <lua.h>        /* Low level lua C API */
@@ -108,7 +112,6 @@ static int vlc_object_type_from_string( const char *psz_name )
           { VLC_OBJECT_MODULE, "module" },
           { VLC_OBJECT_INTF, "intf" },
           { VLC_OBJECT_PLAYLIST, "playlist" },
-          { VLC_OBJECT_ITEM, "item" },
           { VLC_OBJECT_INPUT, "input" },
           { VLC_OBJECT_DECODER, "decoder" },
           { VLC_OBJECT_VOUT, "vout" },
@@ -125,8 +128,6 @@ static int vlc_object_type_from_string( const char *psz_name )
           { VLC_OBJECT_STREAM, "stream" },
           { VLC_OBJECT_OPENGL, "opengl" },
           { VLC_OBJECT_FILTER, "filter" },
-          { VLC_OBJECT_VOD, "vod" },
-          { VLC_OBJECT_SPU, "spu" },
           { VLC_OBJECT_SD, "sd" },
           { VLC_OBJECT_XML, "xml" },
           { VLC_OBJECT_OSDMENU, "osdmenu" },