diff options
author | Jan Schmidt <thaytan@mad.scientist.com> | 2008-07-17 14:21:30 +0000 |
---|---|---|
committer | Jan Schmidt <thaytan@mad.scientist.com> | 2008-07-17 14:21:30 +0000 |
commit | 2b8f4868ee9cceed9fe6a037ba8dbce7795264b8 (patch) | |
tree | 27c7858cd767cb8dc1d7328bb6e93a4d639c41c7 /sys | |
parent | 6d641640bba89c4070bced561da937535a868129 (diff) |
sys/xvimage/xvimagesink.c: Oops - set the size of the image used for probing back to 1x1, for consistency with ximage...
Original commit message from CVS:
* sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls):
Oops - set the size of the image used for probing back to 1x1, for
consistency with ximagesink
Diffstat (limited to 'sys')
-rw-r--r-- | sys/xvimage/xvimagesink.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/xvimage/xvimagesink.c b/sys/xvimage/xvimagesink.c index acc5a8b0..df5c48b5 100644 --- a/sys/xvimage/xvimagesink.c +++ b/sys/xvimage/xvimagesink.c @@ -426,9 +426,9 @@ gst_xvimagesink_check_xshm_calls (GstXContext * xcontext) handler = XSetErrorHandler (gst_xvimagesink_handle_xerror); /* Trying to create a 1x1 picture */ - GST_DEBUG ("XvShmCreateImage of 100x100"); + GST_DEBUG ("XvShmCreateImage of 1x1"); xvimage = XvShmCreateImage (xcontext->disp, xcontext->xv_port_id, - xcontext->im_format, NULL, 100, 100, &SHMInfo); + xcontext->im_format, NULL, 1, 1, &SHMInfo); /* Might cause an error, sync to ensure it is noticed */ XSync (xcontext->disp, FALSE); |