Searched refs:url (Results 1 - 25 of 182) sorted by path

12345678

/frameworks/av/include/media/
H A DIMediaPlayer.h50 const char *url,
H A DJetPlayer.h50 int loadFromFile(const char* url);
H A DMediaMetadataRetrieverInterface.h40 const char *url,
H A DMediaPlayerInterface.h53 // argument to the 'test:' url in the setDataSource call.
160 const char *url,
H A Dmediaplayer.h214 const char *url,
/frameworks/av/media/libmedia/
H A DIMediaPlayer.cpp90 const char* url,
99 data.writeCString(url);
446 const char* url = data.readCString(); local
447 if (url == NULL) {
459 httpService, url, numHeaders > 0 ? &headers : NULL));
88 setDataSource( const sp<IMediaHTTPService> &httpService, const char* url, const KeyedVector<String8, String8>* headers) argument
H A Dmediaplayer.cpp150 const char *url, const KeyedVector<String8, String8> *headers)
152 ALOGV("setDataSource(%s)", url);
154 if (url != NULL) {
159 (NO_ERROR != player->setDataSource(httpService, url, headers))) {
148 setDataSource( const sp<IMediaHTTPService> &httpService, const char *url, const KeyedVector<String8, String8> *headers) argument
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerFactory.cpp105 const char* url) {
106 GET_PLAYER_TYPE_IMPL(client, url);
175 const char* url,
182 if (!strncasecmp("http://", url, 7)
183 || !strncasecmp("https://", url, 8)
184 || !strncasecmp("file://", url, 7)) {
185 size_t len = strlen(url);
186 if (len >= 5 && !strcasecmp(".m3u8", &url[len - 5])) {
190 if (strstr(url,"m3u8")) {
194 if ((len >= 4 && !strcasecmp(".sdp", &url[le
104 getPlayerType(const sp<IMediaPlayer>& client, const char* url) argument
174 scoreFactory(const sp<IMediaPlayer>& , const char* url, float curScore) argument
227 scoreFactory(const sp<IMediaPlayer>& , const char* url, float ) argument
[all...]
H A DMediaPlayerFactory.h33 const char* /*url*/,
57 const char* url);
H A DMediaPlayerService.cpp730 const char *url,
733 ALOGV("setDataSource(%s)", url);
734 if (url == NULL)
737 if ((strncmp(url, "http://", 7) == 0) ||
738 (strncmp(url, "https://", 8) == 0) ||
739 (strncmp(url, "rtsp://", 7) == 0)) {
745 if (strncmp(url, "content://", 10) == 0) {
749 String16 url16(url);
753 ALOGE("Couldn't open fd for %s", url);
760 player_type playerType = MediaPlayerFactory::getPlayerType(this, url);
728 setDataSource( const sp<IMediaHTTPService> &httpService, const char *url, const KeyedVector<String8, String8> *headers) argument
[all...]
H A DMediaPlayerService.h325 const char *url,
H A DMetadataRetrieverClient.cpp108 const char *url,
111 ALOGV("setDataSource(%s)", url);
113 if (url == NULL) {
126 MediaPlayerFactory::getPlayerType(NULL /* client */, url);
130 status_t ret = p->setDataSource(httpService, url, headers);
106 setDataSource( const sp<IMediaHTTPService> &httpService, const char *url, const KeyedVector<String8, String8> *headers) argument
H A DMetadataRetrieverClient.h48 const char *url,
H A DTestPlayerStub.cpp37 const char *kUrlParam = "url=";
52 // @return true if the url scheme is 'test:'
53 bool isTestUrl(const char *url) argument
55 return url && strncmp(url, kTestUrlScheme, strlen(kTestUrlScheme)) == 0;
79 // * The url to be passed to the real setDataSource impl.
83 // test:<name of the .so>?url=<url for setDataSource>
85 // The value of the url parameter is treated as a string (no
114 // Call setDataSource on the test player with the url i
115 setDataSource( const sp<IMediaHTTPService> &httpService, const char *url, const KeyedVector<String8, String8> *headers) argument
193 canBeUsed(const char *url) argument
[all...]
H A DTestPlayerStub.h30 // test:<name of the .so>?url=<url for the real setDataSource impl.>
33 // test:invoke_test_media_player.so?url=http://youtube.com/
34 // test:invoke_test_media_player.so?url=speedtest
36 // TestPlayerStub::setDataSource loads the library in the test url. 2
44 // implementation is called with the value of the 'url' parameter.
50 // p.setDataSource("test:invoke_mock_media_player.so?url=http://youtube.com");
67 // @param url Should be a test url. See class comment.
70 const char* url,
[all...]
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DGenericSource.cpp103 const char *url,
108 mUri = url;
101 setDataSource( const sp<IMediaHTTPService> &httpService, const char *url, const KeyedVector<String8, String8> *headers) argument
H A DGenericSource.h47 const char *url,
H A DHTTPLiveSource.cpp40 const char *url,
44 mURL(url),
37 HTTPLiveSource( const sp<AMessage> &notify, const sp<IMediaHTTPService> &httpService, const char *url, const KeyedVector<String8, String8> *headers) argument
H A DHTTPLiveSource.h34 const char *url,
H A DNuPlayer.cpp221 static bool IsHTTPLiveURL(const char *url) { argument
222 if (!strncasecmp("http://", url, 7)
223 || !strncasecmp("https://", url, 8)
224 || !strncasecmp("file://", url, 7)) {
225 size_t len = strlen(url);
226 if (len >= 5 && !strcasecmp(".m3u8", &url[len - 5])) {
230 if (strstr(url,"m3u8")) {
240 const char *url,
244 size_t len = strlen(url);
249 if (IsHTTPLiveURL(url)) {
238 setDataSourceAsync( const sp<IMediaHTTPService> &httpService, const char *url, const KeyedVector<String8, String8> *headers) argument
[all...]
H A DNuPlayer.h46 const char *url,
H A DNuPlayerDriver.cpp80 const char *url,
82 ALOGV("setDataSource(%p) url(%s)", this, uriDebugString(url, false).c_str());
91 mPlayer->setDataSourceAsync(httpService, url, headers);
78 setDataSource( const sp<IMediaHTTPService> &httpService, const char *url, const KeyedVector<String8, String8> *headers) argument
H A DNuPlayerDriver.h35 const char *url,
H A DRTSPSource.cpp44 const char *url,
51 mURL(url),
759 ALOGE("Unable to find url in SDP");
41 RTSPSource( const sp<AMessage> &notify, const sp<IMediaHTTPService> &httpService, const char *url, const KeyedVector<String8, String8> *headers, bool uidValid, uid_t uid, bool isSDP) argument
H A DRTSPSource.h37 const char *url,

Completed in 286 milliseconds

12345678