Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
4k
Issue boards
Milestones
Code
Merge requests
451
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC
Commits
72d3ebd5
Commit
72d3ebd5
authored
5 years ago
by
Thomas Guillem
Browse files
Options
Downloads
Patches
Plain Diff
input: remove unused input_resource_ResetAout() function
parent
88e9f04f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
include/vlc_decoder.h
+0
-5
0 additions, 5 deletions
include/vlc_decoder.h
src/input/resource.c
+0
-16
0 additions, 16 deletions
src/input/resource.c
src/libvlccore.sym
+0
-1
0 additions, 1 deletion
src/libvlccore.sym
with
0 additions
and
22 deletions
include/vlc_decoder.h
+
0
−
5
View file @
72d3ebd5
...
...
@@ -80,10 +80,5 @@ VLC_API audio_output_t *input_resource_GetAout( input_resource_t * );
*/
VLC_API
void
input_resource_PutAout
(
input_resource_t
*
,
audio_output_t
*
);
/**
* Prevents the existing audio output (if any) from being recycled.
*/
VLC_API
void
input_resource_ResetAout
(
input_resource_t
*
);
/** @} */
#endif
This diff is collapsed.
Click to expand it.
src/input/resource.c
+
0
−
16
View file @
72d3ebd5
...
...
@@ -270,22 +270,6 @@ audio_output_t *input_resource_HoldAout( input_resource_t *p_resource )
return
p_aout
;
}
void
input_resource_ResetAout
(
input_resource_t
*
p_resource
)
{
audio_output_t
*
p_aout
=
NULL
;
vlc_mutex_lock
(
&
p_resource
->
lock_hold
);
if
(
!
p_resource
->
b_aout_busy
)
p_aout
=
p_resource
->
p_aout
;
p_resource
->
p_aout
=
NULL
;
p_resource
->
b_aout_busy
=
false
;
vlc_mutex_unlock
(
&
p_resource
->
lock_hold
);
if
(
p_aout
!=
NULL
)
aout_Destroy
(
p_aout
);
}
/* Common */
input_resource_t
*
input_resource_New
(
vlc_object_t
*
p_parent
)
{
...
...
This diff is collapsed.
Click to expand it.
src/libvlccore.sym
+
0
−
1
View file @
72d3ebd5
...
...
@@ -212,7 +212,6 @@ input_resource_TerminateVout
input_resource_GetAout
input_resource_HoldAout
input_resource_PutAout
input_resource_ResetAout
vlc_readdir_helper_init
vlc_readdir_helper_finish
vlc_readdir_helper_additem
...
...
This diff is collapsed.
Click to expand it.
Thomas Guillem
@tguillem
mentioned in commit
a64695dd
·
4 years ago
mentioned in commit
a64695dd
mentioned in commit a64695dd92954bd7ff1d62852b28d5d54bb3d002
Toggle commit list
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment