summaryrefslogtreecommitdiffstats
path: root/media/libstagefright/OMXCodec.cpp
diff options
context:
space:
mode:
authorJames Dong <jdong@google.com>2012-04-27 17:40:16 -0700
committerJames Dong <jdong@google.com>2012-04-30 14:35:57 -0700
commita3cbc03f7c646ad9b05d24e72a6d306cb457807c (patch)
treed8083e9a24b1906469cf993d27267166b8365724 /media/libstagefright/OMXCodec.cpp
parent99bbaff7853eab325bd87b315d532909206592b1 (diff)
downloadframeworks_av-a3cbc03f7c646ad9b05d24e72a6d306cb457807c.zip
frameworks_av-a3cbc03f7c646ad9b05d24e72a6d306cb457807c.tar.gz
frameworks_av-a3cbc03f7c646ad9b05d24e72a6d306cb457807c.tar.bz2
Removed software video encoders that are not OMX-based.
o related-to-bug: 5933287 Change-Id: I63635375e2bef00733b61adc3fa12c29df7e2155
Diffstat (limited to 'media/libstagefright/OMXCodec.cpp')
-rwxr-xr-xmedia/libstagefright/OMXCodec.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/media/libstagefright/OMXCodec.cpp b/media/libstagefright/OMXCodec.cpp
index fb6491b..791e044 100755
--- a/media/libstagefright/OMXCodec.cpp
+++ b/media/libstagefright/OMXCodec.cpp
@@ -19,8 +19,6 @@
#include <utils/Log.h>
#include "include/AACEncoder.h"
-#include "include/AVCEncoder.h"
-#include "include/M4vH263Encoder.h"
#include "include/ESDS.h"
@@ -67,8 +65,6 @@ static sp<MediaSource> Make##name(const sp<MediaSource> &source, const sp<MetaDa
#define FACTORY_REF(name) { #name, Make##name },
FACTORY_CREATE_ENCODER(AACEncoder)
-FACTORY_CREATE_ENCODER(AVCEncoder)
-FACTORY_CREATE_ENCODER(M4vH263Encoder)
static sp<MediaSource> InstantiateSoftwareEncoder(
const char *name, const sp<MediaSource> &source,
@@ -80,8 +76,6 @@ static sp<MediaSource> InstantiateSoftwareEncoder(
static const FactoryInfo kFactoryInfo[] = {
FACTORY_REF(AACEncoder)
- FACTORY_REF(AVCEncoder)
- FACTORY_REF(M4vH263Encoder)
};
for (size_t i = 0;
i < sizeof(kFactoryInfo) / sizeof(kFactoryInfo[0]); ++i) {