summaryrefslogtreecommitdiffstats
path: root/AirPlayService.py
diff options
context:
space:
mode:
authorGravatar Martin Szulecki2011-04-07 15:12:37 +0200
committerGravatar Martin Szulecki2011-04-07 15:12:37 +0200
commit9d466e4852da547d2da83486c051af61eecd12ad (patch)
tree556a583797f0a83f50586cf6f85a66a70807f9b0 /AirPlayService.py
parentec94bfb4efe572f1bf252eff0e428f5a5e728ffa (diff)
downloadtotem-plugin-airplay-9d466e4852da547d2da83486c051af61eecd12ad.tar.gz
totem-plugin-airplay-9d466e4852da547d2da83486c051af61eecd12ad.tar.bz2
Define server_info, playback_info and slideshow_features requests of iOS 4.3+
Diffstat (limited to 'AirPlayService.py')
-rw-r--r--AirPlayService.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/AirPlayService.py b/AirPlayService.py
index 925b4e0..5525712 100644
--- a/AirPlayService.py
+++ b/AirPlayService.py
@@ -155,6 +155,12 @@ class AirPlayProtocolHandler(asyncore.dispatcher_with_send):
155 def set_scrub(self, position): 155 def set_scrub(self, position):
156 return False 156 return False
157 157
158 def server_info(self):
159 return False
160
161 def playback_info(self):
162 return False
163
158 def play(self, location, position): 164 def play(self, location, position):
159 return False 165 return False
160 166
@@ -164,6 +170,9 @@ class AirPlayProtocolHandler(asyncore.dispatcher_with_send):
164 def reverse(self, info): 170 def reverse(self, info):
165 return True 171 return True
166 172
173 def slideshow_features(self):
174 return False
175
167 def photo(self, data, transition): 176 def photo(self, data, transition):
168 return False 177 return False
169 178