GNOME Bugzilla – Bug 638859
textoverlay: make misc. properties controllable
Last modified: 2011-01-07 00:07:26 UTC
This patch makes it so that silent, color, xpos, and ypos are contorllable parameters in the pango textoverlay. This lets you create a controller and effectively animate the position, color, and visibility of the textoverlay. I had to modify the Makefile.am for this module to add -lgstcontroller-$(GST_MAJORMINOR) to the LIBADD variable. I am not sure why I had to do this given other elements I looked at (like alpha) don't do it. Can someone tell me the proper way to to do this?
Did you forget to attach the patch by any chance?
Created attachment 177702 [details] [review] Patch
Thanks, fixed it up a bit (call gst_controller_init(), Makefile.am, etc.): commit b6ae6951747a7ae1f367dfacd94fb3a2c79eb54e Author: Tim-Philipp Müller <tim.muller@collabora.co.uk> Date: Thu Jan 6 23:08:34 2011 +0000 textoverlay: make text property controllable too Because we can, and because it's the most interesting one to control really, after xpos/ypos. commit e67417833164c0ddf27248047637efad8088a607 Author: Lane Brooks <dirjud@gmail.com> Date: Thu Jan 6 23:01:20 2011 +0000 textoverlay: make some properties controllable https://bugzilla.gnome.org/show_bug.cgi?id=638859 > I had to modify the Makefile.am for this module to add > -lgstcontroller-$(GST_MAJORMINOR) to the LIBADD variable. I am not sure why I > had to do this given other elements I looked at (like alpha) don't do it. Can > someone tell me the proper way to to do this? There's GST_CONTROLLER_{LIBS,CFLAGS} which is also what alpha/Makefile.am uses.