summaryrefslogtreecommitdiff
path: root/src/YalpClients/EflClient/playlist.py
diff options
context:
space:
mode:
authorNicole Vreden <damba@mecka.net>2010-02-26 10:47:20 +0100
committerNicole Vreden <damba@mecka.net>2010-02-26 10:47:20 +0100
commitf71901fec98cb3bee745bd3d181995624cb2bf51 (patch)
tree814fffb815d252dc319f108611e1dbc0b93f49d2 /src/YalpClients/EflClient/playlist.py
parent92da4dde8a5b8e991aaa30efc80d82f3b9bfaed6 (diff)
EflClient: fix segfault
- gui didn't work on openmoko, due to ambigous double calls to init functions - fix edc to use video layer for display gui program - hard code ip of yalp server instead of localhost - remove some debug prints Signed-off-by: Manuel Traut <manut@mecka.net> Signed-off-by: Nicole Vreden <damba@mecka.net>
Diffstat (limited to 'src/YalpClients/EflClient/playlist.py')
-rwxr-xr-xsrc/YalpClients/EflClient/playlist.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/YalpClients/EflClient/playlist.py b/src/YalpClients/EflClient/playlist.py
index 234994f..03e88cc 100755
--- a/src/YalpClients/EflClient/playlist.py
+++ b/src/YalpClients/EflClient/playlist.py
@@ -17,7 +17,7 @@ class Selection(object):
def __init__(self, win, c):
self.win = win
self.c = c
- self.vid = emotion.Emotion(self.win.canvas, module_filename="gstreamer")
+ self.vid = emotion.Emotion(self.win.canvas, module_filename="xine")
self.add_button()
self.c.signal_callback_add("mouse,clicked,1", "medialist_buttonframe",
self.play_video)
@@ -35,7 +35,7 @@ class Selection(object):
def play_video(self, dummy, dumm, duemmer):
- ip = "127.0.0.1"
+ ip = "10.0.3.180"
port = 9993
info = YalpInterfaces.AccessInfo("huhu", "huhu", "xine", "openmoko",
YalpInterfaces.STREAM)