summaryrefslogtreecommitdiffstats
path: root/media
diff options
context:
space:
mode:
authorJames Dong <jdong@google.com>2010-06-14 11:14:38 -0700
committerJames Dong <jdong@google.com>2010-06-14 11:14:38 -0700
commitdca66e1c3bc8842b0d44e0cb004e507a456e4b8f (patch)
treebc067a5732a9d3b075e6fa7d7f9360d8d6bf5df7 /media
parent60e8c33d6f6caad2e963e91abca16a85cd3be82a (diff)
downloadframeworks_base-dca66e1c3bc8842b0d44e0cb004e507a456e4b8f.zip
frameworks_base-dca66e1c3bc8842b0d44e0cb004e507a456e4b8f.tar.gz
frameworks_base-dca66e1c3bc8842b0d44e0cb004e507a456e4b8f.tar.bz2
Fixed a typo - maybe we should do comparison ignoring the case?
Change-Id: I498f8242e6ba3e3e8b8c7b714ed49bff51a3010b
Diffstat (limited to 'media')
-rw-r--r--media/libstagefright/OMXCodec.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/media/libstagefright/OMXCodec.cpp b/media/libstagefright/OMXCodec.cpp
index 6be41b4..5a01d79 100644
--- a/media/libstagefright/OMXCodec.cpp
+++ b/media/libstagefright/OMXCodec.cpp
@@ -347,7 +347,7 @@ uint32_t OMXCodec::getComponentQuirks(const char *componentName) {
quirks |= kRequiresAllocateBufferOnInputPorts;
quirks |= kRequiresAllocateBufferOnOutputPorts;
- if (!strncmp(componentName, "OMX.TI.video.encoder", 20)) {
+ if (!strncmp(componentName, "OMX.TI.Video.encoder", 20)) {
quirks |= kAvoidMemcopyInputRecordingFrames;
}
}