Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
fdb91a06
Commit
fdb91a06
authored
Aug 01, 2008
by
Pierre d'Herbemont
Browse files
playlist: Handle vlc_InputItemErrorWhenReadingChanged events.
parent
8a5d95d0
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/playlist/item.c
View file @
fdb91a06
...
...
@@ -134,6 +134,8 @@ static void install_input_item_observer( playlist_item_t * p_item )
input_item_changed
,
p_item
);
vlc_event_attach
(
p_em
,
vlc_InputItemInfoChanged
,
input_item_changed
,
p_item
);
vlc_event_attach
(
p_em
,
vlc_InputItemErrorWhenReadingChanged
,
input_item_changed
,
p_item
);
}
static
void
uninstall_input_item_observer
(
playlist_item_t
*
p_item
)
...
...
@@ -149,6 +151,8 @@ static void uninstall_input_item_observer( playlist_item_t * p_item )
input_item_changed
,
p_item
);
vlc_event_detach
(
p_em
,
vlc_InputItemInfoChanged
,
input_item_changed
,
p_item
);
vlc_event_detach
(
p_em
,
vlc_InputItemErrorWhenReadingChanged
,
input_item_changed
,
p_item
);
}
/*****************************************************************************
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment