Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
138766e6
Commit
138766e6
authored
May 14, 2002
by
Johan Bilien
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* src/input/mpeg_system.c : We handle PCR even if they are not attached
to a PMT.
parent
9a9e873c
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
36 deletions
+26
-36
src/input/mpeg_system.c
src/input/mpeg_system.c
+26
-36
No files found.
src/input/mpeg_system.c
View file @
138766e6
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* mpeg_system.c: TS, PS and PES management
* mpeg_system.c: TS, PS and PES management
*****************************************************************************
*****************************************************************************
* Copyright (C) 1998-2001 VideoLAN
* Copyright (C) 1998-2001 VideoLAN
* $Id: mpeg_system.c,v 1.9
4 2002/05/14 20:27:25 massiot
Exp $
* $Id: mpeg_system.c,v 1.9
5 2002/05/14 20:54:52 jobi
Exp $
*
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
* Authors: Christophe Massiot <massiot@via.ecp.fr>
* Michel Lespinasse <walken@via.ecp.fr>
* Michel Lespinasse <walken@via.ecp.fr>
...
@@ -1151,7 +1151,7 @@ void input_DemuxTS( input_thread_t * p_input, data_packet_t * p_data,
...
@@ -1151,7 +1151,7 @@ void input_DemuxTS( input_thread_t * p_input, data_packet_t * p_data,
/* Don't change the order of the tests : if b_psi then p_pgrm_demux
/* Don't change the order of the tests : if b_psi then p_pgrm_demux
* may still be null. Who said it was ugly ?
* may still be null. Who said it was ugly ?
* I have written worse. --Meuuh */
* I have written worse. --Meuuh */
if
(
(
p_es
!=
NULL
)
&&
if
(
(
p_es
)
&&
((
p_es
->
p_decoder_fifo
!=
NULL
)
||
b_psi
||
b_pcr
)
)
((
p_es
->
p_decoder_fifo
!=
NULL
)
||
b_psi
||
b_pcr
)
)
{
{
p_es
->
c_packets
++
;
p_es
->
c_packets
++
;
...
@@ -1211,40 +1211,6 @@ void input_DemuxTS( input_thread_t * p_input, data_packet_t * p_data,
...
@@ -1211,40 +1211,6 @@ void input_DemuxTS( input_thread_t * p_input, data_packet_t * p_data,
p_es_demux
->
i_continuity_counter
=
(
p
[
3
]
&
0x0f
)
-
1
;
p_es_demux
->
i_continuity_counter
=
(
p
[
3
]
&
0x0f
)
-
1
;
}
}
/* If this is a PCR_PID, and this TS packet contains a
* PCR, we pass it along to the PCR decoder. */
if
(
!
b_psi
&&
b_pcr
&&
(
p
[
5
]
&
0x10
)
)
{
/* There should be a PCR field in the packet, check
* if the adaptation field is long enough to carry
* it. */
if
(
p
[
4
]
>=
7
)
{
/* Read the PCR. */
mtime_t
pcr_time
;
pcr_time
=
(
(
mtime_t
)
p
[
6
]
<<
25
)
|
(
(
mtime_t
)
p
[
7
]
<<
17
)
|
(
(
mtime_t
)
p
[
8
]
<<
9
)
|
(
(
mtime_t
)
p
[
9
]
<<
1
)
|
(
(
mtime_t
)
p
[
10
]
>>
7
);
/* Call the pace control. */
for
(
i_dummy
=
0
;
i_dummy
<
p_input
->
stream
.
i_pgrm_number
;
i_dummy
++
)
{
if
(
(
(
pgrm_ts_data_t
*
)
p_input
->
stream
.
pp_programs
[
i_dummy
]
->
p_demux_data
)
->
i_pcr_pid
==
i_pid
)
{
input_ClockManageRef
(
p_input
,
p_input
->
stream
.
pp_programs
[
i_dummy
],
pcr_time
);
}
}
}
}
/* PCR ? */
}
/* valid TS adaptation field ? */
}
/* valid TS adaptation field ? */
}
/* length > 0 */
}
/* length > 0 */
}
/* has adaptation field */
}
/* has adaptation field */
...
@@ -1300,6 +1266,30 @@ void input_DemuxTS( input_thread_t * p_input, data_packet_t * p_data,
...
@@ -1300,6 +1266,30 @@ void input_DemuxTS( input_thread_t * p_input, data_packet_t * p_data,
}
/* continuity */
}
/* continuity */
}
/* if selected or PCR */
}
/* if selected or PCR */
/* Handle PCR */
if
(
b_pcr
&&
b_adaptation
&&
(
p
[
5
]
&
0x10
)
&&
p
[
4
]
>=
7
)
{
/* Read the PCR. */
mtime_t
pcr_time
;
pcr_time
=
(
(
mtime_t
)
p
[
6
]
<<
25
)
|
(
(
mtime_t
)
p
[
7
]
<<
17
)
|
(
(
mtime_t
)
p
[
8
]
<<
9
)
|
(
(
mtime_t
)
p
[
9
]
<<
1
)
|
(
(
mtime_t
)
p
[
10
]
>>
7
);
/* Call the pace control. */
for
(
i_dummy
=
0
;
i_dummy
<
p_input
->
stream
.
i_pgrm_number
;
i_dummy
++
)
{
if
(
(
(
pgrm_ts_data_t
*
)
p_input
->
stream
.
pp_programs
[
i_dummy
]
->
p_demux_data
)
->
i_pcr_pid
==
i_pid
)
{
input_ClockManageRef
(
p_input
,
p_input
->
stream
.
pp_programs
[
i_dummy
],
pcr_time
);
}
}
}
/* Trash the packet if it has no payload or if it isn't selected */
/* Trash the packet if it has no payload or if it isn't selected */
if
(
b_trash
)
if
(
b_trash
)
{
{
...
...
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