[Pkg-telepathy-commits] ./packages/unstable/telepathy-stream-engine r33: * debian/patches/00_scale_videosrc.patch

Sjoerd Simons sjoerd at luon.net
Fri Feb 15 23:18:49 UTC 2008


------------------------------------------------------------
revno: 33
committer: Sjoerd Simons <sjoerd at luon.net>
branch nick: telepathy-stream-engine
timestamp: Sat 2008-02-16 00:18:49 +0100
message:
  * debian/patches/00_scale_videosrc.patch
    - Added. Add a videoscale element in the video src pipeline. Allows
    stream-engine to support camera's that don't support CIF.
added:
  patches/
  patches/00_scale_videosrc.patch
modified:
  changelog
  rules
-------------- next part --------------
=== modified file 'changelog'
--- a/changelog	2007-09-28 12:20:39 +0000
+++ b/changelog	2008-02-15 23:18:49 +0000
@@ -1,3 +1,11 @@
+telepathy-stream-engine (0.4.0-2) UNRELEASED; urgency=low
+
+  * debian/patches/00_scale_videosrc.patch
+    - Added. Add a videoscale element in the video src pipeline. Allows
+    stream-engine to support camera's that don't support CIF.
+
+ -- Sjoerd Simons <sjoerd at debian.org>  Sat, 16 Feb 2008 00:17:02 +0100
+
 telepathy-stream-engine (0.4.0-1) unstable; urgency=low
 
   [ Laurent Bigonville ]

=== added directory 'patches'
=== added file 'patches/00_scale_videosrc.patch'
--- a/patches/00_scale_videosrc.patch	1970-01-01 00:00:00 +0000
+++ b/patches/00_scale_videosrc.patch	2008-02-15 23:18:49 +0000
@@ -0,0 +1,19 @@
+diff -aur telepathy-stream-engine-0.4.0/src/tp-stream-engine.c telepathy-stream-engine-0.4.0.patched/src/tp-stream-engine.c
+--- telepathy-stream-engine-0.4.0/src/tp-stream-engine.c	2007-09-27 10:13:18.000000000 +0200
++++ telepathy-stream-engine-0.4.0.patched/src/tp-stream-engine.c	2008-02-16 00:15:56.000000000 +0100
+@@ -1331,6 +1331,15 @@
+       gst_element_link (videosrc, tmp);
+       videosrc = tmp;
+     }
++
++  tmp = gst_element_factory_make ("videoscale", NULL);
++  if (tmp != NULL)
++    {
++      g_debug ("linking videoscale");
++      gst_bin_add (GST_BIN (priv->pipeline), tmp);
++      gst_element_link (videosrc, tmp);
++      videosrc = tmp;
++    }
+ #endif
+ 
+   gst_element_link (videosrc, tee);

=== modified file 'rules'
--- a/rules	2007-05-03 16:56:14 +0000
+++ b/rules	2008-02-15 23:18:49 +0000
@@ -1,6 +1,7 @@
 #!/usr/bin/make -f
 
 include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/rules/simple-patchsys.mk
 include /usr/share/cdbs/1/class/autotools.mk
 
 # List any files which are not installed



More information about the Pkg-telepathy-commits mailing list