Ap4Config.h
上传用户:xjjlds
上传日期:2015-12-05
资源大小:22823k
文件大小:2k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. /*****************************************************************
  2. |
  3. |    AP4 - Target Platform and Compiler Configuration
  4. |
  5. |    Copyright 2002 Gilles Boccon-Gibod
  6. |
  7. |
  8. |    This file is part of Bento4/AP4 (MP4 Atom Processing Library).
  9. |
  10. |    Unless you have obtained Bento4 under a difference license,
  11. |    this version of Bento4 is Bento4|GPL.
  12. |    Unless you have obtained Bento4 under a difference license,
  13. |    this version of Bento4 is Bento4|GPL.
  14. |    Bento4|GPL is free software; you can redistribute it and/or modify
  15. |    it under the terms of the GNU General Public License as published by
  16. |    the Free Software Foundation; either version 2, or (at your option)
  17. |    any later version.
  18. |
  19. |    Bento4|GPL is distributed in the hope that it will be useful,
  20. |    but WITHOUT ANY WARRANTY; without even the implied warranty of
  21. |    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  22. |    GNU General Public License for more details.
  23. |
  24. |    You should have received a copy of the GNU General Public License
  25. |    along with Bento4|GPL; see the file COPYING.  If not, write to the
  26. |    Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
  27. |    02111-1307, USA.
  28. |
  29.  ****************************************************************/
  30. #ifndef _AP4_CONFIG_H_
  31. #define _AP4_CONFIG_H_
  32. /*----------------------------------------------------------------------
  33. |       defaults
  34. +---------------------------------------------------------------------*/
  35. #define AP4_CONFIG_HAVE_CPP_STRING_H
  36. #define AP4_CONFIG_HAVE_STDIO_H
  37. #define AP4_CONFIG_HAVE_ASSERT_H
  38. #define AP4_CONFIG_HAVE_CPP_STRING
  39. #define AP4_CONFIG_HAVE_SNPRINTF
  40. /*----------------------------------------------------------------------
  41. |       byte order
  42. +---------------------------------------------------------------------*/
  43. // define AP4_PLATFORM_BYTE_ORDER to one of these two choices
  44. #define AP4_PLATFORM_BYTE_ORDER_BIG_ENDIAN    0
  45. #define AP4_PLATFORM_BYTE_ORDER_LITTLE_ENDIAN 1
  46. #ifdef __ppc__
  47. #define AP4_PLATFORM_BYTE_ORDER AP4_PLATFORM_BYTE_ORDER_BIG_ENDIAN
  48. #endif
  49. #define AP4_PLATFORM_BYTE_ORDER AP4_PLATFORM_BYTE_ORDER_LITTLE_ENDIAN
  50. /*----------------------------------------------------------------------
  51. |       Win32 specifics
  52. +---------------------------------------------------------------------*/
  53. #ifdef WIN32
  54. #define snprintf _snprintf
  55. #define vsnprintf _vsnprintf
  56. #if defined(_DEBUG)
  57. #define AP4_DEBUG
  58. #endif
  59. #endif
  60. #endif // _AP4_CONFIG_H_