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
e8b65bdc
Commit
e8b65bdc
authored
Aug 25, 2009
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix compilation: too short delay.
parent
0fbf5615
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
modules/access/vcdx/vcdplayer.c
modules/access/vcdx/vcdplayer.c
+1
-1
modules/misc/notify/notify.c
modules/misc/notify/notify.c
+1
-1
modules/visualization/projectm.cpp
modules/visualization/projectm.cpp
+1
-1
No files found.
modules/access/vcdx/vcdplayer.c
View file @
e8b65bdc
...
...
@@ -550,7 +550,7 @@ vcdplayer_pbc_nav ( access_t * p_access, uint8_t *wait_time )
return
READ_BLOCK
;
}
else
if
(
p_vcdplayer
->
i_still
)
{
/* Hack: Just go back and do still again */
msleep
(
1000
);
msleep
(
1000
0
);
return
READ_STILL_FRAME
;
}
}
...
...
modules/misc/notify/notify.c
View file @
e8b65bdc
...
...
@@ -176,7 +176,7 @@ static int ItemChange( vlc_object_t *p_this, const char *psz_var,
/* Wait a tad so the meta has been fetched
* FIXME that's awfully wrong */
msleep
(
1000
*
4
);
msleep
(
1000
0
);
/* Playing something ... */
input_item_t
*
p_input_item
=
input_GetItem
(
p_input
);
...
...
modules/visualization/projectm.cpp
View file @
e8b65bdc
...
...
@@ -318,7 +318,7 @@ static void* Thread( vlc_object_t *p_this )
vlc_mutex_unlock
(
&
p_thread
->
lock
);
/* TODO: use a fps limiter */
msleep
(
1000
);
msleep
(
1000
0
);
}
...
...
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