Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Gautam Chitnis
web-ui-redesign
Commits
440388e0
Commit
440388e0
authored
Jul 12, 2006
by
Sam Hocevar
Browse files
* src/audio_output/common.c: added error message upon invalid initialisation.
parent
9fa56982
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/audio_output/common.c
View file @
440388e0
...
...
@@ -424,6 +424,11 @@ void aout_FifoDestroy( aout_instance_t * p_aout, aout_fifo_t * p_fifo )
*****************************************************************************/
void
aout_DateInit
(
audio_date_t
*
p_date
,
uint32_t
i_divider
)
{
if
(
i_divider
==
0
)
{
msg_Err
(
p_aout
,
"initialising date with zero divider"
);
}
p_date
->
date
=
0
;
p_date
->
i_divider
=
i_divider
;
p_date
->
i_remainder
=
0
;
...
...
Write
Preview
Supports
Markdown
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