Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Jean-Baptiste Kempf
VLC
Commits
6dd481eb
Commit
6dd481eb
authored
Apr 26, 2005
by
gbazin
Browse files
* modules/stream_out/transcode.c: lowered the hurry-up treshold a bit.
parent
488d59cc
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/stream_out/transcode.c
View file @
6dd481eb
...
...
@@ -1496,10 +1496,10 @@ static int transcode_video_process( sout_stream_t *p_stream,
if
(
p_stream
->
p_sout
->
i_out_pace_nocontrol
&&
p_sys
->
b_hurry_up
)
{
mtime_t
current_date
=
mdate
();
if
(
current_date
+
10
0000
>
p_pic
->
date
)
if
(
current_date
+
5
0000
>
p_pic
->
date
)
{
msg_Dbg
(
p_stream
,
"late picture skipped ("
I64Fd
")"
,
current_date
+
10
0000
-
p_pic
->
date
);
current_date
+
5
0000
-
p_pic
->
date
);
p_pic
->
pf_release
(
p_pic
);
continue
;
}
...
...
Write
Preview
Supports
Markdown
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