aboutsummaryrefslogtreecommitdiff
path: root/voctocore/experiments/videodisplay.py
diff options
context:
space:
mode:
authorMaZderMind <peter@mazdermind.de>2014-08-15 10:05:06 +0200
committerMaZderMind <peter@mazdermind.de>2014-08-15 10:05:06 +0200
commite98f8d9b23ca532f29526bdfa700c606ebfd39bf (patch)
tree3136c620f7949f14ac54bcad2a181469662b51fc /voctocore/experiments/videodisplay.py
parent298a7daa86ebd2e1f5f838fc3d4a4da7151cb6a8 (diff)
use RGBx, seems to be less cpu intense on the test machine (32bit alignemnt)
Diffstat (limited to 'voctocore/experiments/videodisplay.py')
-rw-r--r--voctocore/experiments/videodisplay.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/voctocore/experiments/videodisplay.py b/voctocore/experiments/videodisplay.py
index 57f8903..b8b7a86 100644
--- a/voctocore/experiments/videodisplay.py
+++ b/voctocore/experiments/videodisplay.py
@@ -39,7 +39,7 @@ class VideomixerWithDisplay(Gst.Bin):
self.q1.get_static_pad('src').link(self.firstpad)
self.q2.get_static_pad('src').link(self.secondpad)
- self.secondsrc.link_filtered(self.ident, Gst.Caps.from_string('video/x-raw,width=400,height=400,framerate=25/1,format=RGB'))
+ self.secondsrc.link_filtered(self.ident, Gst.Caps.from_string('video/x-raw,width=400,height=400,framerate=25/1,format=RGBx'))
self.ident.link(self.q2)
self.mixer.link(self.display)