summaryrefslogtreecommitdiffstats
path: root/media/libstagefright/OMXCodec.cpp
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
commit8aa8fe5ea704b05d8f0ab3d7bf18de18151f1b50 (patch)
tree9fdffeb2469926b81be2ae8a7c5c32ee6bdf3070 /media/libstagefright/OMXCodec.cpp
parent582c2c3ddabbb3950d19c7ba1124c69856f7eac3 (diff)
downloadframeworks_av-8aa8fe5ea704b05d8f0ab3d7bf18de18151f1b50.zip
frameworks_av-8aa8fe5ea704b05d8f0ab3d7bf18de18151f1b50.tar.gz
frameworks_av-8aa8fe5ea704b05d8f0ab3d7bf18de18151f1b50.tar.bz2
Fixed a typo - maybe we should do comparison ignoring the case?
Change-Id: I498f8242e6ba3e3e8b8c7b714ed49bff51a3010b
Diffstat (limited to 'media/libstagefright/OMXCodec.cpp')
-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;
}
}