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
d12bc4b5
Commit
d12bc4b5
authored
Dec 01, 2012
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename ts_es_t::*pes* into ts_es_t::*data*
No functionnal changes.
parent
d631d06d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
38 additions
and
38 deletions
+38
-38
modules/demux/ts.c
modules/demux/ts.c
+38
-38
No files found.
modules/demux/ts.c
View file @
d12bc4b5
...
@@ -239,9 +239,9 @@ typedef struct
...
@@ -239,9 +239,9 @@ typedef struct
{
{
es_format_t
fmt
;
es_format_t
fmt
;
es_out_id_t
*
id
;
es_out_id_t
*
id
;
int
i_
pes
_size
;
int
i_
data
_size
;
int
i_
pes
_gathered
;
int
i_
data
_gathered
;
block_t
*
p_
pes
;
block_t
*
p_
data
;
block_t
**
pp_last
;
block_t
**
pp_last
;
es_mpeg4_descriptor_t
*
p_mpeg4desc
;
es_mpeg4_descriptor_t
*
p_mpeg4desc
;
...
@@ -1328,7 +1328,7 @@ static void PIDInit( ts_pid_t *pid, bool b_psi, ts_psi_t *p_owner )
...
@@ -1328,7 +1328,7 @@ static void PIDInit( ts_pid_t *pid, bool b_psi, ts_psi_t *p_owner )
return
;
return
;
es_format_Init
(
&
pid
->
es
->
fmt
,
UNKNOWN_ES
,
0
);
es_format_Init
(
&
pid
->
es
->
fmt
,
UNKNOWN_ES
,
0
);
pid
->
es
->
pp_last
=
&
pid
->
es
->
p_
pes
;
pid
->
es
->
pp_last
=
&
pid
->
es
->
p_
data
;
}
}
}
}
...
@@ -1360,8 +1360,8 @@ static void PIDClean( demux_t *p_demux, ts_pid_t *pid )
...
@@ -1360,8 +1360,8 @@ static void PIDClean( demux_t *p_demux, ts_pid_t *pid )
p_sys
->
i_pmt_es
--
;
p_sys
->
i_pmt_es
--
;
}
}
if
(
pid
->
es
->
p_
pes
)
if
(
pid
->
es
->
p_
data
)
block_ChainRelease
(
pid
->
es
->
p_
pes
);
block_ChainRelease
(
pid
->
es
->
p_
data
);
es_format_Clean
(
&
pid
->
es
->
fmt
);
es_format_Clean
(
&
pid
->
es
->
fmt
);
...
@@ -1375,8 +1375,8 @@ static void PIDClean( demux_t *p_demux, ts_pid_t *pid )
...
@@ -1375,8 +1375,8 @@ static void PIDClean( demux_t *p_demux, ts_pid_t *pid )
p_sys
->
i_pmt_es
--
;
p_sys
->
i_pmt_es
--
;
}
}
if
(
pid
->
extra_es
[
i
]
->
p_
pes
)
if
(
pid
->
extra_es
[
i
]
->
p_
data
)
block_ChainRelease
(
pid
->
extra_es
[
i
]
->
p_
pes
);
block_ChainRelease
(
pid
->
extra_es
[
i
]
->
p_
data
);
es_format_Clean
(
&
pid
->
extra_es
[
i
]
->
fmt
);
es_format_Clean
(
&
pid
->
extra_es
[
i
]
->
fmt
);
...
@@ -1394,7 +1394,7 @@ static void PIDClean( demux_t *p_demux, ts_pid_t *pid )
...
@@ -1394,7 +1394,7 @@ static void PIDClean( demux_t *p_demux, ts_pid_t *pid )
****************************************************************************/
****************************************************************************/
static
void
ParsePES
(
demux_t
*
p_demux
,
ts_pid_t
*
pid
)
static
void
ParsePES
(
demux_t
*
p_demux
,
ts_pid_t
*
pid
)
{
{
block_t
*
p_pes
=
pid
->
es
->
p_
pes
;
block_t
*
p_pes
=
pid
->
es
->
p_
data
;
uint8_t
header
[
34
];
uint8_t
header
[
34
];
unsigned
i_pes_size
=
0
;
unsigned
i_pes_size
=
0
;
unsigned
i_skip
=
0
;
unsigned
i_skip
=
0
;
...
@@ -1403,10 +1403,10 @@ static void ParsePES( demux_t *p_demux, ts_pid_t *pid )
...
@@ -1403,10 +1403,10 @@ static void ParsePES( demux_t *p_demux, ts_pid_t *pid )
mtime_t
i_length
=
0
;
mtime_t
i_length
=
0
;
/* remove the pes from pid */
/* remove the pes from pid */
pid
->
es
->
p_
pes
=
NULL
;
pid
->
es
->
p_
data
=
NULL
;
pid
->
es
->
i_
pes
_size
=
0
;
pid
->
es
->
i_
data
_size
=
0
;
pid
->
es
->
i_
pes
_gathered
=
0
;
pid
->
es
->
i_
data
_gathered
=
0
;
pid
->
es
->
pp_last
=
&
pid
->
es
->
p_
pes
;
pid
->
es
->
pp_last
=
&
pid
->
es
->
p_
data
;
/* FIXME find real max size */
/* FIXME find real max size */
/* const int i_max = */
block_ChainExtract
(
p_pes
,
header
,
34
);
/* const int i_max = */
block_ChainExtract
(
p_pes
,
header
,
34
);
...
@@ -1990,8 +1990,8 @@ static bool GatherPES( demux_t *p_demux, ts_pid_t *pid, block_t *p_bk )
...
@@ -1990,8 +1990,8 @@ static bool GatherPES( demux_t *p_demux, ts_pid_t *pid, block_t *p_bk )
{
{
msg_Dbg
(
p_demux
,
"transport_error_indicator set (pid=%d)"
,
msg_Dbg
(
p_demux
,
"transport_error_indicator set (pid=%d)"
,
pid
->
i_pid
);
pid
->
i_pid
);
if
(
pid
->
es
->
p_
pes
)
//&& pid->es->fmt.i_cat == VIDEO_ES )
if
(
pid
->
es
->
p_
data
)
//&& pid->es->fmt.i_cat == VIDEO_ES )
pid
->
es
->
p_
pes
->
i_flags
|=
BLOCK_FLAG_CORRUPTED
;
pid
->
es
->
p_
data
->
i_flags
|=
BLOCK_FLAG_CORRUPTED
;
}
}
if
(
p_demux
->
p_sys
->
csa
)
if
(
p_demux
->
p_sys
->
csa
)
...
@@ -2015,11 +2015,11 @@ static bool GatherPES( demux_t *p_demux, ts_pid_t *pid, block_t *p_bk )
...
@@ -2015,11 +2015,11 @@ static bool GatherPES( demux_t *p_demux, ts_pid_t *pid, block_t *p_bk )
{
{
/* discontinuity indicator found in stream */
/* discontinuity indicator found in stream */
b_discontinuity
=
(
p
[
5
]
&
0x80
)
?
true
:
false
;
b_discontinuity
=
(
p
[
5
]
&
0x80
)
?
true
:
false
;
if
(
b_discontinuity
&&
pid
->
es
->
p_
pes
)
if
(
b_discontinuity
&&
pid
->
es
->
p_
data
)
{
{
msg_Warn
(
p_demux
,
"discontinuity indicator (pid=%d) "
,
msg_Warn
(
p_demux
,
"discontinuity indicator (pid=%d) "
,
pid
->
i_pid
);
pid
->
i_pid
);
/* pid->es->p_
pes
->i_flags |= BLOCK_FLAG_DISCONTINUITY; */
/* pid->es->p_
data
->i_flags |= BLOCK_FLAG_DISCONTINUITY; */
}
}
#if 0
#if 0
if( p[5]&0x40 )
if( p[5]&0x40 )
...
@@ -2054,11 +2054,11 @@ static bool GatherPES( demux_t *p_demux, ts_pid_t *pid, block_t *p_bk )
...
@@ -2054,11 +2054,11 @@ static bool GatherPES( demux_t *p_demux, ts_pid_t *pid, block_t *p_bk )
i_cc
,
(
pid
->
i_cc
+
1
)
&
0x0f
,
pid
->
i_pid
);
i_cc
,
(
pid
->
i_cc
+
1
)
&
0x0f
,
pid
->
i_pid
);
pid
->
i_cc
=
i_cc
;
pid
->
i_cc
=
i_cc
;
if
(
pid
->
es
->
p_
pes
&&
pid
->
es
->
fmt
.
i_cat
!=
VIDEO_ES
)
if
(
pid
->
es
->
p_
data
&&
pid
->
es
->
fmt
.
i_cat
!=
VIDEO_ES
)
{
{
/* Small video artifacts are usually better than
/* Small video artifacts are usually better than
* dropping full frames */
* dropping full frames */
pid
->
es
->
p_
pes
->
i_flags
|=
BLOCK_FLAG_CORRUPTED
;
pid
->
es
->
p_
data
->
i_flags
|=
BLOCK_FLAG_CORRUPTED
;
}
}
}
}
}
}
...
@@ -2094,7 +2094,7 @@ static bool GatherPES( demux_t *p_demux, ts_pid_t *pid, block_t *p_bk )
...
@@ -2094,7 +2094,7 @@ static bool GatherPES( demux_t *p_demux, ts_pid_t *pid, block_t *p_bk )
if
(
b_unit_start
)
if
(
b_unit_start
)
{
{
if
(
pid
->
es
->
p_
pes
)
if
(
pid
->
es
->
p_
data
)
{
{
ParsePES
(
p_demux
,
pid
);
ParsePES
(
p_demux
,
pid
);
i_ret
=
true
;
i_ret
=
true
;
...
@@ -2103,15 +2103,15 @@ static bool GatherPES( demux_t *p_demux, ts_pid_t *pid, block_t *p_bk )
...
@@ -2103,15 +2103,15 @@ static bool GatherPES( demux_t *p_demux, ts_pid_t *pid, block_t *p_bk )
block_ChainLastAppend
(
&
pid
->
es
->
pp_last
,
p_bk
);
block_ChainLastAppend
(
&
pid
->
es
->
pp_last
,
p_bk
);
if
(
p_bk
->
i_buffer
>
6
)
if
(
p_bk
->
i_buffer
>
6
)
{
{
pid
->
es
->
i_
pes
_size
=
GetWBE
(
&
p_bk
->
p_buffer
[
4
]
);
pid
->
es
->
i_
data
_size
=
GetWBE
(
&
p_bk
->
p_buffer
[
4
]
);
if
(
pid
->
es
->
i_
pes
_size
>
0
)
if
(
pid
->
es
->
i_
data
_size
>
0
)
{
{
pid
->
es
->
i_
pes
_size
+=
6
;
pid
->
es
->
i_
data
_size
+=
6
;
}
}
}
}
pid
->
es
->
i_
pes
_gathered
+=
p_bk
->
i_buffer
;
pid
->
es
->
i_
data
_gathered
+=
p_bk
->
i_buffer
;
if
(
pid
->
es
->
i_
pes
_size
>
0
&&
if
(
pid
->
es
->
i_
data
_size
>
0
&&
pid
->
es
->
i_
pes_gathered
>=
pid
->
es
->
i_pes
_size
)
pid
->
es
->
i_
data_gathered
>=
pid
->
es
->
i_data
_size
)
{
{
ParsePES
(
p_demux
,
pid
);
ParsePES
(
p_demux
,
pid
);
i_ret
=
true
;
i_ret
=
true
;
...
@@ -2119,7 +2119,7 @@ static bool GatherPES( demux_t *p_demux, ts_pid_t *pid, block_t *p_bk )
...
@@ -2119,7 +2119,7 @@ static bool GatherPES( demux_t *p_demux, ts_pid_t *pid, block_t *p_bk )
}
}
else
else
{
{
if
(
pid
->
es
->
p_
pes
==
NULL
)
if
(
pid
->
es
->
p_
data
==
NULL
)
{
{
/* msg_Dbg( p_demux, "broken packet" ); */
/* msg_Dbg( p_demux, "broken packet" ); */
block_Release
(
p_bk
);
block_Release
(
p_bk
);
...
@@ -2127,9 +2127,9 @@ static bool GatherPES( demux_t *p_demux, ts_pid_t *pid, block_t *p_bk )
...
@@ -2127,9 +2127,9 @@ static bool GatherPES( demux_t *p_demux, ts_pid_t *pid, block_t *p_bk )
else
else
{
{
block_ChainLastAppend
(
&
pid
->
es
->
pp_last
,
p_bk
);
block_ChainLastAppend
(
&
pid
->
es
->
pp_last
,
p_bk
);
pid
->
es
->
i_
pes
_gathered
+=
p_bk
->
i_buffer
;
pid
->
es
->
i_
data
_gathered
+=
p_bk
->
i_buffer
;
if
(
pid
->
es
->
i_
pes
_size
>
0
&&
if
(
pid
->
es
->
i_
data
_size
>
0
&&
pid
->
es
->
i_
pes_gathered
>=
pid
->
es
->
i_pes
_size
)
pid
->
es
->
i_
data_gathered
>=
pid
->
es
->
i_data
_size
)
{
{
ParsePES
(
p_demux
,
pid
);
ParsePES
(
p_demux
,
pid
);
i_ret
=
true
;
i_ret
=
true
;
...
@@ -3177,10 +3177,10 @@ static void PMTSetupEsTeletext( demux_t *p_demux, ts_pid_t *pid,
...
@@ -3177,10 +3177,10 @@ static void PMTSetupEsTeletext( demux_t *p_demux, ts_pid_t *pid,
p_es
->
fmt
.
psz_description
=
NULL
;
p_es
->
fmt
.
psz_description
=
NULL
;
p_es
->
id
=
NULL
;
p_es
->
id
=
NULL
;
p_es
->
p_
pes
=
NULL
;
p_es
->
p_
data
=
NULL
;
p_es
->
i_
pes
_size
=
0
;
p_es
->
i_
data
_size
=
0
;
p_es
->
i_
pes
_gathered
=
0
;
p_es
->
i_
data
_gathered
=
0
;
p_es
->
pp_last
=
&
p_es
->
p_
pes
;
p_es
->
pp_last
=
&
p_es
->
p_
data
;
p_es
->
p_mpeg4desc
=
NULL
;
p_es
->
p_mpeg4desc
=
NULL
;
p_es
->
b_gather
=
false
;
p_es
->
b_gather
=
false
;
...
@@ -3261,10 +3261,10 @@ static void PMTSetupEsDvbSubtitle( demux_t *p_demux, ts_pid_t *pid,
...
@@ -3261,10 +3261,10 @@ static void PMTSetupEsDvbSubtitle( demux_t *p_demux, ts_pid_t *pid,
p_es
->
fmt
.
psz_description
=
NULL
;
p_es
->
fmt
.
psz_description
=
NULL
;
p_es
->
id
=
NULL
;
p_es
->
id
=
NULL
;
p_es
->
p_
pes
=
NULL
;
p_es
->
p_
data
=
NULL
;
p_es
->
i_
pes
_size
=
0
;
p_es
->
i_
data
_size
=
0
;
p_es
->
i_
pes
_gathered
=
0
;
p_es
->
i_
data
_gathered
=
0
;
p_es
->
pp_last
=
&
p_es
->
p_
pes
;
p_es
->
pp_last
=
&
p_es
->
p_
data
;
p_es
->
p_mpeg4desc
=
NULL
;
p_es
->
p_mpeg4desc
=
NULL
;
p_es
->
b_gather
=
false
;
p_es
->
b_gather
=
false
;
...
...
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