Skip to content

Commit

Permalink
libstagefright: Add enhancements for extended format support
Browse files Browse the repository at this point in the history
Extended Extractor to facilitate plugging-in of additional,
vendor-supplied parsers.

Extended-codec to configure omx component with extensions
to augment container/codec format-support.

Extended-utility to add utility methods, shell properties
and delegates for features viz: B-frame encoding,
secure-pool prefetching.

Additional fixes:
libstagefright: enable extended codec/format support
libstagefright: Add hooks for extended media utils
libstagefright: Change CHECK in ExtendedCodec to conditional.
libstagefright: fix thumbnail issue
frameworks/av: Update NOTICE files
libstagefright: Add HEVC as a recognized MIME in ExtendedExtractor
stagefright: ExtendedCodec: enable arbitrary/frame-by-frame mode
ExtendedCodec: Enable timestamp reordering for MPEG4.
libstagefright: set frame packing while codec configuration
[frameworks/av] : added .mov extension
libstagefright: fix mute issue for h.264 and MPEG4
ExtendedCodec: update amrwb+ format parameters
ExtendedCodec: update amrwb+ component input/output ports
audio: Fixed condition to load AAC HW Encoder
libstagefright: Disable smoothstreaming for secure playback

Change-Id: I1bee5c0e7f2b9d439abecbf245caa76116f2a089
  • Loading branch information
Praveen Chavan authored and Linux Build Service Account committed Nov 4, 2014
1 parent 5b2ef3b commit 289a728
Show file tree
Hide file tree
Showing 20 changed files with 2,508 additions and 9 deletions.
29 changes: 29 additions & 0 deletions NOTICE
Expand Up @@ -322,3 +322,32 @@ Except as contained in this notice, the name of a copyright holder
shall not be used in advertising or otherwise to promote the sale, use
or other dealings in these Data Files or Software without prior written
authorization of the copyright holder.


Copyright (c) 2012 - 2014, The Linux Foundation. All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following
disclaimer in the documentation and/or other materials provided
with the distribution.
* Neither the name of The Linux Foundation nor the names of its
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

