Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
fffbd519
Commit
fffbd519
authored
Jun 25, 2003
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* mkv: a little memory leak.
parent
e53a90f2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletion
+9
-1
modules/demux/mkv.cpp
modules/demux/mkv.cpp
+9
-1
No files found.
modules/demux/mkv.cpp
View file @
fffbd519
...
...
@@ -2,7 +2,7 @@
* mkv.cpp : matroska demuxer
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: mkv.cpp,v 1.1
3 2003/06/25 09:13:03 gbazin
Exp $
* $Id: mkv.cpp,v 1.1
4 2003/06/25 20:37:37 fenrir
Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
...
...
@@ -1119,6 +1119,12 @@ static int Activate( vlc_object_t * p_this )
{
tk
.
i_codec
=
VLC_FOURCC
(
's'
,
'u'
,
'b'
,
't'
);
}
#if 0
else if( !strcmp( tk.psz_codec, "S_TEXT/SSA" ) )
{
tk.i_codec = VLC_FOURCC( 's', 'u', 'b', 't' );
}
#endif
else
{
msg_Err
(
p_input
,
"unknow codec id=`%s'"
,
tk
.
psz_codec
);
...
...
@@ -1220,6 +1226,8 @@ static void Deactivate( vlc_object_t *p_this )
free
(
p_sys
->
psz_muxing_application
);
}
delete
p_sys
->
segment
;
delete
p_sys
->
ep
;
delete
p_sys
->
es
;
delete
p_sys
->
in
;
...
...
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