]> git.sesse.net Git - vlc/blobdiff - src/misc/objects.c
Interaction are controlled by a dedicated thread
[vlc] / src / misc / objects.c
index 3c15a33d30b8daddd389814ae5d3bbcf0f83e762..7cbd1f8348877e0bd22172dc87761b237322372a 100644 (file)
@@ -336,6 +336,10 @@ void * __vlc_object_create( vlc_object_t *p_this, int i_type )
             i_size = sizeof( osd_menu_t );
             psz_type = "osd menu";
             break;
+        case VLC_OBJECT_INTERACTION:
+            i_size = sizeof( interaction_t );
+            psz_type = "interaction";
+            break;
         default:
             i_size = i_type > (int)sizeof(vlc_object_t)
                          ? i_type : (int)sizeof(vlc_object_t);