summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
Diffstat (limited to 'sys')
-rw-r--r--sys/qcam/gstqcamsrc.c4
-rw-r--r--sys/vcd/vcdsrc.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/sys/qcam/gstqcamsrc.c b/sys/qcam/gstqcamsrc.c
index ea6a2c1a..689647bd 100644
--- a/sys/qcam/gstqcamsrc.c
+++ b/sys/qcam/gstqcamsrc.c
@@ -395,9 +395,9 @@ gst_qcamsrc_change_state (GstElement * element)
/* otherwise (READY or higher) we need to open the sound card */
} else {
if (!GST_FLAG_IS_SET (element, GST_QCAMSRC_OPEN)) {
- gst_info ("qcamsrc: opening\n");
+ GST_DEBUG ("opening");
if (!gst_qcamsrc_open (GST_QCAMSRC (element))) {
- gst_info ("qcamsrc: open failed\n");
+ GST_DEBUG ("open failed");
return GST_STATE_FAILURE;
}
}
diff --git a/sys/vcd/vcdsrc.c b/sys/vcd/vcdsrc.c
index cb6389b2..6dd3dad8 100644
--- a/sys/vcd/vcdsrc.c
+++ b/sys/vcd/vcdsrc.c
@@ -267,7 +267,7 @@ read_sector:
msf->cdmsf_sec0 = (offset / 75) % 60;
msf->cdmsf_min0 = (offset / (75 * 60));
- /*gst_info("msf is %d:%d:%d\n",msf->cdmsf_min0,msf->cdmsf_sec0, */
+ /*GST_INFO("msf is %d:%d:%d\n",msf->cdmsf_min0,msf->cdmsf_sec0, */
/* msf->cdmsf_frame0); */
if (ioctl (vcdsrc->fd, CDROMREADRAW, msf)) {