]> git.sesse.net Git - vlc/blobdiff - src/misc/objects.c
Remove VLC_OBJECT_(ACCESS|DEMUX|STREAM) types
[vlc] / src / misc / objects.c
index 69a0e82402549b89e6432d552e56f2dbefc9b1c9..9cea38cd136b971fa2d58247f45d371c8afbbe95 100644 (file)
@@ -238,14 +238,6 @@ void * __vlc_object_create( vlc_object_t *p_this, int i_type )
             i_size = sizeof(intf_thread_t);
             psz_type = "dialogs";
             break;
-        case VLC_OBJECT_DEMUX:
-            i_size = sizeof(demux_t);
-            psz_type = "demux";
-            break;
-        case VLC_OBJECT_ACCESS:
-            i_size = sizeof(access_t);
-            psz_type = "access";
-            break;
         case VLC_OBJECT_DECODER:
             i_size = sizeof(decoder_t);
             psz_type = "decoder";