summaryrefslogtreecommitdiffstats
path: root/media/libstagefright/include/SDPLoader.h
diff options
context:
space:
mode:
Diffstat (limited to 'media/libstagefright/include/SDPLoader.h')
-rw-r--r--media/libstagefright/include/SDPLoader.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/media/libstagefright/include/SDPLoader.h b/media/libstagefright/include/SDPLoader.h
index ca59dc0..223bd92 100644
--- a/media/libstagefright/include/SDPLoader.h
+++ b/media/libstagefright/include/SDPLoader.h
@@ -25,6 +25,7 @@
namespace android {
struct HTTPBase;
+struct IMediaHTTPService;
struct SDPLoader : public AHandler {
enum Flags {
@@ -34,7 +35,12 @@ struct SDPLoader : public AHandler {
enum {
kWhatSDPLoaded = 'sdpl'
};
- SDPLoader(const sp<AMessage> &notify, uint32_t flags = 0, bool uidValid = false, uid_t uid = 0);
+ SDPLoader(
+ const sp<AMessage> &notify,
+ uint32_t flags,
+ const sp<IMediaHTTPService> &httpService,
+ bool uidValid = false,
+ uid_t uid = 0);
void load(const char* url, const KeyedVector<String8, String8> *headers);