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
b51e492c
Commit
b51e492c
authored
Feb 28, 2010
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed potential segfault with corrupted streams (audio codecs).
parent
10029dae
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
13 deletions
+18
-13
modules/codec/a52.c
modules/codec/a52.c
+5
-4
modules/codec/dts.c
modules/codec/dts.c
+5
-4
modules/codec/mpeg_audio.c
modules/codec/mpeg_audio.c
+8
-5
No files found.
modules/codec/a52.c
View file @
b51e492c
...
@@ -99,7 +99,7 @@ enum {
...
@@ -99,7 +99,7 @@ enum {
****************************************************************************/
****************************************************************************/
static
void
*
DecodeBlock
(
decoder_t
*
,
block_t
**
);
static
void
*
DecodeBlock
(
decoder_t
*
,
block_t
**
);
static
uint8_t
*
GetOutBuffer
(
decoder_t
*
,
void
**
);
static
uint8_t
*
GetOutBuffer
(
decoder_t
*
,
block_t
**
);
static
aout_buffer_t
*
GetAoutBuffer
(
decoder_t
*
);
static
aout_buffer_t
*
GetAoutBuffer
(
decoder_t
*
);
static
block_t
*
GetSoutBuffer
(
decoder_t
*
);
static
block_t
*
GetSoutBuffer
(
decoder_t
*
);
...
@@ -180,7 +180,7 @@ static void *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
...
@@ -180,7 +180,7 @@ static void *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
decoder_sys_t
*
p_sys
=
p_dec
->
p_sys
;
decoder_sys_t
*
p_sys
=
p_dec
->
p_sys
;
uint8_t
p_header
[
VLC_A52_HEADER_SIZE
];
uint8_t
p_header
[
VLC_A52_HEADER_SIZE
];
uint8_t
*
p_buf
;
uint8_t
*
p_buf
;
void
*
p_out_buffer
;
block_t
*
p_out_buffer
;
if
(
!
pp_block
||
!*
pp_block
)
return
NULL
;
if
(
!
pp_block
||
!*
pp_block
)
return
NULL
;
...
@@ -310,7 +310,8 @@ static void *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
...
@@ -310,7 +310,8 @@ static void *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
/* Copy the whole frame into the buffer. When we reach this point
/* Copy the whole frame into the buffer. When we reach this point
* we already know we have enough data available. */
* we already know we have enough data available. */
block_GetBytes
(
&
p_sys
->
bytestream
,
p_buf
,
p_sys
->
frame
.
i_size
);
block_GetBytes
(
&
p_sys
->
bytestream
,
p_buf
,
__MIN
(
p_sys
->
frame
.
i_size
,
p_out_buffer
->
i_buffer
)
);
/* Make sure we don't reuse the same pts twice */
/* Make sure we don't reuse the same pts twice */
if
(
p_sys
->
i_pts
==
p_sys
->
bytestream
.
p_block
->
i_pts
)
if
(
p_sys
->
i_pts
==
p_sys
->
bytestream
.
p_block
->
i_pts
)
...
@@ -344,7 +345,7 @@ static void CloseCommon( vlc_object_t *p_this )
...
@@ -344,7 +345,7 @@ static void CloseCommon( vlc_object_t *p_this )
/*****************************************************************************
/*****************************************************************************
* GetOutBuffer:
* GetOutBuffer:
*****************************************************************************/
*****************************************************************************/
static
uint8_t
*
GetOutBuffer
(
decoder_t
*
p_dec
,
void
**
pp_out_buffer
)
static
uint8_t
*
GetOutBuffer
(
decoder_t
*
p_dec
,
block_t
**
pp_out_buffer
)
{
{
decoder_sys_t
*
p_sys
=
p_dec
->
p_sys
;
decoder_sys_t
*
p_sys
=
p_dec
->
p_sys
;
uint8_t
*
p_buf
;
uint8_t
*
p_buf
;
...
...
modules/codec/dts.c
View file @
b51e492c
...
@@ -109,7 +109,7 @@ static inline int SyncCode( const uint8_t * );
...
@@ -109,7 +109,7 @@ static inline int SyncCode( const uint8_t * );
static
int
SyncInfo
(
const
uint8_t
*
,
bool
*
,
unsigned
int
*
,
unsigned
int
*
,
static
int
SyncInfo
(
const
uint8_t
*
,
bool
*
,
unsigned
int
*
,
unsigned
int
*
,
unsigned
int
*
,
unsigned
int
*
,
unsigned
int
*
);
unsigned
int
*
,
unsigned
int
*
,
unsigned
int
*
);
static
uint8_t
*
GetOutBuffer
(
decoder_t
*
,
void
**
);
static
uint8_t
*
GetOutBuffer
(
decoder_t
*
,
block_t
**
);
static
aout_buffer_t
*
GetAoutBuffer
(
decoder_t
*
);
static
aout_buffer_t
*
GetAoutBuffer
(
decoder_t
*
);
static
block_t
*
GetSoutBuffer
(
decoder_t
*
);
static
block_t
*
GetSoutBuffer
(
decoder_t
*
);
...
@@ -179,7 +179,7 @@ static void *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
...
@@ -179,7 +179,7 @@ static void *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
decoder_sys_t
*
p_sys
=
p_dec
->
p_sys
;
decoder_sys_t
*
p_sys
=
p_dec
->
p_sys
;
uint8_t
p_header
[
DTS_HEADER_SIZE
];
uint8_t
p_header
[
DTS_HEADER_SIZE
];
uint8_t
*
p_buf
;
uint8_t
*
p_buf
;
void
*
p_out_buffer
;
block_t
*
p_out_buffer
;
if
(
!
pp_block
||
!*
pp_block
)
if
(
!
pp_block
||
!*
pp_block
)
return
NULL
;
return
NULL
;
...
@@ -327,7 +327,8 @@ static void *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
...
@@ -327,7 +327,8 @@ static void *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
/* Copy the whole frame into the buffer. When we reach this point
/* Copy the whole frame into the buffer. When we reach this point
* we already know we have enough data available. */
* we already know we have enough data available. */
block_GetBytes
(
&
p_sys
->
bytestream
,
p_buf
,
p_sys
->
i_frame_size
);
block_GetBytes
(
&
p_sys
->
bytestream
,
p_buf
,
__MIN
(
p_sys
->
i_frame_size
,
p_out_buffer
->
i_buffer
)
);
/* Make sure we don't reuse the same pts twice */
/* Make sure we don't reuse the same pts twice */
if
(
p_sys
->
i_pts
==
p_sys
->
bytestream
.
p_block
->
i_pts
)
if
(
p_sys
->
i_pts
==
p_sys
->
bytestream
.
p_block
->
i_pts
)
...
@@ -361,7 +362,7 @@ static void CloseCommon( vlc_object_t *p_this )
...
@@ -361,7 +362,7 @@ static void CloseCommon( vlc_object_t *p_this )
/*****************************************************************************
/*****************************************************************************
* GetOutBuffer:
* GetOutBuffer:
*****************************************************************************/
*****************************************************************************/
static
uint8_t
*
GetOutBuffer
(
decoder_t
*
p_dec
,
void
**
pp_out_buffer
)
static
uint8_t
*
GetOutBuffer
(
decoder_t
*
p_dec
,
block_t
**
pp_out_buffer
)
{
{
decoder_sys_t
*
p_sys
=
p_dec
->
p_sys
;
decoder_sys_t
*
p_sys
=
p_dec
->
p_sys
;
uint8_t
*
p_buf
;
uint8_t
*
p_buf
;
...
...
modules/codec/mpeg_audio.c
View file @
b51e492c
...
@@ -35,6 +35,7 @@
...
@@ -35,6 +35,7 @@
#include <vlc_plugin.h>
#include <vlc_plugin.h>
#include <vlc_codec.h>
#include <vlc_codec.h>
#include <vlc_aout.h>
#include <vlc_aout.h>
#include <assert.h>
#include <vlc_block_helper.h>
#include <vlc_block_helper.h>
...
@@ -95,7 +96,7 @@ static int OpenPacketizer( vlc_object_t * );
...
@@ -95,7 +96,7 @@ static int OpenPacketizer( vlc_object_t * );
static
void
CloseDecoder
(
vlc_object_t
*
);
static
void
CloseDecoder
(
vlc_object_t
*
);
static
void
*
DecodeBlock
(
decoder_t
*
,
block_t
**
);
static
void
*
DecodeBlock
(
decoder_t
*
,
block_t
**
);
static
uint8_t
*
GetOutBuffer
(
decoder_t
*
,
void
**
);
static
uint8_t
*
GetOutBuffer
(
decoder_t
*
,
block_t
**
);
static
aout_buffer_t
*
GetAoutBuffer
(
decoder_t
*
);
static
aout_buffer_t
*
GetAoutBuffer
(
decoder_t
*
);
static
block_t
*
GetSoutBuffer
(
decoder_t
*
);
static
block_t
*
GetSoutBuffer
(
decoder_t
*
);
...
@@ -200,7 +201,7 @@ static void *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
...
@@ -200,7 +201,7 @@ static void *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
uint8_t
p_header
[
MAD_BUFFER_GUARD
];
uint8_t
p_header
[
MAD_BUFFER_GUARD
];
uint32_t
i_header
;
uint32_t
i_header
;
uint8_t
*
p_buf
;
uint8_t
*
p_buf
;
void
*
p_out_buffer
;
block_t
*
p_out_buffer
;
if
(
!
pp_block
||
!*
pp_block
)
return
NULL
;
if
(
!
pp_block
||
!*
pp_block
)
return
NULL
;
...
@@ -460,11 +461,13 @@ static void *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
...
@@ -460,11 +461,13 @@ static void *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
/* Copy the whole frame into the buffer. When we reach this point
/* Copy the whole frame into the buffer. When we reach this point
* we already know we have enough data available. */
* we already know we have enough data available. */
block_GetBytes
(
&
p_sys
->
bytestream
,
p_buf
,
p_sys
->
i_frame_size
);
block_GetBytes
(
&
p_sys
->
bytestream
,
p_buf
,
__MIN
(
(
unsigned
)
p_sys
->
i_frame_size
,
p_out_buffer
->
i_buffer
)
);
/* Get beginning of next frame for libmad */
/* Get beginning of next frame for libmad */
if
(
!
p_sys
->
b_packetizer
)
if
(
!
p_sys
->
b_packetizer
)
{
{
assert
(
p_out_buffer
->
i_buffer
>=
(
unsigned
)
p_sys
->
i_frame_size
+
MAD_BUFFER_GUARD
);
memcpy
(
p_buf
+
p_sys
->
i_frame_size
,
memcpy
(
p_buf
+
p_sys
->
i_frame_size
,
p_header
,
MAD_BUFFER_GUARD
);
p_header
,
MAD_BUFFER_GUARD
);
}
}
...
@@ -488,7 +491,7 @@ static void *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
...
@@ -488,7 +491,7 @@ static void *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
/*****************************************************************************
/*****************************************************************************
* GetOutBuffer:
* GetOutBuffer:
*****************************************************************************/
*****************************************************************************/
static
uint8_t
*
GetOutBuffer
(
decoder_t
*
p_dec
,
void
**
pp_out_buffer
)
static
uint8_t
*
GetOutBuffer
(
decoder_t
*
p_dec
,
block_t
**
pp_out_buffer
)
{
{
decoder_sys_t
*
p_sys
=
p_dec
->
p_sys
;
decoder_sys_t
*
p_sys
=
p_dec
->
p_sys
;
uint8_t
*
p_buf
;
uint8_t
*
p_buf
;
...
@@ -549,7 +552,7 @@ static aout_buffer_t *GetAoutBuffer( decoder_t *p_dec )
...
@@ -549,7 +552,7 @@ static aout_buffer_t *GetAoutBuffer( decoder_t *p_dec )
p_sys
->
b_discontinuity
=
false
;
p_sys
->
b_discontinuity
=
false
;
/* Hack for libmad filter */
/* Hack for libmad filter */
p_buf
->
i_buffer
=
p_sys
->
i_frame_size
+
MAD_BUFFER_GUARD
;
p_buf
=
block_Realloc
(
p_buf
,
0
,
p_sys
->
i_frame_size
+
MAD_BUFFER_GUARD
)
;
return
p_buf
;
return
p_buf
;
}
}
...
...
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