Changeset 771 in SHVCSoftware for branches/SHM-6-dev/source/Lib/TLibEncoder


Ignore:
Timestamp:
6 May 2014, 22:53:50 (11 years ago)
Author:
qualcomm
Message:

Fixed the issue related to gcc vectorization.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/SHM-6-dev/source/Lib/TLibEncoder/TEncGOP.cpp

    r765 r771  
    44264426};
    44274427
     4428#if CGS_GCC_NO_VECTORIZATION 
     4429#ifdef __GNUC__
     4430#define GCC_VERSION (__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__)
     4431#if GCC_VERSION > 40600
     4432__attribute__((optimize("no-tree-vectorize")))
     4433#endif
     4434#endif
     4435#endif
    44284436Void TEncGOP::filterImg(
    44294437    Pel           *src,
Note: See TracChangeset for help on using the changeset viewer.