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
ab7639bd
Commit
ab7639bd
authored
Dec 14, 2008
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed real PCR.
parent
aedd9391
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
modules/demux/real.c
modules/demux/real.c
+3
-2
No files found.
modules/demux/real.c
View file @
ab7639bd
...
...
@@ -358,7 +358,7 @@ static int Demux( demux_t *p_demux )
{
real_track_t
*
tk
=
p_sys
->
track
[
i
];
if
(
i_pcr
<=
0
||
(
tk
->
i_last_dts
>
0
&&
tk
->
i_last_dts
>
i_pcr
)
)
if
(
i_pcr
<=
0
||
(
tk
->
i_last_dts
>
0
&&
tk
->
i_last_dts
<
i_pcr
)
)
i_pcr
=
tk
->
i_last_dts
;
}
if
(
i_pcr
>
0
&&
i_pcr
!=
p_sys
->
i_pcr
)
...
...
@@ -701,7 +701,8 @@ static void DemuxAudioMethod1( demux_t *p_demux, real_track_t *tk, mtime_t i_pts
tk
->
p_subpackets
[
tk
->
i_out_subpacket
]
)
{
block_t
*
p_block
=
tk
->
p_subpackets
[
tk
->
i_out_subpacket
];
tk
->
p_subpackets
[
tk
->
i_out_subpacket
]
=
0
;
tk
->
p_subpackets
[
tk
->
i_out_subpacket
]
=
NULL
;
if
(
tk
->
p_subpackets_timecode
[
tk
->
i_out_subpacket
]
)
{
p_block
->
i_dts
=
...
...
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