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

[#2366] Clean up debug

parent d5d9b35a
No related branches found
No related tags found
No related merge requests found
...@@ -132,7 +132,7 @@ codec_set_prefered_order(guint index) ...@@ -132,7 +132,7 @@ codec_set_prefered_order(guint index)
void void
codec_list_move_codec_up(guint index) 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) if(index != 0)
{ {
gpointer codec = g_queue_pop_nth(codecQueue, index); gpointer codec = g_queue_pop_nth(codecQueue, index);
...@@ -152,7 +152,7 @@ codec_list_move_codec_up(guint index) ...@@ -152,7 +152,7 @@ codec_list_move_codec_up(guint index)
void void
codec_list_move_codec_down(guint index) 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) if(index != codecQueue->length)
{ {
gpointer codec = g_queue_pop_nth(codecQueue, index); 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