Ignore:
Timestamp:
Oct 24, 2012, 7:56:20 PM (13 years ago)
Author:
Silvan Scherrer
Message:

SMplayer: update vendor to 0.8.1

Location:
smplayer/vendor/current/zlib
Files:
1 edited
1 moved

Legend:

Unmodified
Added
Removed
  • smplayer/vendor/current/zlib/zutil.h

    r121 r133  
    11/* zutil.h -- internal interface and configuration of the compression library
    2  * Copyright (C) 1995-2011 Jean-loup Gailly.
     2 * Copyright (C) 1995-2012 Jean-loup Gailly.
    33 * For conditions of distribution and use, see copyright notice in zlib.h
    44 */
     
    1414#define ZUTIL_H
    1515
    16 #if ((__GNUC__-0) * 10 + __GNUC_MINOR__-0 >= 33) && !defined(NO_VIZ)
     16#ifdef HAVE_HIDDEN
    1717#  define ZLIB_INTERNAL __attribute__((visibility ("hidden")))
    1818#else
     
    246246#define TRY_FREE(s, p) {if (p) ZFREE(s, p);}
    247247
     248/* Reverse the bytes in a 32-bit value */
     249#define ZSWAP32(q) ((((q) >> 24) & 0xff) + (((q) >> 8) & 0xff00) + \
     250                    (((q) & 0xff00) << 8) + (((q) & 0xff) << 24))
     251
    248252#endif /* ZUTIL_H */
Note: See TracChangeset for help on using the changeset viewer.