Loading services/mediaextractor/MediaExtractorService.cpp +2 −8 Original line number Diff line number Diff line Loading @@ -24,21 +24,15 @@ namespace android { status_t MediaExtractorService::hello() { ALOGI("@@@ MediaExtractorService::hello"); return NO_ERROR; } sp<IMediaExtractor> MediaExtractorService::makeExtractor( const sp<IDataSource> &remoteSource, const char *mime) { ALOGI("@@@ MediaExtractorService::makeExtractor for %s", mime); ALOGV("@@@ MediaExtractorService::makeExtractor for %s", mime); sp<DataSource> localSource = DataSource::CreateFromIDataSource(remoteSource); sp<MediaExtractor> ret = MediaExtractor::CreateFromService(localSource, mime); ALOGI("extractor service created %p (%s)", ALOGV("extractor service created %p (%s)", ret.get(), ret == NULL ? "" : ret->name()); Loading services/mediaextractor/MediaExtractorService.h +0 −1 Original line number Diff line number Diff line Loading @@ -33,7 +33,6 @@ public: static const char* getServiceName() { return "media.extractor"; } virtual status_t hello(); virtual sp<IMediaExtractor> makeExtractor(const sp<IDataSource> &source, const char *mime); virtual status_t onTransact(uint32_t code, const Parcel& data, Parcel* reply, Loading Loading
services/mediaextractor/MediaExtractorService.cpp +2 −8 Original line number Diff line number Diff line Loading @@ -24,21 +24,15 @@ namespace android { status_t MediaExtractorService::hello() { ALOGI("@@@ MediaExtractorService::hello"); return NO_ERROR; } sp<IMediaExtractor> MediaExtractorService::makeExtractor( const sp<IDataSource> &remoteSource, const char *mime) { ALOGI("@@@ MediaExtractorService::makeExtractor for %s", mime); ALOGV("@@@ MediaExtractorService::makeExtractor for %s", mime); sp<DataSource> localSource = DataSource::CreateFromIDataSource(remoteSource); sp<MediaExtractor> ret = MediaExtractor::CreateFromService(localSource, mime); ALOGI("extractor service created %p (%s)", ALOGV("extractor service created %p (%s)", ret.get(), ret == NULL ? "" : ret->name()); Loading
services/mediaextractor/MediaExtractorService.h +0 −1 Original line number Diff line number Diff line Loading @@ -33,7 +33,6 @@ public: static const char* getServiceName() { return "media.extractor"; } virtual status_t hello(); virtual sp<IMediaExtractor> makeExtractor(const sp<IDataSource> &source, const char *mime); virtual status_t onTransact(uint32_t code, const Parcel& data, Parcel* reply, Loading