dvbpsi_private.h

来自「ts流的解复用」· C头文件 代码 · 共 96 行

H
96
字号
/***************************************************************************** * dvbpsi_private.h: main private header *---------------------------------------------------------------------------- * (c)2001-2002 VideoLAN * $Id: dvbpsi_private.h 102 2004-12-22 12:09:54Z gbazin $ * * Authors: Arnaud de Bossoreille de Ribou <bozo@via.ecp.fr> * * 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. * *---------------------------------------------------------------------------- * *****************************************************************************/#ifndef _DVBPSI_DVBPSI_PRIVATE_H_#define _DVBPSI_DVBPSI_PRIVATE_H_#include <stdarg.h>#define DVBPSI_ERROR(src, str)                                //        fprintf(stderr, "libdvbpsi error (" src "): " str "\n");void DVBPSI_ERROR_ARG( char *src, const char *str, ... );#define DVBPSI_DEBUG_ARG 	DVBPSI_ERROR_ARG//void DVBPSI_ERROR_ARG( char *src, const char *str, ... )//{ //	va_list ap; //	va_start( ap, str );//    vfprintf(stderr, str, ap); //	fprintf(stderr,"\n"); //	va_end( ap ); //}#  define DVBPSI_DEBUG(src, str) {}/***************************************************************************** * Error management *****************************************************************************//*//#define DVBPSI_ERROR(src, str)                                          \//        fprintf(stderr, "libdvbpsi error (" src "): " str "\n");#ifdef HAVE_VARIADIC_MACROS#  define DVBPSI_ERROR_ARG(src, str, x...)                              \        fprintf(stderr, "libdvbpsi error (" src "): " str "\n", x);#else   inline void DVBPSI_ERROR_ARG( char *src, const char *str, ... )   { va_list ap; va_start( ap, str );     vfprintf(stderr, str, ap); fprintf(stderr,"\n"); va_end( ap ); }#endif#ifdef DEBUG#  define DVBPSI_DEBUG(src, str)                                        \          fprintf(stderr, "libdvbpsi debug (" src "): " str "\n");#  ifdef HAVE_VARIADIC_MACROS#     define DVBPSI_DEBUG_ARG(src, str, x...)                           \          fprintf(stderr, "libdvbpsi debug (" src "): " str "\n", x);#  else      inline void DVBPSI_DEBUG_ARG( char *src, const char *str, ... )      { va_list ap; va_start( ap, str );        vfprintf(stderr, str, ap); fprintf(stderr,"\n"); va_end( ap ); }#  endif#else#  define DVBPSI_DEBUG(src, str)#  ifdef HAVE_VARIADIC_MACROS#     define DVBPSI_DEBUG_ARG(src, str, x...)#  else      inline void DVBPSI_DEBUG_ARG( char *src, const char *str, ... ) {}#  endif#endif#else#error "Multiple inclusions of dvbpsi_private.h"#endif*/#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?