summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--media/libstagefright/AACExtractor.cpp2
-rw-r--r--media/libstagefright/FFMPEGSoftCodec.cpp49
2 files changed, 23 insertions, 28 deletions
diff --git a/media/libstagefright/AACExtractor.cpp b/media/libstagefright/AACExtractor.cpp
index 2115eb4..1764541 100644
--- a/media/libstagefright/AACExtractor.cpp
+++ b/media/libstagefright/AACExtractor.cpp
@@ -167,7 +167,7 @@ AACExtractor::AACExtractor(
channel = (header[0] & 0x1) << 2 | (header[1] >> 6);
mMeta = MakeAACCodecSpecificData(profile, sf_index, channel);
- mMeta->setInt32(kKeyAACAOT, profile + 1);
+ mMeta->setInt32(kKeyAACAOT, profile);
off64_t streamSize, numFrames = 0;
size_t frameSize = 0;
diff --git a/media/libstagefright/FFMPEGSoftCodec.cpp b/media/libstagefright/FFMPEGSoftCodec.cpp
index 5ee168e..20c8359 100644
--- a/media/libstagefright/FFMPEGSoftCodec.cpp
+++ b/media/libstagefright/FFMPEGSoftCodec.cpp
@@ -223,37 +223,32 @@ const char* FFMPEGSoftCodec::overrideComponentName(
}
}
- return componentName;
-}
-
-void FFMPEGSoftCodec::overrideComponentName(
- uint32_t /*quirks*/, const sp<AMessage> &msg, AString* componentName, AString* mime, int32_t isEncoder) {
-
- int32_t wmvVersion = 0;
- if (!strncasecmp(mime->c_str(), MEDIA_MIMETYPE_VIDEO_WMV, strlen(MEDIA_MIMETYPE_VIDEO_WMV)) &&
- msg->findInt32(getMsgKey(kKeyWMVVersion), &wmvVersion)) {
- ALOGD("Found WMV version key %d", wmvVersion);
- if (wmvVersion != 2) {
- ALOGD("Use FFMPEG for unsupported WMV track");
- componentName->setTo("OMX.ffmpeg.wmv.decoder");
+ // Use FFMPEG for high-res formats which other decoders can't handle
+ int32_t bits = 16;
+ if (!isEncoder && meta->findInt32(kKeyBitsPerSample, &bits)) {
+ if (bits > 16) {
+ if (!strncasecmp(mime, MEDIA_MIMETYPE_AUDIO_AAC, strlen(MEDIA_MIMETYPE_AUDIO_AAC))) {
+ componentName = "OMX.ffmpeg.aac.decoder";
+ ALOGD("Use FFMPEG for high-res AAC format");
+ } else if (!strncasecmp(mime, MEDIA_MIMETYPE_AUDIO_FLAC, strlen(MEDIA_MIMETYPE_AUDIO_FLAC))) {
+ componentName = "OMX.ffmpeg.flac.decoder";
+ ALOGD("Use FFMPEG for high-res FLAC format");
+ }
}
}
- int32_t encodeOptions = 0;
- if (!isEncoder && !strncasecmp(mime->c_str(), MEDIA_MIMETYPE_AUDIO_WMA, strlen(MEDIA_MIMETYPE_AUDIO_WMA)) &&
- !msg->findInt32(getMsgKey(kKeyWMAEncodeOpt), &encodeOptions)) {
- ALOGD("Use FFMPEG for unsupported WMA track");
- componentName->setTo("OMX.ffmpeg.wma.decoder");
- }
+ return componentName;
+}
- // Google's decoder doesn't support MAIN profile
- int32_t aacProfile = 0;
- if (!isEncoder && !strncasecmp(mime->c_str(), MEDIA_MIMETYPE_AUDIO_AAC, strlen(MEDIA_MIMETYPE_AUDIO_AAC)) &&
- msg->findInt32(getMsgKey(kKeyAACAOT), &aacProfile)) {
- if ((aacProfile == OMX_AUDIO_AACObjectMain) || (aacProfile == OMX_AUDIO_AACObjectLTP)) {
- ALOGD("Use FFMPEG for AAC Main/LTP profile");
- componentName->setTo("OMX.ffmpeg.aac.decoder");
- }
+void FFMPEGSoftCodec::overrideComponentName(
+ uint32_t quirks, const sp<AMessage> &msg, AString* componentName, AString* mime, int32_t isEncoder) {
+
+ sp<MetaData> meta = new MetaData;
+ convertMessageToMetaData(msg, meta);
+ const char *updated = overrideComponentName(
+ quirks, meta, mime->c_str(), isEncoder);
+ if (updated != NULL) {
+ componentName->setTo(updated);
}
}