Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
984533a2
Commit
984533a2
authored
Jan 22, 2012
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
opensles: Clear() -> rename
parent
d8ea040a
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
modules/audio_output/opensles_android.c
modules/audio_output/opensles_android.c
+3
-3
No files found.
modules/audio_output/opensles_android.c
View file @
984533a2
...
...
@@ -104,7 +104,7 @@ vlc_module_end ()
goto error; \
}
static
void
Clea
r
(
aout_sys_t
*
p_sys
)
static
void
Clea
n
(
aout_sys_t
*
p_sys
)
{
// Destroy buffer queue audio player object
// and invalidate all associated interfaces
...
...
@@ -306,7 +306,7 @@ static int Open( vlc_object_t *p_this )
return
VLC_SUCCESS
;
error:
Clea
r
(
p_sys
);
Clea
n
(
p_sys
);
return
VLC_EGENERIC
;
}
...
...
@@ -321,6 +321,6 @@ static void Close( vlc_object_t *p_this )
(
*
p_sys
->
playerPlay
)
->
SetPlayState
(
p_sys
->
playerPlay
,
SL_PLAYSTATE_STOPPED
);
//Flush remaining buffers if any.
(
*
p_sys
->
playerBufferQueue
)
->
Clear
(
p_sys
->
playerBufferQueue
);
Clea
r
(
p_sys
);
Clea
n
(
p_sys
);
}
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