Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 814f430c authored by James Dong's avatar James Dong Committed by Android Git Automerger
Browse files

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

Merge commit 'dca66e1c' into gingerbread-plus-aosp

* commit 'dca66e1c':
  Fixed a typo - maybe we should do comparison ignoring the case?
parents 864c68ea dca66e1c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
        }
    }