diff options
author | Martin Szulecki | 2011-04-07 15:12:37 +0200 |
---|---|---|
committer | Martin Szulecki | 2011-04-07 15:12:37 +0200 |
commit | 9d466e4852da547d2da83486c051af61eecd12ad (patch) | |
tree | 556a583797f0a83f50586cf6f85a66a70807f9b0 | |
parent | ec94bfb4efe572f1bf252eff0e428f5a5e728ffa (diff) | |
download | totem-plugin-airplay-9d466e4852da547d2da83486c051af61eecd12ad.tar.gz totem-plugin-airplay-9d466e4852da547d2da83486c051af61eecd12ad.tar.bz2 |
Define server_info, playback_info and slideshow_features requests of iOS 4.3+
-rw-r--r-- | AirPlayService.py | 9 |
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): def set_scrub(self, position): return False + def server_info(self): + return False + + def playback_info(self): + return False + def play(self, location, position): return False @@ -164,6 +170,9 @@ class AirPlayProtocolHandler(asyncore.dispatcher_with_send): def reverse(self, info): return True + def slideshow_features(self): + return False + def photo(self, data, transition): return False |