Searched refs:setDataSource (Results 1 - 25 of 93) sorted by path

1234

/frameworks/av/cmds/stagefright/
H A DSimplePlayer.cpp60 status_t SimplePlayer::setDataSource(const char *path) { function in class:android::SimplePlayer
278 status_t err = mExtractor->setDataSource(mPath.c_str());
H A DSimplePlayer.h34 status_t setDataSource(const char *path);
H A Dcodec.cpp78 if (extractor->setDataSource(path) != OK) {
416 player->setDataSource(argv[0]);
H A Dmuxer.cpp61 if (extractor->setDataSource(path) != OK) {
293 // Make sure setDataSource() works.
H A Dstagefright.cpp837 CHECK_EQ(retriever->setDataSource(fd, 0, fileSize), (status_t)OK);
H A Dstream.cpp376 if (player != NULL && player->setDataSource(source) == NO_ERROR) {
/frameworks/av/include/media/
H A DIMediaMetadataRetriever.h35 virtual status_t setDataSource(
39 virtual status_t setDataSource(int fd, int64_t offset, int64_t length) = 0;
H A DIMediaPlayer.h44 virtual status_t setDataSource(const char *url,
46 virtual status_t setDataSource(int fd, int64_t offset, int64_t length) = 0;
47 virtual status_t setDataSource(const sp<IStreamSource>& source) = 0;
H A DMediaMetadataRetrieverInterface.h34 virtual status_t setDataSource(
38 virtual status_t setDataSource(int fd, int64_t offset, int64_t length) = 0;
H A DMediaPlayerInterface.h51 // argument to the 'test:' url in the setDataSource call.
138 virtual status_t setDataSource(
142 virtual status_t setDataSource(int fd, int64_t offset, int64_t length) = 0;
144 virtual status_t setDataSource(const sp<IStreamSource> &source) { function in class:android::MediaPlayerBase
H A Dmediametadataretriever.h70 status_t setDataSource(
74 status_t setDataSource(int fd, int64_t offset, int64_t length);
H A Dmediaplayer.h201 status_t setDataSource(
205 status_t setDataSource(int fd, int64_t offset, int64_t length);
206 status_t setDataSource(const sp<IStreamSource> &source);
/frameworks/av/include/media/stagefright/
H A DNuMediaExtractor.h47 status_t setDataSource(
51 status_t setDataSource(int fd, off64_t offset, off64_t size);
53 status_t setDataSource(const sp<DataSource> &datasource);
/frameworks/av/libvideoeditor/lvpp/
H A DPreviewPlayer.cpp168 status_t PreviewPlayer::setDataSource(const char *path) { function in class:android::PreviewPlayer
180 // setDataSource for any significant time.
1562 status_t PreviewPlayer::setDataSource(const sp<IStreamSource> &source) { function in class:android::PreviewPlayer
H A DPreviewPlayer.h59 status_t setDataSource(const char *path);
60 status_t setDataSource(const sp<IStreamSource> &source);
H A DVideoEditorPlayer.cpp59 status_t VideoEditorPlayer::setDataSource( function in class:android::VideoEditorPlayer
61 ALOGI("setDataSource('%s')", url);
67 return mPlayer->setDataSource(url);
71 status_t VideoEditorPlayer::setDataSource(int fd, int64_t offset, function in class:android::VideoEditorPlayer
73 ALOGE("setDataSource(%d, %lld, %lld) Not supported", fd, offset, length);
H A DVideoEditorPlayer.h99 virtual status_t setDataSource(
102 virtual status_t setDataSource(int fd, int64_t offset, int64_t length);
H A DVideoEditorPreviewController.cpp970 pController->mVePlayer[playerInstance]->setDataSource(fileName, NULL);
972 ALOGV("preparePlayer: setDataSource instance %s",
/frameworks/av/media/libmedia/
H A DIMediaMetadataRetriever.cpp86 status_t setDataSource( function in class:android::BpMediaMetadataRetriever
108 status_t setDataSource(int fd, int64_t offset, int64_t length) function in class:android::BpMediaMetadataRetriever
209 setDataSource(srcUrl, numHeaders > 0 ? &headers : NULL));
218 reply->writeInt32(setDataSource(fd, offset, length));
H A DIMediaPlayer.cpp78 status_t setDataSource(const char* url, function in class:android::BpMediaPlayer
98 status_t setDataSource(int fd, int64_t offset, int64_t length) { function in class:android::BpMediaPlayer
108 status_t setDataSource(const sp<IStreamSource> &source) { function in class:android::BpMediaPlayer
366 reply->writeInt32(setDataSource(url, numHeaders > 0 ? &headers : NULL));
374 reply->writeInt32(setDataSource(fd, offset, length));
381 reply->writeInt32(setDataSource(source));
H A Dmediametadataretriever.cpp95 status_t MediaMetadataRetriever::setDataSource( function in class:android::MediaMetadataRetriever
98 ALOGV("setDataSource");
109 return mRetriever->setDataSource(srcUrl, headers);
112 status_t MediaMetadataRetriever::setDataSource(int fd, int64_t offset, int64_t length) function in class:android::MediaMetadataRetriever
114 ALOGV("setDataSource(%d, %lld, %lld)", fd, offset, length);
124 return mRetriever->setDataSource(fd, offset, length);
H A Dmediaplayer.cpp138 status_t MediaPlayer::setDataSource( function in class:android::MediaPlayer
141 ALOGV("setDataSource(%s)", url);
148 (NO_ERROR != player->setDataSource(url, headers))) {
157 status_t MediaPlayer::setDataSource(int fd, int64_t offset, int64_t length) function in class:android::MediaPlayer
159 ALOGV("setDataSource(%d, %lld, %lld)", fd, offset, length);
165 (NO_ERROR != player->setDataSource(fd, offset, length))) {
173 status_t MediaPlayer::setDataSource(const sp<IStreamSource> &source) function in class:android::MediaPlayer
175 ALOGV("setDataSource");
181 (NO_ERROR != player->setDataSource(source))) {
487 // setDataSource ha
[all...]
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.cpp604 ALOGV(" setDataSource");
624 status_t MediaPlayerService::Client::setDataSource( function in class:android::MediaPlayerService::Client
627 ALOGV("setDataSource(%s)", url);
641 // pass it to the setDataSource(fd) method
650 setDataSource(fd, 0, 0x7fffffffffLL); // this sets mStatus
660 setDataSource_post(p, p->setDataSource(url, headers));
665 status_t MediaPlayerService::Client::setDataSource(int fd, int64_t offset, int64_t length) function in class:android::MediaPlayerService::Client
667 ALOGV("setDataSource fd=%d, offset=%lld, length=%lld", fd, offset, length);
701 setDataSource_post(p, p->setDataSource(fd, offset, length));
705 status_t MediaPlayerService::Client::setDataSource( function in class:android::MediaPlayerService::Client
[all...]
H A DMediaPlayerService.h356 virtual status_t setDataSource(
360 virtual status_t setDataSource(int fd, int64_t offset, int64_t length);
362 virtual status_t setDataSource(const sp<IStreamSource> &source);
H A DMetadataRetrieverClient.cpp108 status_t MetadataRetrieverClient::setDataSource( function in class:android::MetadataRetrieverClient
111 ALOGV("setDataSource(%s)", url);
130 status_t ret = p->setDataSource(url, headers);
135 status_t MetadataRetrieverClient::setDataSource(int fd, int64_t offset, int64_t length) function in class:android::MetadataRetrieverClient
137 ALOGV("setDataSource fd=%d, offset=%lld, length=%lld", fd, offset, length);
172 status_t status = p->setDataSource(fd, offset, length);

Completed in 202 milliseconds

1234