gnomemm r2065 - in gstreamermm/trunk: . examples/element_link examples/optiongroup gstreamer/src



Author: jaalburqu
Date: Thu Feb 19 02:12:23 2009
New Revision: 2065
URL: http://svn.gnome.org/viewvc/gnomemm?rev=2065&view=rev

Log:
Increased version.

Modified:
   gstreamermm/trunk/ChangeLog
   gstreamermm/trunk/NEWS
   gstreamermm/trunk/configure.ac
   gstreamermm/trunk/examples/element_link/   (props changed)
   gstreamermm/trunk/examples/optiongroup/   (props changed)
   gstreamermm/trunk/gstreamer/src/   (props changed)
   gstreamermm/trunk/gstreamer/src/interface.hg

Modified: gstreamermm/trunk/NEWS
==============================================================================
--- gstreamermm/trunk/NEWS	(original)
+++ gstreamermm/trunk/NEWS	Thu Feb 19 02:12:23 2009
@@ -1,3 +1,12 @@
+0.10.0 (unstable):
+
+* Interface
+  - Added virtual function supported_vfunc().
+* XOverlay
+  - Added virtual functions set_xwindow_id_vfunc(), expose_vfunc() and
+    handle_events_vfunc().
+* Fixed video embedding of media player example with above changes.
+
 0.9.9 (unstable):
 
 * Merged gstreamerbase branch into the gstreamer branch (everything that

Modified: gstreamermm/trunk/configure.ac
==============================================================================
--- gstreamermm/trunk/configure.ac	(original)
+++ gstreamermm/trunk/configure.ac	Thu Feb 19 02:12:23 2009
@@ -14,8 +14,8 @@
 
 #We use pushdef here because we can't use shell variables before AC_INIT, but we want to use a variable with AC_INIT:
 pushdef([GSTREAMERMM_MAJOR_VERSION],     [0])
-pushdef([GSTREAMERMM_MINOR_VERSION],     [9])
-pushdef([GSTREAMERMM_MICRO_VERSION],     [9])
+pushdef([GSTREAMERMM_MINOR_VERSION],     [10])
+pushdef([GSTREAMERMM_MICRO_VERSION],     [0])
 pushdef([GSTREAMERMM_EXTRA_VERSION],     [])
 pushdef([GSTREAMERMM_VERSION], GSTREAMERMM_MAJOR_VERSION.GSTREAMERMM_MINOR_VERSION.GSTREAMERMM_MICRO_VERSION[]GSTREAMERMM_EXTRA_VERSION)
 AC_INIT([gstreamermm], GSTREAMERMM_VERSION, [gtkmm-list gnome org])
@@ -127,7 +127,7 @@
 #########################################################################
 gstreamermm_min_glibmm_version=2.16.0
 gstreamermm_min_gtkmm_version=2.12.0
-gstreamermm_min_gst_version=0.10.21
+gstreamermm_min_gst_version=0.10.22
 gstreamermm_min_libxmlpp_version=2.14.0
 
 PKG_CHECK_MODULES(GSTREAMERMM, \

Modified: gstreamermm/trunk/gstreamer/src/interface.hg
==============================================================================
--- gstreamermm/trunk/gstreamer/src/interface.hg	(original)
+++ gstreamermm/trunk/gstreamer/src/interface.hg	Thu Feb 19 02:12:23 2009
@@ -27,8 +27,8 @@
 
 /** Core interface implemented by Gst::Element instances that
  * allows runtime querying of interface availability.
- * This provides interface functionality on a per-instance basis and not a per-class
- * basis, which is the case for GObject.
+ * This provides interface functionality on a per-instance basis and not a
+ * per-class basis, which is the case for GObject.
  * @ingroup GstInterfaces
  */
 class Interface : public Glib::Interface
@@ -42,7 +42,8 @@
    * See Gst::ElementInterfaced for more details.
    */
   template <class T_CastTo>
-  static Glib::RefPtr< Gst::ElementInterfaced<T_CastTo> > cast(const Glib::RefPtr<Gst::Element>& element);
+    static Glib::RefPtr< Gst::ElementInterfaced<T_CastTo> >
+    cast(const Glib::RefPtr<Gst::Element>& element);
 
   /** Virtual method to tell whether an interface is supported.
    */



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]