summaryrefslogtreecommitdiffstats
path: root/media/libstagefright/include
diff options
context:
space:
mode:
authorAndreas Huber <andih@google.com>2011-04-19 11:50:27 -0700
committerAndreas Huber <andih@google.com>2011-04-20 09:22:06 -0700
commitad0d9c9c39a24b7fbd94e935a5855c9025341929 (patch)
tree1757b447d0d0ecb2d5d275dbb0506d3140939abc /media/libstagefright/include
parent7bf8413f91fc072452f315a91618aeef2574d420 (diff)
downloadframeworks_av-ad0d9c9c39a24b7fbd94e935a5855c9025341929.zip
frameworks_av-ad0d9c9c39a24b7fbd94e935a5855c9025341929.tar.gz
frameworks_av-ad0d9c9c39a24b7fbd94e935a5855c9025341929.tar.bz2
Add extra headers specified in the media player's setDataSource call
to all http requests made by the http live implementation. Change-Id: I9dd78bb261bc678ea98c82009ca2634b74f3cd58 related-to-bug: 4315346
Diffstat (limited to 'media/libstagefright/include')
-rw-r--r--media/libstagefright/include/LiveSession.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/media/libstagefright/include/LiveSession.h b/media/libstagefright/include/LiveSession.h
index 2b5ea0e..99abe64 100644
--- a/media/libstagefright/include/LiveSession.h
+++ b/media/libstagefright/include/LiveSession.h
@@ -20,6 +20,8 @@
#include <media/stagefright/foundation/AHandler.h>
+#include <utils/String8.h>
+
namespace android {
struct ABuffer;
@@ -37,7 +39,10 @@ struct LiveSession : public AHandler {
sp<DataSource> getDataSource();
- void connect(const char *url);
+ void connect(
+ const char *url,
+ const KeyedVector<String8, String8> *headers = NULL);
+
void disconnect();
// Blocks until seek is complete.
@@ -78,6 +83,8 @@ private:
sp<HTTPBase> mHTTPDataSource;
AString mMasterURL;
+ KeyedVector<String8, String8> mExtraHeaders;
+
Vector<BandwidthItem> mBandwidthItems;
KeyedVector<AString, sp<ABuffer> > mAESKeyForURI;