summaryrefslogtreecommitdiffstats
path: root/media/libmediaplayerservice/FLACPlayer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'media/libmediaplayerservice/FLACPlayer.cpp')
-rw-r--r--media/libmediaplayerservice/FLACPlayer.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/media/libmediaplayerservice/FLACPlayer.cpp b/media/libmediaplayerservice/FLACPlayer.cpp
index 3773606..1f8e3b6 100644
--- a/media/libmediaplayerservice/FLACPlayer.cpp
+++ b/media/libmediaplayerservice/FLACPlayer.cpp
@@ -88,9 +88,9 @@ FLACPlayer::~FLACPlayer() {
release();
}
-status_t FLACPlayer::setDataSource(const char* path)
-{
- return setdatasource(path, -1, 0, 0x7ffffffffffffffLL); // intentionally less than LONG_MAX
+status_t FLACPlayer::setDataSource(
+ const char *uri, const KeyedVector<String8, String8> *headers) {
+ return setdatasource(uri, -1, 0, 0x7ffffffffffffffLL); // intentionally less than LONG_MAX
}
status_t FLACPlayer::setDataSource(int fd, int64_t offset, int64_t length)