Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Gautam Chitnis
web-ui-redesign
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