avutil.h
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:1k
源码类别:

Windows CE

开发平台:

C/C++

  1. #ifndef AVUTIL_H
  2. #define AVUTIL_H
  3. /**
  4.  * @file avutil.h
  5.  * external api header.
  6.  */
  7. #ifdef __cplusplus
  8. extern "C" {
  9. #endif
  10. #define AV_STRINGIFY(s) AV_TOSTRING(s)
  11. #define AV_TOSTRING(s) #s
  12. #define LIBAVUTIL_VERSION_INT ((49<<16)+(0<<8)+0)
  13. #define LIBAVUTIL_VERSION     49.0.0
  14. #define LIBAVUTIL_BUILD       LIBAVUTIL_VERSION_INT
  15. #define LIBAVUTIL_IDENT       "Lavu" AV_STRINGIFY(LIBAVUTIL_VERSION)
  16. #include "common.h"
  17. #include "mathematics.h"
  18. #include "rational.h"
  19. #include "integer.h"
  20. #include "intfloat_readwrite.h"
  21. #ifdef __cplusplus
  22. }
  23. #endif
  24. #endif /* AVUTIL_H */