summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRonald S. Bultje <rbultje@ronald.bitfreak.net>2003-07-11 06:04:23 +0000
committerRonald S. Bultje <rbultje@ronald.bitfreak.net>2003-07-11 06:04:23 +0000
commit41c1c8f56aab9330a1243319a959549f44cac55a (patch)
treee5050b5818c8de9d984f112c405a4c0b038a3986
parent8242fc6938184d462c9ba380721f7f53a49b063f (diff)
downloadgst-plugins-bad-41c1c8f56aab9330a1243319a959549f44cac55a.tar.gz
gst-plugins-bad-41c1c8f56aab9330a1243319a959549f44cac55a.tar.bz2
gst-plugins-bad-41c1c8f56aab9330a1243319a959549f44cac55a.zip
Silence and fix typefinding
Original commit message from CVS: Silence and fix typefinding
-rw-r--r--gst/flx/gstflxdec.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gst/flx/gstflxdec.c b/gst/flx/gstflxdec.c
index 67e7d837..c20327a7 100644
--- a/gst/flx/gstflxdec.c
+++ b/gst/flx/gstflxdec.c
@@ -118,7 +118,7 @@ flxdec_type_find (GstBuffer *buf, gpointer private)
guchar *data = GST_BUFFER_DATA(buf);
GstCaps *new;
- if(GST_BUFFER_SIZE(buf) < 134){
+ if (GST_BUFFER_SIZE(buf) < 134){
return NULL;
}
@@ -127,8 +127,8 @@ flxdec_type_find (GstBuffer *buf, gpointer private)
|| data[4] == 0x30 || data[4] == 0x44) && data[5] == 0xaf) {
/* check the frame type of the first frame */
if ((data[132] == 0x00 || data[132] == 0xfa) && data[133] == 0xf1) {
- g_print("GstFlxDec: found supported flx format\n");
- new = gst_caps_new("flxdec_type_find","video/fli", NULL);
+ GST_DEBUG ("GstFlxDec: found supported flx format");
+ new = gst_caps_new("flxdec_type_find","video/x-fli", NULL);
return new;
}
}