Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
05fea708
Commit
05fea708
authored
Jan 28, 2003
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ./modules/audio_output/esd.c: fixed a stack space leak (Closes: #113).
parent
b2940c86
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
50 additions
and
38 deletions
+50
-38
modules/audio_output/esd.c
modules/audio_output/esd.c
+50
-38
No files found.
modules/audio_output/esd.c
View file @
05fea708
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* esd.c : EsounD module
* esd.c : EsounD module
*****************************************************************************
*****************************************************************************
* Copyright (C) 2000, 2001 VideoLAN
* Copyright (C) 2000, 2001 VideoLAN
* $Id: esd.c,v 1.1
5 2002/11/15 17:17:29 gbazin
Exp $
* $Id: esd.c,v 1.1
6 2003/01/28 03:46:22 sam
Exp $
*
*
* Authors: Samuel Hocevar <sam@zoy.org>
* Authors: Samuel Hocevar <sam@zoy.org>
*
*
...
@@ -57,6 +57,7 @@ static int Open ( vlc_object_t * );
...
@@ -57,6 +57,7 @@ static int Open ( vlc_object_t * );
static
void
Close
(
vlc_object_t
*
);
static
void
Close
(
vlc_object_t
*
);
static
void
Play
(
aout_instance_t
*
);
static
void
Play
(
aout_instance_t
*
);
static
int
ESDThread
(
aout_instance_t
*
);
static
int
ESDThread
(
aout_instance_t
*
);
static
void
ESDLoop
(
aout_instance_t
*
);
/*****************************************************************************
/*****************************************************************************
* Module descriptor
* Module descriptor
...
@@ -120,7 +121,7 @@ static int Open( vlc_object_t *p_this )
...
@@ -120,7 +121,7 @@ static int Open( vlc_object_t *p_this )
p_aout
->
output
.
output
.
i_rate
,
NULL
,
"vlc"
);
p_aout
->
output
.
output
.
i_rate
,
NULL
,
"vlc"
);
if
(
p_sys
->
i_fd
<
0
)
if
(
p_sys
->
i_fd
<
0
)
{
{
msg_Err
(
p_aout
,
"cannot open esound socket (format 0x%08x at %
l
d Hz)"
,
msg_Err
(
p_aout
,
"cannot open esound socket (format 0x%08x at %d Hz)"
,
p_sys
->
esd_format
,
p_aout
->
output
.
output
.
i_rate
);
p_sys
->
esd_format
,
p_aout
->
output
.
output
.
i_rate
);
free
(
p_sys
);
free
(
p_sys
);
return
-
1
;
return
-
1
;
...
@@ -179,13 +180,27 @@ static void Close( vlc_object_t *p_this )
...
@@ -179,13 +180,27 @@ static void Close( vlc_object_t *p_this )
*****************************************************************************/
*****************************************************************************/
static
int
ESDThread
(
aout_instance_t
*
p_aout
)
static
int
ESDThread
(
aout_instance_t
*
p_aout
)
{
{
struct
aout_sys_t
*
p_sys
=
p_aout
->
output
.
p_sys
;
while
(
!
p_aout
->
b_die
)
while
(
!
p_aout
->
b_die
)
{
{
ESDLoop
(
p_aout
);
}
return
0
;
}
/*****************************************************************************
* ESDLoop: ESDThread's inner loop
*****************************************************************************
* This is a separate function because it makes use of alloca() which makes
* use of the caller's stack frame, which means we need to return after each
* iteration.
*****************************************************************************/
static
void
ESDLoop
(
aout_instance_t
*
p_aout
)
{
struct
aout_sys_t
*
p_sys
=
p_aout
->
output
.
p_sys
;
aout_buffer_t
*
p_buffer
;
aout_buffer_t
*
p_buffer
;
int
i_tmp
,
i_size
;
int
i_tmp
,
i_size
;
byte_t
*
p_bytes
;
byte_t
*
p_bytes
=
NULL
;
/* Get the presentation date of the next write() operation. It
/* Get the presentation date of the next write() operation. It
* is equal to the current date + buffered samples + esd latency */
* is equal to the current date + buffered samples + esd latency */
...
@@ -217,9 +232,6 @@ static int ESDThread( aout_instance_t * p_aout )
...
@@ -217,9 +232,6 @@ static int ESDThread( aout_instance_t * p_aout )
{
{
aout_BufferFree
(
p_buffer
);
aout_BufferFree
(
p_buffer
);
}
}
}
return
0
;
}
}
#if 0
#if 0
...
...
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