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
3690c9e2
Commit
3690c9e2
authored
Nov 11, 2012
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
aout: remove another write-only parameter
parent
7efec6d6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
5 deletions
+0
-5
src/audio_output/aout_internal.h
src/audio_output/aout_internal.h
+0
-3
src/audio_output/input.c
src/audio_output/input.c
+0
-2
No files found.
src/audio_output/aout_internal.h
View file @
3690c9e2
...
...
@@ -52,9 +52,6 @@ struct aout_input_t
int
i_resampling_type
;
int
i_resamp_start_drift
;
/* last rate from input */
int
i_last_input_rate
;
/* */
int
i_buffer_lost
;
};
...
...
src/audio_output/input.c
View file @
3690c9e2
...
...
@@ -32,7 +32,6 @@
#include <vlc_common.h>
#include <vlc_input.h>
#include <vlc_aout.h>
#include <vlc_filter.h>
#include <libvlc.h>
#include "aout_internal.h"
...
...
@@ -48,7 +47,6 @@ aout_input_t *aout_InputNew (void)
aout_input_t
*
p_input
=
xmalloc
(
sizeof
(
*
p_input
));
p_input
->
i_resampling_type
=
AOUT_RESAMPLING_NONE
;
p_input
->
i_last_input_rate
=
INPUT_RATE_DEFAULT
;
p_input
->
i_buffer_lost
=
0
;
return
p_input
;
}
...
...
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