Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
4k
Issue boards
Milestones
Code
Merge requests
454
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC
Commits
16b435f0
Commit
16b435f0
authored
19 years ago
by
Laurent Aimar
Browse files
Options
Downloads
Patches
Plain Diff
es_out*: added ES_OUT_DEL_GROUP
ts.c: use ES_OUT_DEL_GROUP to remove old program.
parent
4bd2fb31
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
include/vlc_es_out.h
+2
-0
2 additions, 0 deletions
include/vlc_es_out.h
modules/demux/ts.c
+8
-0
8 additions, 0 deletions
modules/demux/ts.c
src/input/es_out.c
+6
-0
6 additions, 0 deletions
src/input/es_out.c
with
16 additions
and
0 deletions
include/vlc_es_out.h
+
2
−
0
View file @
16b435f0
...
...
@@ -80,6 +80,8 @@ enum es_out_query_e
ES_OUT_SET_NEXT_DISPLAY_TIME
,
/* arg1=es_out_id_t* arg2=int64_t i_pts(microsecond) */
/* Set meta data for group (dynamic) */
ES_OUT_SET_GROUP_META
,
/* arg1=int i_group arg2=vlc_meta_t */
/* */
ES_OUT_DEL_GROUP
,
/* arg1=int i_group */
};
struct
es_out_t
...
...
This diff is collapsed.
Click to expand it.
modules/demux/ts.c
+
8
−
0
View file @
16b435f0
...
...
@@ -2941,6 +2941,7 @@ static void PATCallBack( demux_t *p_demux, dvbpsi_pat_t *p_pat )
/* Delete PMT pid */
for
(
i
=
0
;
i
<
i_pmt_rm
;
i
++
)
{
int
i_prg
;
if
(
p_sys
->
b_dvb_control
)
{
if
(
stream_Control
(
p_demux
->
s
,
STREAM_CONTROL_ACCESS
,
...
...
@@ -2949,6 +2950,13 @@ static void PATCallBack( demux_t *p_demux, dvbpsi_pat_t *p_pat )
p_sys
->
b_dvb_control
=
VLC_FALSE
;
}
for
(
i_prg
=
0
;
i_prg
<
pmt_rm
[
i
]
->
psi
->
i_prg
;
i_prg
++
)
{
const
int
i_number
=
pmt_rm
[
i
]
->
psi
->
prg
[
i_prg
]
->
i_number
;
if
(
i_number
!=
0
)
es_out_Control
(
p_demux
->
out
,
ES_OUT_DEL_GROUP
,
i_number
);
}
PIDClean
(
p_demux
->
out
,
&
p_sys
->
pid
[
pmt_rm
[
i
]
->
i_pid
]
);
TAB_REMOVE
(
p_sys
->
i_pmt
,
p_sys
->
pmt
,
pmt_rm
[
i
]
);
}
...
...
This diff is collapsed.
Click to expand it.
src/input/es_out.c
+
6
−
0
View file @
16b435f0
...
...
@@ -1363,6 +1363,12 @@ static int EsOutControl( es_out_t *out, int i_query, va_list args )
EsOutProgramMeta
(
out
,
i_group
,
p_meta
);
return
VLC_SUCCESS
;
}
case
ES_OUT_DEL_GROUP
:
{
int
i_group
=
(
int
)
va_arg
(
args
,
int
);
return
EsOutProgramDel
(
out
,
i_group
);
}
default:
msg_Err
(
p_sys
->
p_input
,
"unknown query in es_out_Control"
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment