You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
576B

  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 */