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
68cb6a3a
Commit
68cb6a3a
authored
Sep 21, 2006
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* "synch" -> "sync" (gniihiihiimineeeeerveuh)
parent
1a913c6a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
src/input/decoder.c
src/input/decoder.c
+2
-2
src/input/input.c
src/input/input.c
+3
-3
No files found.
src/input/decoder.c
View file @
68cb6a3a
...
...
@@ -589,13 +589,13 @@ static int DecoderDecode( decoder_t *p_dec, block_t *p_block )
if
(
p_dec
->
p_owner
->
p_sout
->
i_out_pace_nocontrol
>
0
&&
p_dec
->
p_owner
->
p_input
->
b_out_pace_control
)
{
msg_Dbg
(
p_dec
,
"switching to sync
h
mode"
);
msg_Dbg
(
p_dec
,
"switching to sync mode"
);
p_dec
->
p_owner
->
p_input
->
b_out_pace_control
=
VLC_FALSE
;
}
else
if
(
p_dec
->
p_owner
->
p_sout
->
i_out_pace_nocontrol
<=
0
&&
!
p_dec
->
p_owner
->
p_input
->
b_out_pace_control
)
{
msg_Dbg
(
p_dec
,
"switching to async
h
mode"
);
msg_Dbg
(
p_dec
,
"switching to async mode"
);
p_dec
->
p_owner
->
p_input
->
b_out_pace_control
=
VLC_TRUE
;
}
}
...
...
src/input/input.c
View file @
68cb6a3a
...
...
@@ -1008,7 +1008,7 @@ static int Init( input_thread_t * p_input, vlc_bool_t b_quick )
}
msg_Dbg
(
p_input
,
"starting in %s mode"
,
p_input
->
b_out_pace_control
?
"async
h"
:
"synch
"
);
p_input
->
b_out_pace_control
?
"async
"
:
"sync
"
);
}
}
...
...
@@ -1270,7 +1270,7 @@ static vlc_bool_t Control( input_thread_t *p_input, int i_type,
}
if
(
f_pos
<
0
.
0
)
f_pos
=
0
.
0
;
if
(
f_pos
>
1
.
0
)
f_pos
=
1
.
0
;
/* Reset the decoders states and clock sync
h
(before calling the demuxer */
/* Reset the decoders states and clock sync (before calling the demuxer */
es_out_Control
(
p_input
->
p_es_out
,
ES_OUT_RESET_PCR
);
input_EsOutDiscontinuity
(
p_input
->
p_es_out
,
VLC_FALSE
);
if
(
demux2_Control
(
p_input
->
input
.
p_demux
,
DEMUX_SET_POSITION
,
...
...
@@ -1308,7 +1308,7 @@ static vlc_bool_t Control( input_thread_t *p_input, int i_type,
}
if
(
i_time
<
0
)
i_time
=
0
;
/* Reset the decoders states and clock sync
h
(before calling the demuxer */
/* Reset the decoders states and clock sync (before calling the demuxer */
es_out_Control
(
p_input
->
p_es_out
,
ES_OUT_RESET_PCR
);
input_EsOutDiscontinuity
(
p_input
->
p_es_out
,
VLC_FALSE
);
...
...
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