~ubuntu-branches/ubuntu/hardy/cheese/hardy-proposed

« back to all changes in this revision

Viewing changes to debian/patches/05fix_video_rec.patch

  • Committer: Bazaar Package Importer
  • Author(s): Aron Sisak
  • Date: 2007-08-26 10:40:22 UTC
  • Revision ID: james.westby@ubuntu.com-20070826104022-o6l3hya8dkskuxc6
Tags: 0.2.2-0ubuntu3
* debian/patches/05fix_video_rec.patch:
  - Video recording fix from the Darcs repository

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
diff -Nur cheese-0.2.2/ChangeLog cheese-0.2.2.new/ChangeLog
 
2
--- cheese-0.2.2/ChangeLog      2007-08-21 17:47:38.000000000 +0200
 
3
+++ cheese-0.2.2.new/ChangeLog  2007-08-26 10:38:58.809885526 +0200
 
4
@@ -2,6 +2,7 @@
 
5
 --------------------
 
6
 
 
7
 version 0.2.2:
 
8
+        - video recording did not work. fixed
 
9
        - workaround on a gstreamer-bug, which made the colors look wrong with
 
10
                v4l-devices, courtesy of Patryk Zawadzki
 
11
        - activate countdown by default
 
12
diff -Nur cheese-0.2.2/src/cheese-pipeline-video.c cheese-0.2.2.new/src/cheese-pipeline-video.c
 
13
--- cheese-0.2.2/src/cheese-pipeline-video.c    2007-08-20 18:29:45.000000000 +0200
 
14
+++ cheese-0.2.2.new/src/cheese-pipeline-video.c        2007-08-26 10:39:25.810523319 +0200
 
15
@@ -409,7 +409,7 @@
 
16
   gst_element_link (priv->queueaudio, priv->audioconvert);
 
17
   gst_element_link (priv->audioconvert, priv->vorbisenc);
 
18
 
 
19
-  gst_element_link (priv->queuemovie, priv->oggmux);
 
20
+  gst_element_link (priv->theoraenc, priv->oggmux);
 
21
   gst_element_link (priv->vorbisenc, priv->oggmux);
 
22
   gst_element_link (priv->oggmux, priv->filesink);
 
23
 }