181 changes: 181 additions & 0 deletions include/media/stagefright/ExtendedCodec.h
@@ -0,0 +1,181 @@
/*
* Copyright (c) 2013 - 2014, The Linux Foundation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of The Linux Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

#ifndef EXTENDED_CODEC_H_
#define EXTENDED_CODEC_H_

#include <android/native_window.h>
#include <media/IOMX.h>
#include <media/stagefright/MediaBuffer.h>
#include <media/stagefright/MediaSource.h>
#include <media/stagefright/foundation/AMessage.h>
#include <media/stagefright/foundation/AString.h>
#include <utils/threads.h>

#include <OMX_Audio.h>

namespace android {

struct MediaCodecList;
struct OMXCodec;

enum{
kRequiresWMAProComponent = 0x40000000,
};


struct ExtendedCodec {

enum {
kPortIndexInput = 0,
kPortIndexOutput = 1
};
static status_t convertMetaDataToMessage(
const sp<MetaData> &meta, sp<AMessage> *format);

static uint32_t getComponentQuirks (
const MediaCodecList *list, size_t index);

static status_t setAudioFormat(
const sp<MetaData> &meta, const char* mime,
sp<IOMX> OMXhandle,IOMX::node_id nodeID,
bool isEncoder);

static status_t setAudioFormat(
const sp<AMessage> &msg, const char* mime,
sp<IOMX> OMXhandle,IOMX::node_id nodeID,
bool isEncoder);

static status_t setVideoInputFormat(
const char *mime,
OMX_VIDEO_CODINGTYPE *compressionFormat);

static status_t setVideoOutputFormat(
const char *mime,
OMX_VIDEO_CODINGTYPE *compressionFormat);

static status_t getSupportedAudioFormatInfo(
const AString* mime,
sp<IOMX> OMXhandle,
IOMX::node_id nodeID,
int portIndex,
int* channelCount);

static status_t handleSupportedAudioFormats(
int format, AString* mime);

static const char* overrideComponentName(
uint32_t quirks, const sp<MetaData> &meta);

static void overrideComponentName(
uint32_t quirks, const sp<AMessage> &msg,
AString* componentName);

static void getRawCodecSpecificData(
const sp<MetaData> &meta,
const void* &data,
size_t& size);

static sp<ABuffer> getRawCodecSpecificData(
const sp<AMessage> &msg);

static void getAacCodecSpecificData(
const sp<MetaData> &meta,
const void* &data,
size_t& size);

static sp<ABuffer> getAacCodecSpecificData(
const sp<AMessage> &msg);

static status_t setSupportedRole(
const sp<IOMX> &omx, IOMX::node_id node,
bool isEncoder, const char *mime);

static void configureFramePackingFormat(
const sp<AMessage> &msg, sp<IOMX> OMXhandle,
IOMX::node_id nodeID, const char* componentName);

static void configureFramePackingFormat(
const sp<MetaData> &meta, sp<IOMX> OMXhandle,
IOMX::node_id nodeID, const char* componentName);

static void configureVideoDecoder(
const sp<MetaData> &meta, const char* mime,
sp<IOMX> OMXhandle, const uint32_t flags,
IOMX::node_id nodeID, const char* componentName);

static void configureVideoDecoder(
const sp<AMessage> &msg, const char* mime,
sp<IOMX> OMXhandle, const uint32_t flags,
IOMX::node_id nodeID, const char* componentName);

static void enableSmoothStreaming(
const sp<IOMX> &omx, IOMX::node_id nodeID, bool* isEnabled,
const char* componentName);

static bool useHWAACDecoder(const char *mime);

private:
static const char* getMsgKey(int key );

static status_t setWMAFormat(
const sp<MetaData> &meta, sp<IOMX> OMXhandle,
IOMX::node_id nodeID, bool isEncoder );

static status_t setWMAFormat(
const sp<AMessage> &msg, sp<IOMX> OMXhandle,
IOMX::node_id nodeID, bool isEncoder );

static void setEVRCFormat(
int32_t numChannels, int32_t sampleRate,
sp<IOMX> OMXhandle, IOMX::node_id nodeID,
bool isEncoder );

static void setQCELPFormat(
int32_t numChannels, int32_t sampleRate,
sp<IOMX> OMXhandle, IOMX::node_id nodeID,
bool isEncoder );

static void setAC3Format(
int32_t numChannels, int32_t sampleRate,
sp<IOMX> OMXhandle, IOMX::node_id nodeID);

static status_t setDIVXFormat(
const sp<AMessage> &msg, const char* mime,
sp<IOMX> OMXhandle,IOMX::node_id nodeID, int port_index);

static status_t setAMRWBPLUSFormat(
int32_t numChannels, int32_t sampleRate,
sp<IOMX> OMXhandle, IOMX::node_id nodeID);

};

}
#endif /*EXTENDED_CODEC_H_ */

2 changes: 2 additions & 0 deletions include/media/stagefright/OMXCodec.h
Expand Up @@ -363,6 +363,8 @@ struct OMXCodec : public MediaSource,

OMXCodec(const OMXCodec &);
OMXCodec &operator=(const OMXCodec &);

int32_t mNumBFrames;
};

