dvbpsi_private.h

来自「数字电视广播系统mpeg-2的ts流的解复用和分析软件」· C头文件 代码 · 共 56 行

H
56
字号
/***************************************************************************** * dvbpsi_private.h: main private header *---------------------------------------------------------------------------- * (c)2001-2002 VideoLAN * $Id: dvbpsi_private.h,v 1.2 2002/01/22 20:30:16 bozo Exp $ * * 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_/***************************************************************************** * Error management *****************************************************************************/
//#define myprintf(templt, ...) fprintf(stderr,templt, ##__VAR_ARGS__) 
#define DVBPSI_ERROR(src, str)                                          \        fprintf(stderr, "libdvbpsi error (" src "): " str "\n");#define DVBPSI_ERROR_ARG( src, str, s)      ;                          
#ifdef DEBUG#  define DVBPSI_DEBUG(src, str)                                        \          fprintf(stderr, "libdvbpsi debug (" src "): " str "\n");int DVBPSI_DEBUG_ARG(src, str, x...)                            {  	fprintf(stderr, "libdvbpsi debug (" src "): " str "\n", x...);}#else#  define DVBPSI_DEBUG(src, str)#  define DVBPSI_DEBUG_ARG(src, str, x)#endif#else#error "Multiple inclusions of dvbpsi_private.h"#endif

⌨️ 快捷键说明

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