diff options
author | Andreas Huber <andih@google.com> | 2012-08-30 15:12:29 -0700 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2012-08-30 15:12:30 -0700 |
commit | 5dcc2c988eefba1049fe64172bc5fc7e6ee27c8b (patch) | |
tree | 843fcb9a1f79415d00cec48213dbf75b69b73e7a /include | |
parent | b9cba9b731195d4387ee21b7e9ba1137a3cfda68 (diff) | |
parent | bcf09f8c995221e75c7cd328f25c7cc6d2b5f7c9 (diff) | |
download | frameworks_av-5dcc2c988eefba1049fe64172bc5fc7e6ee27c8b.zip frameworks_av-5dcc2c988eefba1049fe64172bc5fc7e6ee27c8b.tar.gz frameworks_av-5dcc2c988eefba1049fe64172bc5fc7e6ee27c8b.tar.bz2 |
Merge "Only run the wifi display RTSP server on demand, and only on the wifi direct" into jb-mr1-dev
Diffstat (limited to 'include')
-rw-r--r-- | include/media/IMediaPlayerService.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/media/IMediaPlayerService.h b/include/media/IMediaPlayerService.h index dbcdf92..172975c 100644 --- a/include/media/IMediaPlayerService.h +++ b/include/media/IMediaPlayerService.h @@ -50,7 +50,11 @@ public: virtual sp<IOMX> getOMX() = 0; virtual sp<ICrypto> makeCrypto() = 0; - virtual status_t enableRemoteDisplay(bool enable) = 0; + // If iface == NULL, disable remote display, otherwise + // iface should be of the form "x.x.x.x:y", i.e. ip address + // of the local interface to bind to and the port number + // to listen on. + virtual status_t enableRemoteDisplay(const char *iface) = 0; // codecs and audio devices usage tracking for the battery app enum BatteryDataBits { |