debug.h
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:3k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * FILE:    debug.h
  3.  * PROGRAM: RAT
  4.  * AUTHOR:  Isidor Kouvelas + Colin Perkins + Mark Handley + Orion Hodson
  5.  * 
  6.  * $Revision: 1.5 $
  7.  * $Date: 2001/11/14 00:32:00 $
  8.  *
  9.  * Copyright (c) 1995-2000 University College London
  10.  * All rights reserved.
  11.  *
  12.  * Redistribution and use in source and binary forms, with or without
  13.  * modification, is permitted provided that the following conditions 
  14.  * are met:
  15.  * 1. Redistributions of source code must retain the above copyright
  16.  *    notice, this list of conditions and the following disclaimer.
  17.  * 2. Redistributions in binary form must reproduce the above copyright
  18.  *    notice, this list of conditions and the following disclaimer in the
  19.  *    documentation and/or other materials provided with the distribution.
  20.  * 3. All advertising materials mentioning features or use of this software
  21.  *    must display the following acknowledgement:
  22.  *      This product includes software developed by the Computer Science
  23.  *      Department at University College London
  24.  * 4. Neither the name of the University nor of the Department may be used
  25.  *    to endorse or promote products derived from this software without
  26.  *    specific prior written permission.
  27.  * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND
  28.  * ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  29.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  30.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE
  31.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  32.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  33.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  34.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  35.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  36.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  37.  * SUCH DAMAGE.
  38.  */
  39. #ifndef _RAT_DEBUG_H
  40. #define _RAT_DEBUG_H
  41. #define UNUSED(x) (x=x)
  42. #define debug_msg _dprintf("%d:%s:%d ", getpid(), __FILE__, __LINE__), _dprintf
  43. #if defined(__cplusplus)
  44. extern "C" {
  45. #endif
  46.   void rtp_message(int loglevel, const char *fmt, ...)
  47. #ifndef _WIN32
  48.      __attribute__((format(__printf__, 2, 3)));
  49. #else
  50.      ;
  51. #endif
  52. typedef void (*rtp_error_msg_func_t)(int loglevel,
  53.      const char *lib,
  54.      const char *fmt,
  55.      va_list ap);
  56.   void rtp_set_error_msg_func(rtp_error_msg_func_t func);
  57.   void rtp_set_loglevel(int loglevel);
  58. void _dprintf(const char *format, ...);
  59. void debug_dump(void*lp, long len);
  60. void debug_set_core_dir(const char *argv0);
  61. #if defined(__cplusplus)
  62. }
  63. #endif
  64. #endif