ext/dc1394/gstdc1394.c: Change a g_print to a GST_DEBUG message.

Original commit message from CVS:
* ext/dc1394/gstdc1394.c: (gst_dc1394_set_caps_color):
Change a g_print to a GST_DEBUG message.
This commit is contained in:
Jan Schmidt 2007-06-29 14:11:24 +00:00
parent 947df9b38d
commit ddf42d0772
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2007-06-29 Jan Schmidt <thaytan@mad.scientist.com>
* ext/dc1394/gstdc1394.c: (gst_dc1394_set_caps_color):
Change a g_print to a GST_DEBUG message.
2007-06-29 Jan Schmidt <thaytan@mad.scientist.com>
* configure.ac:

View file

@ -659,8 +659,9 @@ gst_dc1394_set_caps_color (GstStructure * gs, gint mc)
// there is no fourcc for this format
break;
default:
GST_DEBUG ("Ignoring unsupported color format %d", mc);
ret = FALSE;
printf ("We should never get here; invalid color mode!!\n");
break;
}
return ret;
}