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
9ed17fac
Commit
9ed17fac
authored
Mar 30, 2015
by
Francois Cartegnie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
demux: ts: extract PES stream id and save type
parent
1bc2d77b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
5 deletions
+17
-5
modules/demux/ts.c
modules/demux/ts.c
+17
-5
No files found.
modules/demux/ts.c
View file @
9ed17fac
...
@@ -248,6 +248,8 @@ typedef struct
...
@@ -248,6 +248,8 @@ typedef struct
/* Some private streams encapsulate several ES (eg. DVB subtitles)*/
/* Some private streams encapsulate several ES (eg. DVB subtitles)*/
DECL_ARRAY
(
ts_pes_es_t
*
)
extra_es
;
DECL_ARRAY
(
ts_pes_es_t
*
)
extra_es
;
uint8_t
i_stream_type
;
ts_es_data_type_t
data_type
;
ts_es_data_type_t
data_type
;
int
i_data_size
;
int
i_data_size
;
int
i_data_gathered
;
int
i_data_gathered
;
...
@@ -2048,13 +2050,16 @@ static block_t *Opus_Parse(demux_t *demux, block_t *block)
...
@@ -2048,13 +2050,16 @@ static block_t *Opus_Parse(demux_t *demux, block_t *block)
* gathering stuff
* gathering stuff
****************************************************************************/
****************************************************************************/
static
int
ParsePESHeader
(
demux_t
*
p_demux
,
const
uint8_t
*
p_header
,
size_t
i_header
,
static
int
ParsePESHeader
(
demux_t
*
p_demux
,
const
uint8_t
*
p_header
,
size_t
i_header
,
unsigned
*
pi_skip
,
mtime_t
*
pi_dts
,
mtime_t
*
pi_pts
)
unsigned
*
pi_skip
,
mtime_t
*
pi_dts
,
mtime_t
*
pi_pts
,
uint8_t
*
pi_stream_id
)
{
{
unsigned
i_skip
;
unsigned
i_skip
;
if
(
i_header
<
9
)
if
(
i_header
<
9
)
return
VLC_EGENERIC
;
return
VLC_EGENERIC
;
*
pi_stream_id
=
p_header
[
3
];
switch
(
p_header
[
3
]
)
switch
(
p_header
[
3
]
)
{
{
case
0xBC
:
/* Program stream map */
case
0xBC
:
/* Program stream map */
...
@@ -2149,6 +2154,7 @@ static void ParsePES( demux_t *p_demux, ts_pid_t *pid, block_t *p_pes )
...
@@ -2149,6 +2154,7 @@ static void ParsePES( demux_t *p_demux, ts_pid_t *pid, block_t *p_pes )
mtime_t
i_dts
=
-
1
;
mtime_t
i_dts
=
-
1
;
mtime_t
i_pts
=
-
1
;
mtime_t
i_pts
=
-
1
;
mtime_t
i_length
=
0
;
mtime_t
i_length
=
0
;
uint8_t
i_stream_id
;
const
es_mpeg4_descriptor_t
*
p_mpeg4desc
=
NULL
;
const
es_mpeg4_descriptor_t
*
p_mpeg4desc
=
NULL
;
assert
(
pid
->
type
==
TYPE_PES
);
assert
(
pid
->
type
==
TYPE_PES
);
...
@@ -2170,7 +2176,8 @@ static void ParsePES( demux_t *p_demux, ts_pid_t *pid, block_t *p_pes )
...
@@ -2170,7 +2176,8 @@ static void ParsePES( demux_t *p_demux, ts_pid_t *pid, block_t *p_pes )
return
;
return
;
}
}
if
(
ParsePESHeader
(
p_demux
,
(
uint8_t
*
)
&
header
,
i_max
,
&
i_skip
,
&
i_dts
,
&
i_pts
)
==
VLC_EGENERIC
)
if
(
ParsePESHeader
(
p_demux
,
(
uint8_t
*
)
&
header
,
i_max
,
&
i_skip
,
&
i_dts
,
&
i_pts
,
&
i_stream_id
)
==
VLC_EGENERIC
)
{
{
block_ChainRelease
(
p_pes
);
block_ChainRelease
(
p_pes
);
return
;
return
;
...
@@ -2698,8 +2705,10 @@ static int SeekToTime( demux_t *p_demux, ts_pmt_t *p_pmt, int64_t i_scaledtime )
...
@@ -2698,8 +2705,10 @@ static int SeekToTime( demux_t *p_demux, ts_pmt_t *p_pmt, int64_t i_scaledtime )
{
{
mtime_t
i_dts
=
-
1
;
mtime_t
i_dts
=
-
1
;
mtime_t
i_pts
=
-
1
;
mtime_t
i_pts
=
-
1
;
uint8_t
i_stream_id
;
if
(
VLC_SUCCESS
==
ParsePESHeader
(
p_demux
,
&
p_pkt
->
p_buffer
[
i_skip
],
if
(
VLC_SUCCESS
==
ParsePESHeader
(
p_demux
,
&
p_pkt
->
p_buffer
[
i_skip
],
p_pkt
->
i_buffer
-
i_skip
,
&
i_skip
,
&
i_dts
,
&
i_pts
)
)
p_pkt
->
i_buffer
-
i_skip
,
&
i_skip
,
&
i_dts
,
&
i_pts
,
&
i_stream_id
)
)
{
{
if
(
i_dts
>
-
1
)
if
(
i_dts
>
-
1
)
i_pcr
=
i_dts
;
i_pcr
=
i_dts
;
...
@@ -2840,13 +2849,14 @@ static int ProbeChunk( demux_t *p_demux, int i_program, bool b_end, int64_t *pi_
...
@@ -2840,13 +2849,14 @@ static int ProbeChunk( demux_t *p_demux, int i_program, bool b_end, int64_t *pi_
b_pcrresult
=
false
;
b_pcrresult
=
false
;
mtime_t
i_dts
=
-
1
;
mtime_t
i_dts
=
-
1
;
mtime_t
i_pts
=
-
1
;
mtime_t
i_pts
=
-
1
;
uint8_t
i_stream_id
;
unsigned
i_skip
=
4
;
unsigned
i_skip
=
4
;
if
(
b_adaptfield
)
// adaptation field
if
(
b_adaptfield
)
// adaptation field
i_skip
+=
1
+
p_pkt
->
p_buffer
[
4
];
i_skip
+=
1
+
p_pkt
->
p_buffer
[
4
];
if
(
VLC_SUCCESS
==
ParsePESHeader
(
p_demux
,
&
p_pkt
->
p_buffer
[
i_skip
],
if
(
VLC_SUCCESS
==
ParsePESHeader
(
p_demux
,
&
p_pkt
->
p_buffer
[
i_skip
],
p_pkt
->
i_buffer
-
i_skip
,
p_pkt
->
i_buffer
-
i_skip
,
&
i_skip
,
&
i_
skip
,
&
i_dts
,
&
i_pts
)
)
&
i_
dts
,
&
i_pts
,
&
i_stream_id
)
)
{
{
if
(
i_dts
!=
-
1
)
if
(
i_dts
!=
-
1
)
*
pi_pcr
=
i_dts
;
*
pi_pcr
=
i_dts
;
...
@@ -5204,6 +5214,7 @@ static void PMTCallBack( void *data, dvbpsi_pmt_t *p_dvbpsipmt )
...
@@ -5204,6 +5214,7 @@ static void PMTCallBack( void *data, dvbpsi_pmt_t *p_dvbpsipmt )
PIDFillFormat
(
&
p_pes
->
es
.
fmt
,
p_dvbpsies
->
i_type
,
&
p_pes
->
data_type
);
PIDFillFormat
(
&
p_pes
->
es
.
fmt
,
p_dvbpsies
->
i_type
,
&
p_pes
->
data_type
);
p_pes
->
i_stream_type
=
p_dvbpsies
->
i_type
;
pespid
->
i_flags
|=
SEEN
(
PID
(
p_sys
,
p_dvbpsies
->
i_pid
));
pespid
->
i_flags
|=
SEEN
(
PID
(
p_sys
,
p_dvbpsies
->
i_pid
));
bool
b_registration_applied
=
false
;
bool
b_registration_applied
=
false
;
...
@@ -5600,6 +5611,7 @@ static ts_pes_t *ts_pes_New( demux_t *p_demux )
...
@@ -5600,6 +5611,7 @@ static ts_pes_t *ts_pes_New( demux_t *p_demux )
pes
->
es
.
i_sl_es_id
=
0
;
pes
->
es
.
i_sl_es_id
=
0
;
es_format_Init
(
&
pes
->
es
.
fmt
,
UNKNOWN_ES
,
0
);
es_format_Init
(
&
pes
->
es
.
fmt
,
UNKNOWN_ES
,
0
);
ARRAY_INIT
(
pes
->
extra_es
);
ARRAY_INIT
(
pes
->
extra_es
);
pes
->
i_stream_type
=
0
;
pes
->
data_type
=
TS_ES_DATA_PES
;
pes
->
data_type
=
TS_ES_DATA_PES
;
pes
->
i_data_size
=
0
;
pes
->
i_data_size
=
0
;
pes
->
i_data_gathered
=
0
;
pes
->
i_data_gathered
=
0
;
...
...
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