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
0bf3bdae
Commit
0bf3bdae
authored
Jan 04, 2003
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* src/audio_output/output.c: don't forget to free the audio buffer when we are trashing it.
parent
aef03ba6
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
src/audio_output/output.c
src/audio_output/output.c
+3
-2
No files found.
src/audio_output/output.c
View file @
0bf3bdae
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* output.c : internal management of output streams for the audio output
* output.c : internal management of output streams for the audio output
*****************************************************************************
*****************************************************************************
* Copyright (C) 2002 VideoLAN
* Copyright (C) 2002 VideoLAN
* $Id: output.c,v 1.2
7 2002/12/07 23:50:30 massiot
Exp $
* $Id: output.c,v 1.2
8 2003/01/04 16:27:49 gbazin
Exp $
*
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
* Authors: Christophe Massiot <massiot@via.ecp.fr>
*
*
...
@@ -243,9 +243,10 @@ aout_buffer_t * aout_OutputNextBuffer( aout_instance_t * p_aout,
...
@@ -243,9 +243,10 @@ aout_buffer_t * aout_OutputNextBuffer( aout_instance_t * p_aout,
"trashing "
I64Fd
"us"
,
mdate
()
-
p_buffer
->
start_date
,
"trashing "
I64Fd
"us"
,
mdate
()
-
p_buffer
->
start_date
,
p_buffer
->
end_date
-
p_buffer
->
start_date
);
p_buffer
->
end_date
-
p_buffer
->
start_date
);
p_buffer
=
p_buffer
->
p_next
;
p_buffer
=
p_buffer
->
p_next
;
aout_BufferFree
(
p_aout
->
output
.
fifo
.
p_first
);
p_aout
->
output
.
fifo
.
p_first
=
p_buffer
;
}
}
p_aout
->
output
.
fifo
.
p_first
=
p_buffer
;
if
(
p_buffer
==
NULL
)
if
(
p_buffer
==
NULL
)
{
{
p_aout
->
output
.
fifo
.
pp_last
=
&
p_aout
->
output
.
fifo
.
p_first
;
p_aout
->
output
.
fifo
.
pp_last
=
&
p_aout
->
output
.
fifo
.
p_first
;
...
...
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