mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
Typo fix, s/XFree86/X11 and added doc blurb saying that it fixates to 25fps
Original commit message from CVS: 2006-04-07 Zaheer Abbas Merali <zaheerabbas at merali dot org> * ext/amrwb/amrwb-code/Makefile.am: * sys/ximagesrc/ximagesrc.c: (gst_ximagesrc_recalc), (gst_ximagesrc_create), (gst_ximagesrc_set_property): Typo fix, s/XFree86/X11 and added doc blurb saying that it fixates to 25fps
This commit is contained in:
parent
83e863d15c
commit
dce315f7b1
2 changed files with 14 additions and 5 deletions
|
@ -1,3 +1,11 @@
|
||||||
|
2006-04-07 Zaheer Abbas Merali <zaheerabbas at merali dot org>
|
||||||
|
|
||||||
|
* ext/amrwb/amrwb-code/Makefile.am:
|
||||||
|
* sys/ximagesrc/ximagesrc.c: (gst_ximagesrc_recalc),
|
||||||
|
(gst_ximagesrc_create), (gst_ximagesrc_set_property):
|
||||||
|
Typo fix, s/XFree86/X11 and added doc blurb saying that it fixates to
|
||||||
|
25fps
|
||||||
|
|
||||||
2006-04-07 Zaheer Abbas Merali <zaheerabbas at merali dot org>
|
2006-04-07 Zaheer Abbas Merali <zaheerabbas at merali dot org>
|
||||||
|
|
||||||
* tests/icles/ximagesrc-test.c: (main):
|
* tests/icles/ximagesrc-test.c: (main):
|
||||||
|
|
|
@ -25,7 +25,8 @@
|
||||||
* This element captures your X Display and creates raw RGB video. It uses
|
* This element captures your X Display and creates raw RGB video. It uses
|
||||||
* the XDamage extension if available to only capture areas of the screen that
|
* the XDamage extension if available to only capture areas of the screen that
|
||||||
* have changed since the last frame. It uses the XFixes extension if
|
* have changed since the last frame. It uses the XFixes extension if
|
||||||
* available to also capture your mouse pointer
|
* available to also capture your mouse pointer. By defaukt it will fixate to
|
||||||
|
* 25 frames per second..
|
||||||
* </para>
|
* </para>
|
||||||
* <title>Example pipelines</title>
|
* <title>Example pipelines</title>
|
||||||
* <para>
|
* <para>
|
||||||
|
@ -63,8 +64,8 @@ static GstElementDetails ximagesrc_details =
|
||||||
GST_ELEMENT_DETAILS ("Ximage video source",
|
GST_ELEMENT_DETAILS ("Ximage video source",
|
||||||
"Source/Video",
|
"Source/Video",
|
||||||
"Creates a screenshot video stream",
|
"Creates a screenshot video stream",
|
||||||
"Lutz Mueller <lutz@users.sourceforge.net>"
|
"Lutz Mueller <lutz@users.sourceforge.net>, "
|
||||||
"Jan Schmidt <thaytan@mad.scientist.com>"
|
"Jan Schmidt <thaytan@mad.scientist.com>, "
|
||||||
"Zaheer Merali <zaheerabbas at merali dot org>");
|
"Zaheer Merali <zaheerabbas at merali dot org>");
|
||||||
|
|
||||||
static GstStaticPadTemplate t =
|
static GstStaticPadTemplate t =
|
||||||
|
@ -236,7 +237,7 @@ gst_ximagesrc_recalc (GstXImageSrc * src)
|
||||||
if (!src->xcontext)
|
if (!src->xcontext)
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
||||||
/* Mayble later we can check the display hasn't changed size */
|
/* Maybe later we can check the display hasn't changed size */
|
||||||
/* We could use XQueryPointer to get only the current window. */
|
/* We could use XQueryPointer to get only the current window. */
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
@ -831,5 +832,5 @@ plugin_init (GstPlugin * plugin)
|
||||||
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
||||||
GST_VERSION_MINOR,
|
GST_VERSION_MINOR,
|
||||||
"ximagesrc",
|
"ximagesrc",
|
||||||
"XFree86 video input plugin based on standard Xlib calls",
|
"X11 video input plugin based on standard Xlib calls",
|
||||||
plugin_init, VERSION, GST_LICENSE, GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN)
|
plugin_init, VERSION, GST_LICENSE, GST_PACKAGE_NAME, GST_PACKAGE_ORIGIN)
|
||||||
|
|
Loading…
Reference in a new issue