In a c-code implementation is it possible to specify the offset and size when displaying video raw RGB. So far I cannot find documentation for this element. If you cannot specify the window location and size of this element. Is there another sink element? eg. dshowVideoSink The videoscale element could allow you to set the size. Is there any control over the window position and attributes such as disabling the window frame.
Please read an understand the basic tutorial 5[*] and focus your attention on the XOverlay interface. [*] http://docs.gstreamer.com/display/GstSDK/Basic+tutorial+5%3A+GUI+toolkit+integration
Thanks for the comment, does that mean this something like this should work? gst_x_overlay_set_window_handle (GST_X_OVERLAY (d3dvideosink1), hwnd1 ); gst_x_overlay_set_window_handle (GST_X_OVERLAY (d3dvideosink2), hwnd2 ); gst_x_overlay_set_window_handle (GST_X_OVERLAY (d3dvideosink3), hwnd3 ); gst_x_overlay_set_window_handle (GST_X_OVERLAY (d3dvideosink4), hwnd4 );
Yes, you can try to build the tutorial and see how it works.
Is there anything left to be done here?
ok, I will look at basic tutorial #5.
Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.