~noskcaj/ubuntu/trusty/tumbler/0.1.30

« back to all changes in this revision

Viewing changes to debian/patches/02_start-gst-pipeline.patch

  • Committer: Package Import Robot
  • Author(s): Yves-Alexis Perez, Lionel Le Folgoc, Yves-Alexis Perez
  • Date: 2012-02-05 21:03:17 UTC
  • mfrom: (4.1.2)
  • Revision ID: package-import@ubuntu.com-20120205210317-bnl5qa1pxpro64ih
Tags: 0.1.23-1
[ Lionel Le Folgoc ]
* New upstream release:
  - fix crashes in the pixbuf thumbnailer.                        lp: #804921
* debian/control: build-depends on libgsf-1-dev and libopenrawgnome-dev to
  enable the new thumbnailers.
* debian/copyright: fix EOLs.
* Add a new binary package, tumbler-plugins-extra, to ship plugins using
  libraries not present in the default xfce desktop (openraw, gsf), and let
  tumbler suggest it.
* debian/patches:
  - 02_start-gst-pipeline.patch: dropped, applied upstream.
  - 01_fix-link-lm.patch: refreshed for the new plugins.
* debian/libtumbler-1-dev.install: updated, .a files aren't created anymore.

[ Yves-Alexis Perez ]
* debian/watch updated for new tumbler location.
* debian/control:
  - update debhelper build-dep to 9 now that it's released.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
From aab140d868c1ebedbb04bbd65deddf94dc21787b Mon Sep 17 00:00:00 2001
2
 
From: Jannis Pohlmann <jannis@xfce.org>
3
 
Date: Mon, 26 Sep 2011 17:28:51 +0000
4
 
Subject: Fix generation of video images by starting the pipeline (bug #7996).
5
 
 
6
 
Patch provided by Sam Thursfield<ssssam@gmail.com>.
7
 
---
8
 
diff --git a/plugins/gst-thumbnailer/gst-helper.c b/plugins/gst-thumbnailer/gst-helper.c
9
 
index b8a29ab..dead043 100644
10
 
--- a/plugins/gst-thumbnailer/gst-helper.c
11
 
+++ b/plugins/gst-thumbnailer/gst-helper.c
12
 
@@ -154,6 +154,8 @@ gst_helper_convert_buffer_to_pixbuf (GstBuffer    *buffer,
13
 
 
14
 
   bus = gst_element_get_bus (GST_ELEMENT (pipeline));
15
 
 
16
 
+  gst_element_set_state (GST_ELEMENT (pipeline), GST_STATE_PLAYING);
17
 
+
18
 
   i = 0;
19
 
   msg = NULL;
20
 
   while (msg == NULL && i < 5)
21
 
--
22
 
cgit