Skip to content
Snippets Groups Projects
Commit ae80b534 authored by Alexandre Savard's avatar Alexandre Savard
Browse files

[#2926] Code cleanup

parent 1991c71a
No related branches found
No related tags found
No related merge requests found
......@@ -1114,6 +1114,9 @@ void sflphone_fill_codec_list_per_account (account_t **account) {
// First clean the list
codec_list_clear (&codeclist);
if(!(*order))
ERROR("No codec list provided");
for (pl=order; *order; order++)
{
codec_t * cpy;
......
......@@ -57,14 +57,14 @@ static void stream_moved_callback(pa_stream *s UNUSED, void *userdata UNUSED)
static void playback_underflow_callback (pa_stream* s, void* userdata UNUSED)
{
_debug ("Audio: Buffer Underflow");
pa_stream_trigger (s, NULL, NULL);
// _debug ("Audio: Buffer Underflow");
// pa_stream_trigger (s, NULL, NULL);
}
static void playback_overflow_callback (pa_stream* s UNUSED, void* userdata UNUSED)
{
_debug ("Audio: Buffer OverFlow");
// _debug ("Audio: Buffer OverFlow");
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment