Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
a3cd642b
Commit
a3cd642b
authored
Apr 04, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove write-only variable
parent
b0b00671
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
6 deletions
+1
-6
modules/access/dvdnav.c
modules/access/dvdnav.c
+1
-6
No files found.
modules/access/dvdnav.c
View file @
a3cd642b
...
@@ -1307,8 +1307,6 @@ static void* EventThread( vlc_object_t *p_this )
...
@@ -1307,8 +1307,6 @@ static void* EventThread( vlc_object_t *p_this )
/* main loop */
/* main loop */
while
(
vlc_object_alive
(
p_ev
)
)
while
(
vlc_object_alive
(
p_ev
)
)
{
{
bool
b_activated
=
false
;
/* KEY part */
/* KEY part */
if
(
p_ev
->
i_key_action
!=
0
)
if
(
p_ev
->
i_key_action
!=
0
)
{
{
...
@@ -1330,7 +1328,6 @@ static void* EventThread( vlc_object_t *p_this )
...
@@ -1330,7 +1328,6 @@ static void* EventThread( vlc_object_t *p_this )
dvdnav_lower_button_select
(
p_sys
->
dvdnav
,
pci
);
dvdnav_lower_button_select
(
p_sys
->
dvdnav
,
pci
);
break
;
break
;
case
ACTIONID_NAV_ACTIVATE
:
case
ACTIONID_NAV_ACTIVATE
:
b_activated
=
true
;
ButtonUpdate
(
p_ev
->
p_demux
,
true
);
ButtonUpdate
(
p_ev
->
p_demux
,
true
);
dvdnav_button_activate
(
p_sys
->
dvdnav
,
pci
);
dvdnav_button_activate
(
p_sys
->
dvdnav
,
pci
);
break
;
break
;
...
@@ -1358,7 +1355,6 @@ static void* EventThread( vlc_object_t *p_this )
...
@@ -1358,7 +1355,6 @@ static void* EventThread( vlc_object_t *p_this )
}
}
if
(
p_ev
->
b_clicked
)
if
(
p_ev
->
b_clicked
)
{
{
b_activated
=
true
;
ButtonUpdate
(
p_ev
->
p_demux
,
true
);
ButtonUpdate
(
p_ev
->
p_demux
,
true
);
dvdnav_mouse_activate
(
p_sys
->
dvdnav
,
pci
,
valx
.
i_int
,
dvdnav_mouse_activate
(
p_sys
->
dvdnav
,
pci
,
valx
.
i_int
,
valy
.
i_int
);
valy
.
i_int
);
...
@@ -1390,8 +1386,7 @@ static void* EventThread( vlc_object_t *p_this )
...
@@ -1390,8 +1386,7 @@ static void* EventThread( vlc_object_t *p_this )
vlc_mutex_lock
(
&
p_ev
->
lock
);
vlc_mutex_lock
(
&
p_ev
->
lock
);
if
(
p_ev
->
b_still
)
if
(
p_ev
->
b_still
)
{
{
if
(
/* b_activated || // This breaks menus */
if
(
p_ev
->
i_still_end
>
0
&&
p_ev
->
i_still_end
<
mdate
()
)
(
p_ev
->
i_still_end
>
0
&&
p_ev
->
i_still_end
<
mdate
()
))
{
{
p_ev
->
b_still
=
false
;
p_ev
->
b_still
=
false
;
dvdnav_still_skip
(
p_sys
->
dvdnav
);
dvdnav_still_skip
(
p_sys
->
dvdnav
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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