Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1f90f7da authored by Marco Nelissen's avatar Marco Nelissen Committed by Android (Google) Code Review
Browse files

Merge "Remove unused method"

parents 38f8ddb2 ebab3587
Loading
Loading
Loading
Loading
+2 −8
Original line number Diff line number Diff line
@@ -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());

+0 −1
Original line number Diff line number Diff line
@@ -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,