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
93187b32
Commit
93187b32
authored
Nov 28, 2003
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* mkv: fixed a buffer overflow.
parent
5fee9b1b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
7 deletions
+2
-7
modules/demux/mkv.cpp
modules/demux/mkv.cpp
+2
-7
No files found.
modules/demux/mkv.cpp
View file @
93187b32
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* mkv.cpp : matroska demuxer
* mkv.cpp : matroska demuxer
*****************************************************************************
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* Copyright (C) 2001 VideoLAN
* $Id: mkv.cpp,v 1.4
6 2003/11/28 17:30:31 hartman
Exp $
* $Id: mkv.cpp,v 1.4
7 2003/11/28 22:23:04 fenrir
Exp $
*
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
*
...
@@ -1103,7 +1103,7 @@ static int Open( vlc_object_t * p_this )
...
@@ -1103,7 +1103,7 @@ static int Open( vlc_object_t * p_this )
!
strncmp
(
tk
.
psz_codec
,
"A_AAC/MPEG4/"
,
strlen
(
"A_AAC/MPEG4/"
)
)
)
!
strncmp
(
tk
.
psz_codec
,
"A_AAC/MPEG4/"
,
strlen
(
"A_AAC/MPEG4/"
)
)
)
{
{
int
i_profile
,
i_srate
;
int
i_profile
,
i_srate
;
static
int
i_sample_rates
[]
=
static
unsigned
int
i_sample_rates
[]
=
{
{
96000
,
88200
,
64000
,
48000
,
44100
,
32000
,
24000
,
22050
,
96000
,
88200
,
64000
,
48000
,
44100
,
32000
,
24000
,
22050
,
16000
,
12000
,
11025
,
8000
,
7350
,
0
,
0
,
0
16000
,
12000
,
11025
,
8000
,
7350
,
0
,
0
,
0
...
@@ -1508,11 +1508,6 @@ static void BlockDecode( input_thread_t *p_input, KaxBlock *block, mtime_t i_pts
...
@@ -1508,11 +1508,6 @@ static void BlockDecode( input_thread_t *p_input, KaxBlock *block, mtime_t i_pts
{
{
p_block
->
i_dts
=
0
;
p_block
->
i_dts
=
0
;
}
}
if
(
p_block
->
i_buffer
>
0
)
{
p_block
->
p_buffer
[
p_block
->
i_buffer
]
=
'\0'
;
}
}
}
es_out_Send
(
p_input
->
p_es_out
,
tk
.
p_es
,
p_block
);
es_out_Send
(
p_input
->
p_es_out
,
tk
.
p_es
,
p_block
);
...
...
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