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
6d6c549c
Commit
6d6c549c
authored
Jun 27, 2008
by
Kaloyan Kovachev
Committed by
Rémi Denis-Courmont
Jun 28, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Small fixes for ts_mux
Signed-off-by:
Rémi Denis-Courmont
<
rdenis@simphalempin.com
>
parent
9b587a81
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
modules/mux/mpeg/ts.c
modules/mux/mpeg/ts.c
+3
-1
No files found.
modules/mux/mpeg/ts.c
View file @
6d6c549c
...
...
@@ -817,6 +817,7 @@ static int Open( vlc_object_t *p_this )
else
{
csa_Delete
(
p_sys
->
csa
);
p_sys
->
csa
=
NULL
;
}
if
(
p_sys
->
csa
)
...
...
@@ -874,9 +875,9 @@ static void Close( vlc_object_t * p_this )
var_DelCallback
(
p_mux
,
SOUT_CFG_PREFIX
"csa2-ck"
,
ChangeKeyCallback
,
NULL
);
var_DelCallback
(
p_mux
,
SOUT_CFG_PREFIX
"csa-use"
,
ActiveKeyCallback
,
NULL
);
csa_Delete
(
p_sys
->
csa
);
p_sys
->
csa
=
NULL
;
}
vlc_mutex_unlock
(
&
p_sys
->
csa_lock
);
vlc_mutex_destroy
(
&
p_sys
->
csa_lock
);
for
(
i
=
0
;
i
<
MAX_PMT
;
i
++
)
{
...
...
@@ -884,6 +885,7 @@ static void Close( vlc_object_t * p_this )
free
(
p_sys
->
sdt_descriptors
[
i
].
psz_provider
);
}
vlc_mutex_destroy
(
&
p_sys
->
csa_lock
);
free
(
p_sys
->
dvbpmt
);
free
(
p_sys
);
}
...
...
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