shithub: openh264

ref: 4d674231706f0b2b335608e8cb2b93e1586372d6
dir: /processing/src/common/typedef.h/

View raw version
/*!
 * \copy
 *     Copyright (c)  2011-2013, Cisco Systems
 *     All rights reserved.
 *
 *     Redistribution and use in source and binary forms, with or without
 *     modification, are permitted provided that the following conditions
 *     are met:
 *
 *        * Redistributions of source code must retain the above copyright
 *          notice, this list of conditions and the following disclaimer.
 *
 *        * Redistributions in binary form must reproduce the above copyright
 *          notice, this list of conditions and the following disclaimer in
 *          the documentation and/or other materials provided with the
 *          distribution.
 *
 *     THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 *     "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 *     LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
 *     FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
 *     COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
 *     INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
 *     BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 *     LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
 *     CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 *     LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
 *     ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 *     POSSIBILITY OF SUCH DAMAGE.
 *
 * \file	    :  typedef.h
 *
 * \brief	    :  basic type definition
 *
 * \date        :  2011/01/04
 *
 * \description :  1. Define basic type with platform-independent;
 *                 2. Define specific namespace to avoid name pollution;
 *                 3. C++ ONLY;
 *
 *************************************************************************************
 */

#ifndef _WELSVP_TYPEDEF_H
#define _WELSVP_TYPEDEF_H

#define WELSVP_EXTERN_C_BEGIN       extern "C" {
#define WELSVP_EXTERN_C_END         }

#define WELSVP_NAMESPACE_BEGIN      namespace nsWelsVP {
#define WELSVP_NAMESPACE_END        }

WELSVP_NAMESPACE_BEGIN

#if defined(_WIN32) || defined(_WIN32) || defined(_MSC_VER)

typedef char               int8_t   ;
typedef unsigned char      uint8_t  ;
typedef short              int16_t  ;
typedef unsigned short     uint16_t ;
typedef int                int32_t  ;
typedef unsigned int       uint32_t ;
typedef __int64            int64_t  ;
typedef unsigned __int64   uint64_t ;
#define inline_t           _inline

#else	// GCC

typedef signed char        int8_t
; // [comment]: some compilers may identify the type "char" as "unsigned char" as default, so declare it explicit
typedef unsigned char      uint8_t  ;
typedef signed short       int16_t  ;
typedef unsigned short     uint16_t ;
typedef signed int         int32_t  ;
typedef unsigned int       uint32_t ;
typedef long long          int64_t  ;
typedef unsigned long long uint64_t ;
#define inline_t           inline

#endif

typedef char    str_t    ; // [comment]: specific use plain char only for character parameters
typedef long    long_t   ;
typedef int32_t bool_t   ;

#if defined(_WIN32) || defined(_MACH_PLATFORM) || defined(__GNUC__)
typedef float   float_t  ;
typedef double  double_t ;
#endif

#ifndef NULL
#define NULL    0
#endif

enum {
  FALSE = 0,
  TRUE  = !FALSE
};

WELSVP_NAMESPACE_END

#endif