debug.c
上传用户:aoeyumen
上传日期:2007-01-06
资源大小:3329k
文件大小:1k
源码类别:

DVD

开发平台:

Unix_Linux

  1. /*
  2.  *
  3.  * debug.c
  4.  *
  5.  * Copyright (C) Aaron Holtzman - May 1999
  6.  *
  7.  *  This file is part of ac3dec, a free Dolby AC-3 stream decoder.
  8.  *
  9.  *  ac3dec is free software; you can redistribute it and/or modify
  10.  *  it under the terms of the GNU General Public License as published by
  11.  *  the Free Software Foundation; either version 2, or (at your option)
  12.  *  any later version.
  13.  *   
  14.  *  ac3dec is distributed in the hope that it will be useful,
  15.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  *  GNU General Public License for more details.
  18.  *   
  19.  *  You should have received a copy of the GNU General Public License
  20.  *  along with GNU Make; see the file COPYING.  If not, write to
  21.  *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. 
  22.  *
  23.  */
  24. #include <stdlib.h>
  25. #include "debug.h"
  26. static int debug_level = -1;
  27. // Determine is debug output is required.
  28. // We could potentially have multiple levels of debug info
  29. int debug_is_on(void)
  30. {
  31. char *env_var;
  32. if(debug_level < 0)
  33. {
  34.   env_var = getenv("AC3_DEBUG");
  35. if (env_var)
  36. {
  37. debug_level = 1;
  38. }
  39. else
  40. debug_level = 0;
  41. }
  42. return debug_level;
  43. }
  44. //If you don't have gcc, then ya don't get debug output
  45. #ifndef __GNUC__
  46. void dprintf(char fmt[],...)
  47. {
  48. int foo = 0;
  49. }
  50. #endif