Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
abebf6ce
Commit
abebf6ce
authored
Jan 02, 2006
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* src/video_output/video_output.c: do not drop late frames at the video
output level when --no-skip-frames was specified.
parent
b8da4e27
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
src/video_output/video_output.c
src/video_output/video_output.c
+4
-1
No files found.
src/video_output/video_output.c
View file @
abebf6ce
...
@@ -786,9 +786,12 @@ static void RunThread( vout_thread_t *p_vout)
...
@@ -786,9 +786,12 @@ static void RunThread( vout_thread_t *p_vout)
p_vout
->
p_fps_sample
[
p_vout
->
c_fps_samples
++
%
VOUT_FPS_SAMPLES
]
p_vout
->
p_fps_sample
[
p_vout
->
c_fps_samples
++
%
VOUT_FPS_SAMPLES
]
=
display_date
;
=
display_date
;
/* XXX: config_GetInt is slow, but this kind of frame dropping
* should not happen that often. */
if
(
!
p_picture
->
b_force
&&
if
(
!
p_picture
->
b_force
&&
p_picture
!=
p_last_picture
&&
p_picture
!=
p_last_picture
&&
display_date
<
current_date
+
p_vout
->
render_time
)
display_date
<
current_date
+
p_vout
->
render_time
&&
config_GetInt
(
p_vout
,
"skip-frames"
)
)
{
{
/* Picture is late: it will be destroyed and the thread
/* Picture is late: it will be destroyed and the thread
* will directly choose the next picture */
* will directly choose the next picture */
...
...
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