diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | sys/xvimage/xvimagesink.c | 3 |
2 files changed, 7 insertions, 1 deletions
@@ -1,5 +1,10 @@ 2006-09-18 Stefan Kost <ensonic@users.sf.net> + * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support) + Give better warning message (add object and detail). + +2006-09-18 Stefan Kost <ensonic@users.sf.net> + * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support), (gst_xvimagesink_get_times): xvimage assumed that XV_COLORKEY can be set in RGB888 format (fixes diff --git a/sys/xvimage/xvimagesink.c b/sys/xvimage/xvimagesink.c index 30f80647..d72fbe7a 100644 --- a/sys/xvimage/xvimagesink.c +++ b/sys/xvimage/xvimagesink.c @@ -1206,7 +1206,8 @@ gst_xvimagesink_get_xv_support (GstXvImageSink * xvimagesink, ckey = (1 << 16) | (2 << 8) | 3; break; default: - GST_WARNING ("unsupported color depth"); + GST_WARNING_OBJECT (xvimagesink, "unsupported color depth %d", + xcontext->depth); break; } ckey = CLAMP (ckey, attr[i].min_value, attr[i].max_value); |