diff options
author | Stefan Kost <ensonic@users.sourceforge.net> | 2006-09-18 15:00:51 +0000 |
---|---|---|
committer | Stefan Kost <ensonic@users.sourceforge.net> | 2006-09-18 15:00:51 +0000 |
commit | 820dc3a72dfbf9c62d226a556724732b0b223af6 (patch) | |
tree | 98e932724c523b1371bea10e975873933a3dc0a2 | |
parent | d8bba5d8c2063a5cef827dbb3f4cd5dc75cd3000 (diff) |
sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support)
Original commit message from CVS:
* sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support)
Give better warning message (add object and detail).
-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); |