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
6d0acab6
Commit
6d0acab6
authored
Nov 26, 2003
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/stream_out/display.c: fixed timestamp generation.
parent
20416964
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
modules/stream_out/display.c
modules/stream_out/display.c
+3
-3
No files found.
modules/stream_out/display.c
View file @
6d0acab6
...
...
@@ -2,7 +2,7 @@
* display.c
*****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN
* $Id: display.c,v 1.
8 2003/11/24 00:39:01 fenrir
Exp $
* $Id: display.c,v 1.
9 2003/11/26 22:56:04 gbazin
Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
...
...
@@ -259,9 +259,9 @@ static int Send( sout_stream_t *p_stream, sout_stream_id_t *id,
}
p_data
->
p_payload_end
=
p_data
->
p_payload_start
+
p_buffer
->
i_size
;
p_pes
->
i_dts
=
p_buffer
->
i_dts
<
0
?
0
:
p_pes
->
i_dts
=
p_buffer
->
i_dts
<
=
0
?
0
:
p_buffer
->
i_dts
+
p_sys
->
i_delay
;
p_pes
->
i_pts
=
p_buffer
->
i_pts
<
0
?
0
:
p_pes
->
i_pts
=
p_buffer
->
i_pts
<
=
0
?
0
:
p_buffer
->
i_pts
+
p_sys
->
i_delay
;
p_pes
->
p_first
=
p_pes
->
p_last
=
p_data
;
p_pes
->
i_nb_data
=
1
;
...
...
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