am dca66e1c: Fixed a typo - maybe we should do comparison ignoring the case?

Merge commit 'dca66e1c3bc8842b0d44e0cb004e507a456e4b8f' into gingerbread-plus-aosp

* commit 'dca66e1c3bc8842b0d44e0cb004e507a456e4b8f':
  Fixed a typo - maybe we should do comparison ignoring the case?
This commit is contained in:
James Dong
2010-06-14 13:20:54 -07:00
committed by Android Git Automerger

View File

@@ -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;
}
}