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
b083e1e9
Commit
b083e1e9
authored
Dec 04, 2005
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/audio_output/alsa.c: fix the leak in a nice way.
parent
1db9db8d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
8 deletions
+4
-8
modules/audio_output/alsa.c
modules/audio_output/alsa.c
+4
-8
No files found.
modules/audio_output/alsa.c
View file @
b083e1e9
...
...
@@ -326,8 +326,6 @@ static int Open( vlc_object_t *p_this )
return
VLC_EGENERIC
;
}
p_sys
->
p_status
=
(
snd_pcm_status_t
*
)
malloc
(
snd_pcm_status_sizeof
());
/* Choose the IEC device for S/PDIF output:
if the device is overriden by the user then it will be the one
otherwise we compute the default device based on the output format. */
...
...
@@ -376,7 +374,6 @@ static int Open( vlc_object_t *p_this )
if
(
var_Get
(
p_aout
,
"audio-device"
,
&
val
)
<
0
)
{
free
(
p_sys
->
p_status
);
free
(
p_sys
);
free
(
psz_device
);
return
VLC_EGENERIC
;
...
...
@@ -413,7 +410,6 @@ static int Open( vlc_object_t *p_this )
{
/* This should not happen ! */
msg_Err
(
p_aout
,
"internal: can't find audio-device (%i)"
,
val
.
i_int
);
free
(
p_sys
->
p_status
);
free
(
p_sys
);
free
(
psz_device
);
return
VLC_EGENERIC
;
...
...
@@ -431,7 +427,6 @@ static int Open( vlc_object_t *p_this )
{
msg_Err
(
p_aout
,
"cannot open ALSA device `%s' (%s)"
,
psz_iec_device
,
snd_strerror
(
i_snd_rc
)
);
free
(
p_sys
->
p_status
);
free
(
p_sys
);
free
(
psz_device
);
return
VLC_EGENERIC
;
...
...
@@ -474,7 +469,6 @@ static int Open( vlc_object_t *p_this )
{
msg_Err
(
p_aout
,
"cannot open ALSA device `%s' (%s)"
,
psz_device
,
snd_strerror
(
i_snd_rc
)
);
free
(
p_sys
->
p_status
);
free
(
p_sys
);
free
(
psz_device
);
return
VLC_EGENERIC
;
...
...
@@ -678,7 +672,6 @@ error:
#ifdef ALSA_DEBUG
snd_output_close
(
p_sys
->
p_snd_stderr
);
#endif
free
(
p_sys
->
p_status
);
free
(
p_sys
);
return
VLC_EGENERIC
;
}
...
...
@@ -733,7 +726,6 @@ static void Close( vlc_object_t *p_this )
snd_output_close
(
p_sys
->
p_snd_stderr
);
#endif
free
(
p_sys
->
p_status
);
free
(
p_sys
);
}
...
...
@@ -742,6 +734,9 @@ static void Close( vlc_object_t *p_this )
*****************************************************************************/
static
int
ALSAThread
(
aout_instance_t
*
p_aout
)
{
p_aout
->
output
.
p_sys
->
p_status
=
(
snd_pcm_status_t
*
)
malloc
(
snd_pcm_status_sizeof
());
/* Wait for the exact time to start playing (avoids resampling) */
vlc_mutex_lock
(
&
p_aout
->
output
.
p_sys
->
lock
);
if
(
!
p_aout
->
output
.
p_sys
->
start_date
)
...
...
@@ -756,6 +751,7 @@ static int ALSAThread( aout_instance_t * p_aout )
ALSAFill
(
p_aout
);
}
free
(
p_aout
->
output
.
p_sys
->
p_status
);
return
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