avi_dbg.h
上传用户:poi891205
上传日期:2013-07-15
资源大小:9745k
文件大小:1k
源码类别:

DVD

开发平台:

C/C++

  1. #ifndef AVI_DBG_H
  2. #define AVI_DBG_H
  3. #define avi_puts(s) ((void)0)
  4. #define avi_putc(c) ((void)0)
  5. #define avi_printf(s...) ((void)0)
  6. #ifndef DVDRELEASE
  7. #define AVI_PARSER_DBG
  8. #endif
  9. #ifdef AVI_PARSER_DBG
  10. //#define AVI_GENERAL_DBG
  11. //#define AVI_FILE_INFO
  12. //#define AVI_FCC_DBG
  13. //#define AVI_DUMP_SUBCHUNK
  14. //#define AVI_AUDIO_DBG
  15. //#define AVI_IDX1_DBG
  16. //#define AVI_STC_DBG
  17. //#define AVI_GOTO_DBG
  18. //#define AVI_NEXTI_DBG
  19. //#define AVI_DRM_CHK
  20. //#define AVI_DROP_V
  21. //#define AVI_DROP_A
  22. #include "emuio.h"
  23. #include "sio.h"
  24. #undef avi_puts
  25. #undef avi_putc
  26. #undef avi_printf
  27. #define avi_puts(s) io_write(s)
  28. #define avi_putc(c) io_putc(c)
  29. #define avi_printf(s...)
  30. do { 
  31. psprintf(linebuf, ##s); io_write_wait(linebuf); 
  32. } while (0)
  33. #endif // AVI_PARSER_DBG
  34. #endif // AVI_DBG_H