diff options
author | Lajos Molnar <lajos@google.com> | 2014-08-07 15:18:35 -0700 |
---|---|---|
committer | Lajos Molnar <lajos@google.com> | 2014-08-07 17:40:13 -0700 |
commit | 1381d4b5c0385aec3741073e5998773b064c1fb0 (patch) | |
tree | 6087b737255d34703a90d1952d48bb97646e492a /include | |
parent | 60b1c0e79d12a1c70758bc8d060156924635f8ba (diff) | |
download | frameworks_av-1381d4b5c0385aec3741073e5998773b064c1fb0.zip frameworks_av-1381d4b5c0385aec3741073e5998773b064c1fb0.tar.gz frameworks_av-1381d4b5c0385aec3741073e5998773b064c1fb0.tar.bz2 |
media/playerservice: add getCodecList() to MediaPlayerService
Bug: 11990470
Change-Id: I8fa45946fd9b76f9b975fc59062819c57e6881ef
Diffstat (limited to 'include')
-rw-r--r-- | include/media/IMediaPlayerService.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/media/IMediaPlayerService.h b/include/media/IMediaPlayerService.h index 5b45376..d7e584a 100644 --- a/include/media/IMediaPlayerService.h +++ b/include/media/IMediaPlayerService.h @@ -34,6 +34,7 @@ namespace android { struct ICrypto; struct IDrm; struct IHDCP; +struct IMediaCodecList; struct IMediaHTTPService; class IMediaRecorder; class IOMX; @@ -65,6 +66,7 @@ public: virtual sp<ICrypto> makeCrypto() = 0; virtual sp<IDrm> makeDrm() = 0; virtual sp<IHDCP> makeHDCP(bool createEncryptionModule) = 0; + virtual sp<IMediaCodecList> getCodecList() const = 0; // Connects to a remote display. // 'iface' specifies the address of the local interface on which to listen for |