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

Commit 81140b22 authored by Andrew Sutherland's avatar Andrew Sutherland
Browse files

stagefright: remove extra QCOM ifndef

from http://review.cyanogenmod.com/13991
This define was called within a larger QCOM ifdef and wont be used
the original commit from CAF was ment to replace the line when
DIVX311 was added

Change-Id: Ieda4eae1b47d54cba5ea7d5ec02402ceed560f54
parent 1568810f
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -862,13 +862,10 @@ status_t OMXCodec::configureCodec(const sp<MetaData> &meta) {
        }

    }
#ifndef QCOM_HARDWARE
    if (!strcasecmp(MEDIA_MIMETYPE_VIDEO_DIVX, mMIME) || !strcasecmp(MEDIA_MIMETYPE_VIDEO_DIVX4, mMIME)) {
#else

    if (!strcasecmp(MEDIA_MIMETYPE_VIDEO_DIVX, mMIME) ||
        !strcasecmp(MEDIA_MIMETYPE_VIDEO_DIVX4, mMIME) ||
        !strcasecmp(MEDIA_MIMETYPE_VIDEO_DIVX311, mMIME)) {
#endif
        LOGV("Setting the QOMX_VIDEO_PARAM_DIVXTYPE params ");
        QOMX_VIDEO_PARAM_DIVXTYPE paramDivX;
        InitOMXParams(&paramDivX);