Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
94c45aa6
Commit
94c45aa6
authored
Dec 07, 2009
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bridge: use VLC_TS_INVALID (refs #3135)
parent
9f8f2982
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
modules/stream_out/bridge.c
modules/stream_out/bridge.c
+3
-3
No files found.
modules/stream_out/bridge.c
View file @
94c45aa6
...
...
@@ -291,7 +291,7 @@ static sout_stream_id_t * AddOut( sout_stream_t *p_stream, es_format_t *p_fmt )
p_es
->
b_empty
=
false
;
p_es
->
id
=
NULL
;
p_es
->
i_last
=
0
;
p_es
->
i_last
=
VLC_TS_INVALID
;
p_es
->
b_changed
=
true
;
msg_Dbg
(
p_stream
,
"bridging out input codec=%4.4s id=%d pos=%d"
,
...
...
@@ -436,8 +436,8 @@ static int OpenIn( vlc_object_t *p_this )
var_Get
(
p_stream
,
SOUT_CFG_PREFIX_IN
"placeholder-delay"
,
&
val
);
p_sys
->
i_placeholder_delay
=
(
mtime_t
)
val
.
i_int
*
1000
;
p_sys
->
i_last_video
=
0
;
p_sys
->
i_last_audio
=
0
;
p_sys
->
i_last_video
=
VLC_TS_INVALID
;
p_sys
->
i_last_audio
=
VLC_TS_INVALID
;
p_sys
->
id_video
=
NULL
;
p_sys
->
id_audio
=
NULL
;
...
...
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