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

Commit ebab3587 authored by Marco Nelissen's avatar Marco Nelissen
Browse files

Remove unused method

Change-Id: I1732bf5a011b052588b5fa4f41d4723a1af8d320
parent 37d887e1
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,