hi,
Tim Müller schrieb: > On Mon, 2008-01-14 at 23:43 -0800, [hidden email] wrote: > > Hi Stefan, > >> ... >> * gst/videomixer/Makefile.am: >> * gst/videomixer/videomixer.c: >> * gst/videomixer/videomixer.h: >> * gst/videomixer/videomixerpad.h: >> Split out header to fix warnings from the doc-build. >> >> http://freedesktop.org/cgi-bin/viewcvs.cgi/gstreamer/gst-plugins-good/gst/videomixer/Makefile.am.diff?r1=1.5&r2=1.6 >> http://freedesktop.org/cgi-bin/viewcvs.cgi/gstreamer/gst-plugins-good/gst/videomixer/videomixer.c.diff?r1=1.37&r2=1.38 >> http://freedesktop.org/cgi-bin/viewcvs.cgi/gstreamer/gst-plugins-good/gst/videomixer/videomixer.h?rev=1.1&content-type=text/vnd.viewcvs-markup >> http://freedesktop.org/cgi-bin/viewcvs.cgi/gstreamer/gst-plugins-good/gst/videomixer/videomixerpad.h?rev=1.1&content-type=text/vnd.viewcvs-markup > > Did you mean to commit those GST_PARAM_CONTROLLABLE bits? that shows that it even works. That will need to wait for the end of the freeze though. Stefan > > Cheers > -Tim > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > gstreamer-devel mailing list > [hidden email] > https://lists.sourceforge.net/lists/listinfo/gstreamer-devel #!/usr/bin/env python # -*- Mode: Python -*- # vi:si:et:sw=4:sts=4:ts=4 # videomixer-controller.py # (c) 2008 Stefan Kost <[hidden email]> # Test case for the GstController on videotestsrc and videomixer import pygst pygst.require('0.10') import gst import time def main(): pipeline = gst.Pipeline("videocontroller") src = gst.element_factory_make("videotestsrc", "src") mix = gst.element_factory_make("videomixer", "mix") conv = gst.element_factory_make("ffmpegcolorspace", "conv") sink = gst.element_factory_make("autovideosink", "sink") pipeline.add(src, mix, conv, sink) spad = src.get_static_pad('src') dpad = mix.get_request_pad('sink_%d') spad.link(dpad) mix.link(conv) conv.link(sink) control = gst.Controller(dpad, "xpos", "ypos") control.set_interpolation_mode("xpos", gst.INTERPOLATE_LINEAR) control.set_interpolation_mode("ypos", gst.INTERPOLATE_LINEAR) control.set("xpos", 0, 0) control.set("xpos", 5 * gst.SECOND, 200) control.set("ypos", 0, 0) control.set("ypos", 5 * gst.SECOND, 200) pipeline.set_state(gst.STATE_PLAYING) time.sleep(7) if __name__ == "__main__": main() ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ gstreamer-devel mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/gstreamer-devel |
On Wed, 2008-01-16 at 22:16 +0200, Stefan Kost wrote:
> > Did you mean to commit those GST_PARAM_CONTROLLABLE bits? > > yes and now there is also the missing gst_object_sync. Well, it would be great if you could next time (a) mention this in the ChangeLog then, (b) also commit the other bits without which the change doesn't make sense, and (c) preferably not commit it along with a bunch of unrelated doc fixes. Thanks! Cheers -Tim ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ gstreamer-devel mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/gstreamer-devel |
Hi,
Quoting Tim Müller <[hidden email]>: > On Wed, 2008-01-16 at 22:16 +0200, Stefan Kost wrote: > >> > Did you mean to commit those GST_PARAM_CONTROLLABLE bits? >> >> yes and now there is also the missing gst_object_sync. > > Well, it would be great if you could next time (a) mention this in the > ChangeLog then, (b) also commit the other bits without which the change > doesn't make sense, and (c) preferably not commit it along with a bunch > of unrelated doc fixes. Thanks! The doc fixes where the main plan. If I don't get disctracted for two full evening ressurecting my builds, I can better concentrate on committing parts of files (which is always painful). Stefan > > Cheers > -Tim > > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > gstreamer-devel mailing list > [hidden email] > https://lists.sourceforge.net/lists/listinfo/gstreamer-devel > ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ gstreamer-devel mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/gstreamer-devel |
Free forum by Nabble | Edit this page |