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
c1f72dfd
Commit
c1f72dfd
authored
Aug 03, 2008
by
Pierre d'Herbemont
Browse files
input: Remove a tautology in input_item_SetPreparsed.
parent
7aca2b19
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/input/input_internal.h
View file @
c1f72dfd
...
...
@@ -242,7 +242,7 @@ static inline void input_item_SetPreparsed( input_item_t *p_i, bool preparsed )
new_status
=
p_i
->
p_meta
->
i_status
|
ITEM_PREPARSED
;
else
new_status
=
p_i
->
p_meta
->
i_status
&
~
ITEM_PREPARSED
;
if
(
p_i
->
p_meta
->
i_status
!=
new_status
)
if
(
p_i
->
p_meta
->
i_status
!=
new_status
)
{
p_i
->
p_meta
->
i_status
=
new_status
;
send_event
=
true
;
...
...
@@ -250,7 +250,7 @@ static inline void input_item_SetPreparsed( input_item_t *p_i, bool preparsed )
vlc_mutex_unlock
(
&
p_i
->
lock
);
if
(
send_event
==
true
)
if
(
send_event
)
{
vlc_event_t
event
;
event
.
type
=
vlc_InputItemPreparsedChanged
;
...
...
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