diff options
author | Ajit Khare <ajitk@codeaurora.org> | 2013-01-07 23:23:39 -0800 |
---|---|---|
committer | Steve Kondik <shade@chemlab.org> | 2013-02-19 11:04:28 -0800 |
commit | 739845fdb768402d6ad94f153b674aa7c044d703 (patch) | |
tree | ea050aae344ff69d689853fdb334a76460920741 /include/media | |
parent | 520ba656d8f8d4a2fd54a2c4fd98bab2a914cdd1 (diff) | |
download | frameworks_av-739845fdb768402d6ad94f153b674aa7c044d703.zip frameworks_av-739845fdb768402d6ad94f153b674aa7c044d703.tar.gz frameworks_av-739845fdb768402d6ad94f153b674aa7c044d703.tar.bz2 |
libmediaplayerservice: Add new player for DASH
- Add new player factory to support dash playback.
- DASH urls end with .mpd. When media player receives
an url with .mpd, it will use new factory to instantiate the player
to be used for supporting DASH playback.
Change-Id: I69e5a08fb2baf89d97b1e0711dbe52a8b1c39c29
Diffstat (limited to 'include/media')
-rw-r--r-- | include/media/MediaPlayerInterface.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/media/MediaPlayerInterface.h b/include/media/MediaPlayerInterface.h index a7570d6..00d53af 100644 --- a/include/media/MediaPlayerInterface.h +++ b/include/media/MediaPlayerInterface.h @@ -50,6 +50,7 @@ enum player_type { // The shared library with the test player is passed passed as an // argument to the 'test:' url in the setDataSource call. TEST_PLAYER = 5, + DASH_PLAYER = 6, }; |