struct CodecCapabilities {
Expand Down
13 changes: 13 additions & 0 deletions media/libmediaplayerservice/StagefrightRecorder.cpp
Expand Up @@ -52,6 +52,8 @@
#include <ctype.h>
#include <unistd.h>

#include "ExtendedUtils.h"

#include <system/audio.h>

#include "ARTPWriter.h"
Expand Down Expand Up @@ -116,6 +118,10 @@ status_t StagefrightRecorder::setAudioSource(audio_source_t as) {
return BAD_VALUE;
}

if (ExtendedUtils::ShellProp::isAudioDisabled(true)) {
return OK;
}

if (as == AUDIO_SOURCE_DEFAULT) {
mAudioSource = AUDIO_SOURCE_MIC;
} else {
Expand Down Expand Up @@ -167,6 +173,10 @@ status_t StagefrightRecorder::setAudioEncoder(audio_encoder ae) {
return BAD_VALUE;
}

if (ExtendedUtils::ShellProp::isAudioDisabled(true)) {
return OK;
}

if (ae == AUDIO_ENCODER_DEFAULT) {
mAudioEncoder = AUDIO_ENCODER_AMR_NB;
} else {
Expand Down Expand Up @@ -1514,6 +1524,9 @@ status_t StagefrightRecorder::setupVideoEncoder(
if (mVideoTimeScale > 0) {
format->setInt32("time-scale", mVideoTimeScale);
}

ExtendedUtils::ShellProp::setEncoderProfile(mVideoEncoder, mVideoEncoderProfile);

if (mVideoEncoderProfile != -1) {
format->setInt32("profile", mVideoEncoderProfile);
}
Expand Down
48 changes: 45 additions & 3 deletions media/libstagefright/ACodec.cpp 100644 → 100755
Expand Up @@ -40,6 +40,7 @@
#include <media/stagefright/NativeWindowWrapper.h>
#include <media/stagefright/OMXClient.h>
#include <media/stagefright/OMXCodec.h>
#include <media/stagefright/ExtendedCodec.h>

#include <media/hardware/HardwareAPI.h>

Expand Down Expand Up @@ -1119,7 +1120,7 @@ status_t ACodec::setComponentRole(
}

if (i == kNumMimeToRole) {
return ERROR_UNSUPPORTED;
return ExtendedCodec::setSupportedRole(mOMX, mNode, isEncoder, mime);
}

const char *role =
Expand Down Expand Up @@ -1369,6 +1370,10 @@ status_t ACodec::configureCodec(
} else {
err = setupVideoDecoder(mime, msg);
}
if (err == OK) {
const char* componentName = mComponentName.c_str();
ExtendedCodec::configureVideoDecoder(msg, mime, mOMX, 0, mNode, componentName);
}
} else if (!strcasecmp(mime, MEDIA_MIMETYPE_AUDIO_MPEG)) {
int32_t numChannels, sampleRate;
if (!msg->findInt32("channel-count", &numChannels)
Expand Down Expand Up @@ -1498,6 +1503,19 @@ status_t ACodec::configureCodec(
} else {
err = setupAC3Codec(encoder, numChannels, sampleRate);
}
} else {
if (encoder) {
int32_t numChannels, sampleRate;
if (msg->findInt32("channel-count", &numChannels)
&& msg->findInt32("sample-rate", &sampleRate)) {
setupRawAudioFormat(kPortIndexInput, sampleRate, numChannels);
}
}
err = ExtendedCodec::setAudioFormat(
msg, mime, mOMX, mNode, mIsEncoder);
if(err != OK) {
return err;
}
}

if (err != OK) {
Expand Down Expand Up @@ -2102,7 +2120,9 @@ status_t ACodec::setupVideoDecoder(
status_t err = GetVideoCodingTypeFromMime(mime, &compressionFormat);

if (err != OK) {
return err;
if (ExtendedCodec::setVideoOutputFormat(mime, &compressionFormat) != OK) {
return err;
}
}

err = setVideoPortFormatType(
Expand Down Expand Up @@ -2239,7 +2259,11 @@ status_t ACodec::setupVideoEncoder(const char *mime, const sp<AMessage> &msg) {
err = GetVideoCodingTypeFromMime(mime, &compressionFormat);

if (err != OK) {
return err;
err = ExtendedCodec::setVideoInputFormat(mime, &compressionFormat);
if (err != OK) {
ALOGE("Not a supported video mime type: %s", mime);
return err;
}
}

err = setVideoPortFormatType(
Expand Down Expand Up @@ -3497,8 +3521,25 @@ status_t ACodec::getPortFormat(OMX_U32 portIndex, sp<AMessage> &notify) {
}

default:
{
AString mimeType;
status_t err = ExtendedCodec::handleSupportedAudioFormats(
audioDef->eEncoding, &mimeType);
if (err == OK) {
int channelCount;
err = ExtendedCodec::getSupportedAudioFormatInfo(
&mimeType,
mOMX,
mNode,
kPortIndexOutput,
&channelCount);
notify->setString("mime", mimeType.c_str());
notify->setInt32("channel-count", channelCount);
break;
}
ALOGE("UNKNOWN AUDIO CODING: %d\n", audioDef->eEncoding);
TRESPASS();
}
}
break;
}
Expand Down Expand Up @@ -4552,6 +4593,7 @@ bool ACodec::UninitializedState::onAllocateComponent(const sp<AMessage> &msg) {
++matchIndex) {
componentName = matchingCodecs.itemAt(matchIndex).mName.string();
quirks = matchingCodecs.itemAt(matchIndex).mQuirks;
ExtendedCodec::overrideComponentName(quirks, msg, &componentName);

pid_t tid = androidGetTid();
int prevPriority = androidGetThreadPriority(tid);
Expand Down

0 comments on commit 289a728

Please sign in to comment.