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
528d049a
Commit
528d049a
authored
Mar 24, 2009
by
Rémi Denis-Courmont
Committed by
Rémi Denis-Courmont
Mar 31, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Useless parameter
parent
68fee037
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/audio_output/dec.c
src/audio_output/dec.c
+2
-2
No files found.
src/audio_output/dec.c
View file @
528d049a
...
...
@@ -42,7 +42,7 @@
/*****************************************************************************
* aout_DecNew : create a decoder
*****************************************************************************/
static
aout_input_t
*
DecNew
(
vlc_object_t
*
p_this
,
aout_instance_t
*
p_aout
,
static
aout_input_t
*
DecNew
(
aout_instance_t
*
p_aout
,
audio_sample_format_t
*
p_format
,
const
audio_replay_gain_t
*
p_replay_gain
,
const
aout_request_vout_t
*
p_request_vout
)
...
...
@@ -183,7 +183,7 @@ aout_input_t * __aout_DecNew( vlc_object_t * p_this,
*
pp_aout
=
p_aout
;
}
return
DecNew
(
p_
this
,
p_
aout
,
p_format
,
p_replay_gain
,
p_request_video
);
return
DecNew
(
p_aout
,
p_format
,
p_replay_gain
,
p_request_video
);
}
/*****************************************************************************
...
...
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