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

Commit 240abcc4 authored by Andreas Huber's avatar Andreas Huber
Browse files

Remove unused FragmentedMP4Parser and friends. The functionality has been

subsumed into MP4Extractor.

Change-Id: Ic1b6445660adfb985c604f1ca6f0c86585f8de04
parent 29182ee0
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -11,7 +11,6 @@ LOCAL_SRC_FILES:= \
        NuPlayerStreamListener.cpp      \
        RTSPSource.cpp                  \
        StreamingSource.cpp             \
        mp4/MP4Source.cpp               \

LOCAL_C_INCLUDES := \
	$(TOP)/frameworks/av/media/libstagefright/httplive            \
+1 −10
Original line number Diff line number Diff line
@@ -28,13 +28,11 @@
#include "RTSPSource.h"
#include "StreamingSource.h"
#include "GenericSource.h"
#include "mp4/MP4Source.h"

#include "ATSParser.h"

#include "SoftwareRenderer.h"

#include <cutils/properties.h> // for property_get
#include <media/stagefright/foundation/hexdump.h>
#include <media/stagefright/foundation/ABuffer.h>
#include <media/stagefright/foundation/ADebug.h>
@@ -183,14 +181,7 @@ void NuPlayer::setDataSourceAsync(const sp<IStreamSource> &source) {

    sp<AMessage> notify = new AMessage(kWhatSourceNotify, id());

    char prop[PROPERTY_VALUE_MAX];
    if (property_get("media.stagefright.use-mp4source", prop, NULL)
            && (!strcmp(prop, "1") || !strcasecmp(prop, "true"))) {
        msg->setObject("source", new MP4Source(notify, source));
    } else {
    msg->setObject("source", new StreamingSource(notify, source));
    }

    msg->post();
}

+0 −144
Original line number Diff line number Diff line
/*
 * Copyright (C) 2012 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#include "MP4Source.h"

#include "FragmentedMP4Parser.h"
#include "../NuPlayerStreamListener.h"

#include <media/IStreamSource.h>
#include <media/stagefright/foundation/AMessage.h>
#include <media/stagefright/MediaErrors.h>
#include <media/stagefright/MetaData.h>

namespace android {

struct StreamSource : public FragmentedMP4Parser::Source {
    StreamSource(const sp<IStreamSource> &source)
        : mListener(new NuPlayer::NuPlayerStreamListener(source, 0)),
          mPosition(0) {
        mListener->start();
    }

    virtual ssize_t readAt(off64_t offset, void *data, size_t size) {
        if (offset < mPosition) {
            return -EPIPE;
        }

        while (offset > mPosition) {
            char buffer[1024];
            off64_t skipBytes = offset - mPosition;
            if (skipBytes > sizeof(buffer)) {
                skipBytes = sizeof(buffer);
            }

            sp<AMessage> extra;
            ssize_t n;
            for (;;) {
                n = mListener->read(buffer, skipBytes, &extra);

                if (n == -EWOULDBLOCK) {
                    usleep(10000);
                    continue;
                }

                break;
            }

            ALOGV("skipped %ld bytes at offset %lld", n, mPosition);

            if (n < 0) {
                return n;
            }

            mPosition += n;
        }

        sp<AMessage> extra;
        size_t total = 0;
        while (total < size) {
            ssize_t n = mListener->read(
                    (uint8_t *)data + total, size - total, &extra);

            if (n == -EWOULDBLOCK) {
                usleep(10000);
                continue;
            } else if (n == 0) {
                break;
            } else if (n < 0) {
                mPosition += total;
                return n;
            }

            total += n;
        }

        ALOGV("read %ld bytes at offset %lld", total, mPosition);

        mPosition += total;

        return total;
    }

    bool isSeekable() {
        return false;
    }

private:
    sp<NuPlayer::NuPlayerStreamListener> mListener;
    off64_t mPosition;

    DISALLOW_EVIL_CONSTRUCTORS(StreamSource);
};

MP4Source::MP4Source(
        const sp<AMessage> &notify, const sp<IStreamSource> &source)
    : Source(notify),
      mSource(source),
      mLooper(new ALooper),
      mParser(new FragmentedMP4Parser),
      mEOS(false) {
    mLooper->registerHandler(mParser);
}

MP4Source::~MP4Source() {
}

void MP4Source::prepareAsync() {
    notifyVideoSizeChanged(0, 0);
    notifyFlagsChanged(0);
    notifyPrepared();
}

void MP4Source::start() {
    mLooper->start(false /* runOnCallingThread */);
    mParser->start(new StreamSource(mSource));
}

status_t MP4Source::feedMoreTSData() {
    return mEOS ? ERROR_END_OF_STREAM : (status_t)OK;
}

sp<AMessage> MP4Source::getFormat(bool audio) {
    return mParser->getFormat(audio);
}

status_t MP4Source::dequeueAccessUnit(
        bool audio, sp<ABuffer> *accessUnit) {
    return mParser->dequeueAccessUnit(audio, accessUnit);
}

}  // namespace android
+0 −53
Original line number Diff line number Diff line
/*
 * Copyright (C) 2012 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#ifndef MP4_SOURCE_H
#define MP4_SOURCE_H

#include "NuPlayerSource.h"

namespace android {

struct FragmentedMP4Parser;

struct MP4Source : public NuPlayer::Source {
    MP4Source(const sp<AMessage> &notify, const sp<IStreamSource> &source);

    virtual void prepareAsync();
    virtual void start();

    virtual status_t feedMoreTSData();

    virtual sp<AMessage> getFormat(bool audio);

    virtual status_t dequeueAccessUnit(
            bool audio, sp<ABuffer> *accessUnit);

protected:
    virtual ~MP4Source();

private:
    sp<IStreamSource> mSource;
    sp<ALooper> mLooper;
    sp<FragmentedMP4Parser> mParser;
    bool mEOS;

    DISALLOW_EVIL_CONSTRUCTORS(MP4Source);
};

}  // namespace android

#endif // MP4_SOURCE_H
+0 −2
Original line number Diff line number Diff line
@@ -58,8 +58,6 @@ LOCAL_SRC_FILES:= \
        WVMExtractor.cpp                  \
        XINGSeeker.cpp                    \
        avc_utils.cpp                     \
        mp4/FragmentedMP4Parser.cpp       \
        mp4/TrackFragment.cpp             \

LOCAL_C_INCLUDES:= \
        $(TOP)/frameworks/av/include/media/stagefright/timedtext \
Loading