Changeset 771 in SHVCSoftware for branches


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

Fixed the issue related to gcc vectorization.

Location:
branches/SHM-6-dev/source/Lib
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/SHM-6-dev/source/Lib/TLibCommon/TypeDef.h

    r765 r771  
    100100#define Q0048_CGS_3D_ASYMLUT             1      ///< JCTVC-Q0048: Colour gamut scalability with look-up table
    101101#if Q0048_CGS_3D_ASYMLUT
     102#define CGS_GCC_NO_VECTORIZATION         1
    102103#define O0194_WEIGHTED_PREDICTION_CGS    0
    103104#else
  • 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.