Browse Source

input: item: remove b_preparse_interact

pull/170/head
Thomas Guillem 2 years ago
committed by Steve Lhomme
parent
commit
91bff6e2b2
  1. 3
      include/vlc_input_item.h
  2. 2
      src/input/input.c

3
include/vlc_input_item.h

@ -130,9 +130,6 @@ struct input_item_t
bool b_net; /**< Net: always true for TYPE_STREAM, it
depends for others types */
bool b_preparse_interact; /**< Force interaction with the user when
preparsing.*/
void *libvlc_owner; /**< LibVLC private data, can only be set
before events are registered. */
};

2
src/input/input.c

@ -293,7 +293,7 @@ input_thread_t * input_Create( vlc_object_t *p_parent, input_item_t *p_item,
/* Make sure the interaction option is honored */
if( !var_InheritBool( p_input, "interact" ) )
p_input->obj.no_interact = true;
else if( p_item->b_preparse_interact || cfg->interact )
else if( cfg->interact )
{
/* If true, this item was asked explicitly to interact with the user
* (via libvlc_MetadataRequest). Sub items created from this input won't

Loading…
Cancel
Save