Commit 3d3dfde1 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Remove VLC_OBJECT_INPUT type

parent 38f24cc8
......@@ -32,7 +32,6 @@
*/
/* Object types */
#define VLC_OBJECT_INPUT (-7)
/* Please add new object types below -34 */
/* Please do not add new object types anyway */
#define VLC_OBJECT_GENERIC (-666)
......
......@@ -323,7 +323,7 @@ static input_thread_t *Create( vlc_object_t *p_parent, input_item_t *p_item,
/* Allocate descriptor */
p_input = vlc_custom_create( p_parent, sizeof( *p_input ),
VLC_OBJECT_INPUT, input_name );
VLC_OBJECT_GENERIC, input_name );
if( p_input == NULL )
return NULL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment