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

[#2366] Clean up debug

parent d5d9b35a
Branches
Tags
No related merge requests found
......@@ -132,7 +132,7 @@ codec_set_prefered_order(guint index)
void
codec_list_move_codec_up(guint index)
{
printf("Codec list Size: %i \n",codec_list_get_size());
DEBUG("Codec list Size: %i \n",codec_list_get_size());
if(index != 0)
{
gpointer codec = g_queue_pop_nth(codecQueue, index);
......@@ -152,7 +152,7 @@ codec_list_move_codec_up(guint index)
void
codec_list_move_codec_down(guint index)
{
printf("Codec list Size: %i \n",codec_list_get_size());
DEBUG("Codec list Size: %i \n",codec_list_get_size());
if(index != codecQueue->length)
{
gpointer codec = g_queue_pop_nth(codecQueue, index);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment