vlc/include/common.h

143 lines
4.9 KiB
C
Raw Normal View History

/*****************************************************************************
1999-08-08 20:42:54 +08:00
* common.h: common definitions
* Collection of useful common types and macros definitions
*****************************************************************************
* Copyright (C) 1998, 1999, 2000 VideoLAN
*
* Authors:
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public
* License along with this program; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*****************************************************************************/
/*****************************************************************************
1999-08-08 20:42:54 +08:00
* required headers:
* config.h
*****************************************************************************/
1999-08-08 20:42:54 +08:00
/*****************************************************************************
2000-01-11 07:36:06 +08:00
* Basic types definitions
*****************************************************************************/
1999-08-08 20:42:54 +08:00
#include "int_types.h"
1999-08-08 20:42:54 +08:00
typedef u8 byte_t;
1999-08-08 20:42:54 +08:00
/* Boolean type */
typedef int boolean_t;
#ifdef SYS_GNU
#define _MACH_I386_BOOLEAN_H_
#endif
1999-08-08 20:42:54 +08:00
/* Counter for statistics and profiling */
typedef unsigned long count_t;
/*****************************************************************************
2000-01-11 07:36:06 +08:00
* Classes declaration
*****************************************************************************/
2000-01-11 07:36:06 +08:00
/* Interface */
struct intf_thread_s;
struct intf_sys_s;
struct intf_console_s;
struct intf_msg_s;
struct intf_channel_s;
2000-01-11 07:36:06 +08:00
typedef struct intf_thread_s * p_intf_thread_t;
typedef struct intf_sys_s * p_intf_sys_t;
typedef struct intf_console_s * p_intf_console_t;
typedef struct intf_msg_s * p_intf_msg_t;
typedef struct intf_channel_s * p_intf_channel_t;
2000-01-11 07:36:06 +08:00
/* Input */
struct input_thread_s;
struct input_vlan_s;
2000-01-11 07:36:06 +08:00
struct input_cfg_s;
typedef struct input_thread_s * p_input_thread_t;
typedef struct input_vlan_s * p_input_vlan_t;
2000-01-11 07:36:06 +08:00
typedef struct input_cfg_s * p_input_cfg_t;
/* Audio */
struct aout_thread_s;
struct aout_sys_s;
2000-01-11 07:36:06 +08:00
typedef struct aout_thread_s * p_aout_thread_t;
typedef struct aout_sys_s * p_aout_sys_t;
2000-01-11 07:36:06 +08:00
/* Video */
struct vout_thread_s;
2000-01-28 02:30:01 +08:00
struct vout_font_s;
2000-01-11 07:36:06 +08:00
struct vout_sys_s;
struct vdec_thread_s;
struct vpar_thread_s;
struct video_parser_s;
typedef struct vout_thread_s * p_vout_thread_t;
2000-01-28 02:30:01 +08:00
typedef struct vout_font_s * p_vout_font_t;
2000-01-11 07:36:06 +08:00
typedef struct vout_sys_s * p_vout_sys_t;
typedef struct vdec_thread_s * p_vdec_thread_t;
typedef struct vpar_thread_s * p_vpar_thread_t;
typedef struct video_parser_s * p_video_parser_t;
/*****************************************************************************
1999-08-08 20:42:54 +08:00
* Macros and inline functions
*****************************************************************************/
1999-08-08 20:42:54 +08:00
/* CEIL: division with round to nearest greater integer */
#define CEIL(n, d) ( ((n) / (d)) + ( ((n) % (d)) ? 1 : 0) )
/* PAD: PAD(n, d) = CEIL(n ,d) * d */
#define PAD(n, d) ( ((n) % (d)) ? ((((n) / (d)) + 1) * (d)) : (n) )
/* MAX and MIN: self explanatory */
//#ifndef SYS_BEOS
#ifndef MAX
1999-08-08 20:42:54 +08:00
#define MAX(a, b) ( ((a) > (b)) ? (a) : (b) )
#endif
#ifndef MIN
1999-08-08 20:42:54 +08:00
#define MIN(a, b) ( ((a) < (b)) ? (a) : (b) )
#endif
//#endif
1999-08-08 20:42:54 +08:00
/* MSB (big endian)/LSB (little endian) convertions - network order is always
1999-08-08 20:42:54 +08:00
* MSB, and should be used for both network communications and files. Note that
* byte orders other than little and big endians are not supported, but only
* the VAX seems to have such exotic properties - note that these 'functions'
* needs <netinet/in.h> or the local equivalent. */
/* FIXME??: hton64 should be declared as an extern inline function to avoid border
1999-08-08 20:42:54 +08:00
* effects (see byteorder.h) */
#if __BYTE_ORDER == __LITTLE_ENDIAN
#define hton16 htons
#define hton32 htonl
#define hton64(i) ( ((u64)(htonl((i) & 0xffffffff)) << 32) | htonl(((i) >> 32) & 0xffffffff ) )
#define ntoh16 ntohs
1999-08-08 20:42:54 +08:00
#define ntoh32 ntohl
#define ntoh64 hton64
#elif __BYTE_ORDER == __BIG_ENDIAN
#define hton16 htons
#define hton32 htonl
#define hton64(i) ( i )
1999-08-08 20:42:54 +08:00
#define ntoh16 ntohs
#define ntoh32 ntohl
#define ntoh64(i) ( i )
#else
/* XXX??: cause a compilation error */
1999-08-08 20:42:54 +08:00
#endif
/* Macros used by input to access the TS buffer */
#define U32_AT(p) ( ntohl ( *( (u32 *)(p) ) ) )
#define U16_AT(p) ( ntohs ( *( (u16 *)(p) ) ) )